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

[bootstrap] Add gcc to dist generation #125419

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

GuillaumeGomez
Copy link
Member

@GuillaumeGomez GuillaumeGomez commented May 22, 2024

As @eholk summarized below:

From my understanding, this change would add libgccjit as an optional component to the Rust distribution. This library is licensed under GPLv2 and currently we do not have any other components under that license so it would be a new license, and one that is generally more restrictive than the other licenses we use.

It'll greatly improve the experience for anyone wanting to work on the GCC backend from the compiler.

Should help with #124172.
Will unblock #124353.

r? @Kobzol

@rustbot
Copy link
Collaborator

rustbot commented May 22, 2024

⚠️ Warning ⚠️

  • These commits modify submodules.

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) labels May 22, 2024
@rustbot
Copy link
Collaborator

rustbot commented May 22, 2024

This PR changes how LLVM is built. Consider updating src/bootstrap/download-ci-llvm-stamp.

@rust-log-analyzer

This comment has been minimized.

@rustbot rustbot added the A-testsuite Area: The testsuite used to check the correctness of rustc label May 23, 2024
@rust-log-analyzer

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

@rustbot rustbot added the A-meta Area: Issues about the rust-lang/rust repository. label May 23, 2024
@rust-log-analyzer
Copy link
Collaborator

The job mingw-check failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
Submodule 'src/doc/nomicon' (https://github.com/rust-lang/nomicon.git) registered for path 'src/doc/nomicon'
Submodule 'src/doc/reference' (https://github.com/rust-lang/reference.git) registered for path 'src/doc/reference'
Submodule 'src/doc/rust-by-example' (https://github.com/rust-lang/rust-by-example.git) registered for path 'src/doc/rust-by-example'
Submodule 'src/doc/rustc-dev-guide' (https://github.com/rust-lang/rustc-dev-guide.git) registered for path 'src/doc/rustc-dev-guide'
Submodule 'src/gcc' (https://github.com/rust-lang/gcc) registered for path 'src/gcc'
Submodule 'src/tools/cargo' (https://github.com/rust-lang/cargo.git) registered for path 'src/tools/cargo'
Submodule 'src/tools/rustc-perf' (https://github.com/rust-lang/rustc-perf.git) registered for path 'src/tools/rustc-perf'
Cloning into '/home/runner/work/rust/rust/library/backtrace'...
Cloning into '/home/runner/work/rust/rust/library/stdarch'...
---
* Deprecated licenses: GPL-2.0
* Licenses without file extension:
* Missing licenses:
* Unused licenses:
* Used licenses: Apache-2.0, BSD-2-Clause, CC-BY-3.0, CC-BY-SA-4.0, CC0-1.0, GCC-exception-3.1, GPL-2.0, GPL-3.0-or-later, ISC, LLVM-exception, MIT, NCSA, OFL-1.1, Unicode-DFS-2016
* Files with copyright information: 335644 / 335644
* Files with license information: 335644 / 335644

Unfortunately, your project is not compliant with version 3.0 of the REUSE Specification :-(

@GuillaumeGomez
Copy link
Member Author

From what I can see, it's not possible to tell reuse to allow deprecated licenses. So in this case, I have no clue how we can go around this issue. If someone has an idea?

@Kobzol
Copy link
Contributor

Kobzol commented May 23, 2024

@davidtwco Any suggestions on what to do about the GPL-2.0 license of GCC?

@davidtwco
Copy link
Member

@davidtwco Any suggestions on what to do about the GPL-2.0 license of GCC?

Will get back to you about this

@davidtwco
Copy link
Member

@wesleywiser and I discussed this and we're not sure about how to get REUSE to play ball (@pietroalbini might know), but we've forwarded this on to t-compiler's council rep to double-check that adding gcc like this is okay, license-wise.

@pietroalbini
Copy link
Member

From what I can see, it's not possible to tell reuse to allow deprecated licenses. So in this case, I have no clue how we can go around this issue. If someone has an idea?

Note that REUSE doesn't mark the GPL 2.0 license as deprecated. What is deprecated is referring to it as GPL-2.0. You should refer to the license as either GPL-2.0-only or GPL-2.0-or-later, depending on what is appropriate.

Also, the warning doesn't come from REUSE itself, but from the SPDX License List (you'll find GPL-2.0 as deprecated in there).

@eholk
Copy link
Contributor

eholk commented Jun 7, 2024

We discussed this at the Council meeting today and we don't have any concerns with this change. However, we would like to confirm with the Foundation. @abibroom - do you know of any concerns from the Foundation side (feel free to ping me on Zulip or reach out via email if you'd rather not discuss this publicly.

From my understanding, this change would add libgccjit as an optional component to the Rust distribution. This library is licensed under GPLv2 and currently we do not have any other components under that license so it would be a new license, and one that is generally more restrictive than the other licenses we use.

@Kobzol
Copy link
Contributor

Kobzol commented Jun 9, 2024

@bors try

Just to see what happens on Linux dist.

@@ -2365,6 +2366,10 @@ impl Step for RustDev {
// just broadly useful to be able to link against the bundled LLVM.
tarball.add_dir(builder.llvm_out(target).join("include"), "include");

tarball.add_dir(builder.gcc_out(target).join("install/lib/libgccjit.so"), "libgccjit.so");
Copy link
Contributor

Choose a reason for hiding this comment

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

What will this do on Windows? 🤔 Does the gcc build also work on non-Linux OSes, in general?

@bors
Copy link
Contributor

bors commented Jun 9, 2024

⌛ Trying commit f302cfd with merge 9e6f6bf...

bors added a commit to rust-lang-ci/rust that referenced this pull request Jun 9, 2024
[bootstrap] Add gcc to dist generation

As `@eholk` summarized below:

> From my understanding, this change would add libgccjit as an optional component to the Rust distribution. This library is licensed under GPLv2 and currently we do not have any other components under that license so it would be a new license, and one that is generally more restrictive than the other licenses we use.

It'll greatly improve the experience for anyone wanting to work on the GCC backend from the compiler.

Should help with rust-lang#124172.
Will unblock rust-lang#124353.

r? `@Kobzol`
@nikic
Copy link
Contributor

nikic commented Jun 9, 2024

Can this be done without adding gcc as a submodule?

@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)
Submodule 'src/doc/nomicon' (https://github.com/rust-lang/nomicon.git) registered for path 'src/doc/nomicon'
Submodule 'src/doc/reference' (https://github.com/rust-lang/reference.git) registered for path 'src/doc/reference'
Submodule 'src/doc/rust-by-example' (https://github.com/rust-lang/rust-by-example.git) registered for path 'src/doc/rust-by-example'
Submodule 'src/doc/rustc-dev-guide' (https://github.com/rust-lang/rustc-dev-guide.git) registered for path 'src/doc/rustc-dev-guide'
Submodule 'src/gcc' (https://github.com/rust-lang/gcc) registered for path 'src/gcc'
Submodule 'src/tools/cargo' (https://github.com/rust-lang/cargo.git) registered for path 'src/tools/cargo'
Submodule 'src/tools/rustc-perf' (https://github.com/rust-lang/rustc-perf.git) registered for path 'src/tools/rustc-perf'
Cloning into '/home/runner/work/rust/rust/library/backtrace'...
Cloning into '/home/runner/work/rust/rust/src/doc/edition-guide'...
---
file:.git/config remote.origin.url=https://github.com/rust-lang-ci/rust
file:.git/config remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
file:.git/config gc.auto=0
file:.git/config http.https://github.com/.extraheader=AUTHORIZATION: basic ***
file:.git/config branch.try.remote=origin
file:.git/config branch.try.merge=refs/heads/try
file:.git/config submodule.library/backtrace.url=https://github.com/rust-lang/backtrace-rs.git
file:.git/config submodule.library/stdarch.active=true
file:.git/config submodule.library/stdarch.url=https://github.com/rust-lang/stdarch.git
file:.git/config submodule.src/doc/book.active=true
---
Preparing bitmaps-3.1.0
[2024-06-09T13:22:04Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T13:22:04Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T13:22:04Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T13:22:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpD6vOj9" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpD6vOj9#bitmaps@3.1.0" "--" "--skip-this-rustc"
[2024-06-09T13:22:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpfiWoyq" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpfiWoyq#bitmaps@3.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2024-06-09T13:22:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpfQjHLO" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpfQjHLO#bitmaps@3.1.0" "--release" "--" "--skip-this-rustc"
[2024-06-09T13:22:04Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:22:04Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:22:04Z DEBUG collector::compile::execute] cd "/tmp/.tmp3B00wr" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmp3B00wr#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T13:22:05Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-06-09T13:22:07Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:22:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:22:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpoHYdxr" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpoHYdxr#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T13:22:07Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:22:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpoHYdxr" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpoHYdxr#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpoHYdxr/incremental-state"
[2024-06-09T13:22:08Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:22:08Z DEBUG collector::compile::execute] cd "/tmp/.tmpoHYdxr" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpoHYdxr#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpoHYdxr/incremental-state"
[2024-06-09T13:22:08Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpoHYdxr"
[2024-06-09T13:22:08Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T13:22:08Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T13:22:08Z DEBUG collector::compile::execute] cd "/tmp/.tmpoHYdxr" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpoHYdxr#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpoHYdxr/incremental-state"
[2024-06-09T13:22:09Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:22:09Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:22:09Z DEBUG collector::compile::execute] cd "/tmp/.tmpUCv0wv" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpUCv0wv#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T13:22:10Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:22:10Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:22:10Z DEBUG collector::compile::execute] cd "/tmp/.tmpUCv0wv" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpUCv0wv#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpUCv0wv/incremental-state"
[2024-06-09T13:22:11Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:22:11Z DEBUG collector::compile::execute] cd "/tmp/.tmpUCv0wv" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpUCv0wv#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpUCv0wv/incremental-state"
[2024-06-09T13:22:11Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpUCv0wv"
[2024-06-09T13:22:11Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T13:22:11Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T13:22:11Z DEBUG collector::compile::execute] cd "/tmp/.tmpUCv0wv" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpUCv0wv#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpUCv0wv/incremental-state"
Executing benchmark cargo-0.60.0 (2/8)
Preparing cargo-0.60.0
[2024-06-09T13:22:11Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T13:22:11Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-06-09T13:25:19Z DEBUG collector::compile::execute] cd "/tmp/.tmpxVm086" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpxVm086#ctfe-stress-5@0.1.0" "--release" "--" "--skip-this-rustc"
Running ctfe-stress-5: Check + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2024-06-09T13:25:19Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:25:19Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:25:19Z DEBUG collector::compile::execute] cd "/tmp/.tmpEVMQVO" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpEVMQVO#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T13:25:23Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:25:23Z DEBUG collector::compile::execute] cd "/tmp/.tmpEVMQVO" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpEVMQVO#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpEVMQVO/incremental-state"
[2024-06-09T13:25:28Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:25:28Z DEBUG collector::compile::execute] cd "/tmp/.tmpEVMQVO" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpEVMQVO#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpEVMQVO/incremental-state"
[2024-06-09T13:25:29Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:25:29Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:25:29Z DEBUG collector::compile::execute] cd "/tmp/.tmpUkWQgi" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpUkWQgi#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T13:25:33Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:25:33Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:25:33Z DEBUG collector::compile::execute] cd "/tmp/.tmpUkWQgi" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpUkWQgi#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpUkWQgi/incremental-state"
[2024-06-09T13:25:38Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:25:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpUkWQgi" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpUkWQgi#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpUkWQgi/incremental-state"
[2024-06-09T13:25:38Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:25:38Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:25:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpcAESVv" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpcAESVv#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T13:25:43Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-06-09T13:26:25Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:26:25Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:26:25Z DEBUG collector::compile::execute] cd "/tmp/.tmp3gOXxy" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmp3gOXxy#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T13:26:32Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:26:32Z DEBUG collector::compile::execute] cd "/tmp/.tmp3gOXxy" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmp3gOXxy#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp3gOXxy/incremental-state"
[2024-06-09T13:26:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:26:39Z DEBUG collector::compile::execute] cd "/tmp/.tmp3gOXxy" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmp3gOXxy#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp3gOXxy/incremental-state"
[2024-06-09T13:26:40Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmp3gOXxy"
[2024-06-09T13:26:40Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T13:26:40Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T13:26:40Z DEBUG collector::compile::execute] cd "/tmp/.tmp3gOXxy" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmp3gOXxy#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp3gOXxy/incremental-state"
Executing benchmark externs (5/8)
Preparing externs
[2024-06-09T13:26:42Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T13:26:42Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-06-09T13:26:50Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:26:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:26:50Z DEBUG collector::compile::execute] cd "/tmp/.tmp4atsHm" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmp4atsHm#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T13:26:51Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:26:51Z DEBUG collector::compile::execute] cd "/tmp/.tmp4atsHm" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmp4atsHm#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp4atsHm/incremental-state"
[2024-06-09T13:26:53Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:26:53Z DEBUG collector::compile::execute] cd "/tmp/.tmp4atsHm" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmp4atsHm#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp4atsHm/incremental-state"
Executing benchmark token-stream-stress (7/8)
Preparing token-stream-stress
[2024-06-09T13:26:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T13:26:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-06-09T13:26:54Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:26:54Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:26:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpdCGjti" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpdCGjti#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T13:26:54Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:26:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpdCGjti" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpdCGjti#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpdCGjti/incremental-state"
[2024-06-09T13:26:54Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:26:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpdCGjti" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpdCGjti#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpdCGjti/incremental-state"
Executing benchmark tuple-stress (8/8)
Preparing tuple-stress
[2024-06-09T13:26:54Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T13:26:54Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T13:26:54Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T13:26:54Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T13:26:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpaGNHtt" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpaGNHtt#tuple-stress@0.1.0" "--" "--skip-this-rustc"
[2024-06-09T13:26:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpvfgKZw" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpvfgKZw#tuple-stress@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2024-06-09T13:26:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpMUbfqq" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpMUbfqq#tuple-stress@0.1.0" "--release" "--" "--skip-this-rustc"
[2024-06-09T13:26:54Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:26:54Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:26:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpgzP8ij" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpgzP8ij#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T13:26:56Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-06-09T13:42:37Z DEBUG collector::compile::execute] cd "/tmp/.tmp1pIOgW" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmp1pIOgW#clap@3.1.6" "--" "--wrap-rustc-with" "Eprintln"
Running clap-3.1.6: Opt + [Full] + Llvm
[2024-06-09T13:42:39Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:42:39Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:42:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpInOEFO" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpInOEFO#clap@3.1.6" "--release" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark hyper-0.14.18 (3/8)
Preparing hyper-0.14.18
[2024-06-09T13:42:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T13:42:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T13:42:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T13:42:45Z DEBUG collector::compile::execute] cd "/tmp/.tmp7toGni" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmp7toGni#hyper@0.14.18" "--features=client,http1,http2,server,stream" "--" "--skip-this-rustc"
[2024-06-09T13:42:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpRbKZSN" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpRbKZSN#hyper@0.14.18" "--release" "--features=client,http1,http2,server,stream" "--" "--skip-this-rustc"
Running hyper-0.14.18: Debug + [Full] + Llvm
[2024-06-09T13:43:01Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:43:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:43:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpTzcPks" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpTzcPks#hyper@0.14.18" "--features=client,http1,http2,server,stream" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T13:43:03Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:43:03Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:43:03Z DEBUG collector::compile::execute] cd "/tmp/.tmpMPTTUO" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpMPTTUO#hyper@0.14.18" "--release" "--features=client,http1,http2,server,stream" "--" "--wrap-rustc-with" "Eprintln"
Finished benchmark hyper-0.14.18 (3/8)
---
[2024-06-09T13:43:09Z DEBUG collector::compile::execute] cd "/tmp/.tmpjdx0Zd" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpjdx0Zd#regex@1.5.5" "--release" "--" "--skip-this-rustc"
Running regex-1.5.5: Debug + [Full] + Llvm
[2024-06-09T13:43:13Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:43:13Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:43:13Z DEBUG collector::compile::execute] cd "/tmp/.tmpJrZTfa" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpJrZTfa#regex@1.5.5" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T13:43:15Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T13:43:15Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T13:43:15Z DEBUG collector::compile::execute] cd "/tmp/.tmpXkxirG" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpXkxirG#regex@1.5.5" "--release" "--" "--wrap-rustc-with" "Eprintln"
Finished benchmark regex-1.5.5 (4/8)
---
[2024-06-09T14:06:57Z DEBUG collector::compile::execute] cd "/tmp/.tmpIEuh5e" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpIEuh5e#clap@3.1.6" "--" "--wrap-rustc-with" "Eprintln"
Running clap-3.1.6: Opt + [Full] + Llvm
[2024-06-09T14:07:00Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:07:00Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:07:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpxbHXPx" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpxbHXPx#clap@3.1.6" "--release" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark hyper-0.14.18 (3/8)
Preparing hyper-0.14.18
[2024-06-09T14:07:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:07:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:07:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:07:07Z DEBUG collector::compile::execute] cd "/tmp/.tmp85b9lp" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmp85b9lp#hyper@0.14.18" "--features=client,http1,http2,server,stream" "--" "--skip-this-rustc"
[2024-06-09T14:07:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpqXdwjo" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpqXdwjo#hyper@0.14.18" "--release" "--features=client,http1,http2,server,stream" "--" "--skip-this-rustc"
Running hyper-0.14.18: Debug + [Full] + Llvm
[2024-06-09T14:07:30Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:07:30Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:07:30Z DEBUG collector::compile::execute] cd "/tmp/.tmpnNfacR" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpnNfacR#hyper@0.14.18" "--features=client,http1,http2,server,stream" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:07:33Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:07:33Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:07:33Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:07:33Z DEBUG collector::compile::execute] cd "/tmp/.tmpAXFIck" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpAXFIck#hyper@0.14.18" "--release" "--features=client,http1,http2,server,stream" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark regex-1.5.5 (4/8)
Preparing regex-1.5.5
[2024-06-09T14:07:41Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:07:41Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:07:41Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:07:41Z DEBUG collector::compile::execute] cd "/tmp/.tmpxQijOD" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpxQijOD#regex@1.5.5" "--release" "--" "--skip-this-rustc"
[2024-06-09T14:07:41Z DEBUG collector::compile::execute] cd "/tmp/.tmpoYybDi" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpoYybDi#regex@1.5.5" "--" "--skip-this-rustc"
[2024-06-09T14:07:48Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:07:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:07:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:07:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpCBjEqF" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpCBjEqF#regex@1.5.5" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:07:50Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:07:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:07:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:07:50Z DEBUG collector::compile::execute] cd "/tmp/.tmpHRjyeM" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpHRjyeM#regex@1.5.5" "--release" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark ripgrep-13.0.0 (5/8)
Preparing ripgrep-13.0.0
[2024-06-09T14:07:57Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:07:57Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-06-09T14:09:23Z DEBUG collector::compile::execute] cd "/tmp/.tmp8bpWC2" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmp8bpWC2#serde@1.0.136" "--" "--wrap-rustc-with" "Eprintln"
Running serde-1.0.136: Opt + [Full] + Llvm
[2024-06-09T14:09:26Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:09:26Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:09:26Z DEBUG collector::compile::execute] cd "/tmp/.tmpYNtVKj" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpYNtVKj#serde@1.0.136" "--release" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark syn-1.0.89 (8/8)
Preparing syn-1.0.89
[2024-06-09T14:09:29Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:09:29Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
Finished benchmark syn-1.0.89 (8/8)
[2024-06-09T14:09:43.058Z INFO  opt_dist::training] Merging LLVM BOLT profiles from /tmp/.tmpbj6cci/prof.fdata to /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata
##[endgroup]
##[group]Merging BOLT profiles
[2024-06-09T14:09:43.060Z INFO  opt_dist::exec] Executing `merge-fdata /tmp/.tmpbj6cci/prof.fdata.129820.fdata /tmp/.tmpbj6cci/prof.fdata.129831.fdata /tmp/.tmpbj6cci/prof.fdata.129832.fdata /tmp/.tmpbj6cci/prof.fdata.129835.fdata /tmp/.tmpbj6cci/prof.fdata.129836.fdata /tmp/.tmpbj6cci/prof.fdata.129841.fdata /tmp/.tmpbj6cci/prof.fdata.129842.fdata /tmp/.tmpbj6cci/prof.fdata.129853.fdata /tmp/.tmpbj6cci/prof.fdata.129856.fdata /tmp/.tmpbj6cci/prof.fdata.129858.fdata /tmp/.tmpbj6cci/prof.fdata.129859.fdata /tmp/.tmpbj6cci/prof.fdata.129861.fdata /tmp/.tmpbj6cci/prof.fdata.129862.fdata /tmp/.tmpbj6cci/prof.fdata.129864.fdata /tmp/.tmpbj6cci/prof.fdata.129866.fdata /tmp/.tmpbj6cci/prof.fdata.129867.fdata /tmp/.tmpbj6cci/prof.fdata.129869.fdata /tmp/.tmpbj6cci/prof.fdata.129870.fdata /tmp/.tmpbj6cci/prof.fdata.129872.fdata /tmp/.tmpbj6cci/prof.fdata.129873.fdata /tmp/.tmpbj6cci/prof.fdata.129874.fdata /tmp/.tmpbj6cci/prof.fdata.129879.fdata /tmp/.tmpbj6cci/prof.fdata.129880.fdata /tmp/.tmpbj6cci/prof.fdata.129881.fdata /tmp/.tmpbj6cci/prof.fdata.129892.fdata /tmp/.tmpbj6cci/prof.fdata.130016.fdata /tmp/.tmpbj6cci/prof.fdata.130022.fdata /tmp/.tmpbj6cci/prof.fdata.130023.fdata /tmp/.tmpbj6cci/prof.fdata.130025.fdata /tmp/.tmpbj6cci/prof.fdata.130033.fdata /tmp/.tmpbj6cci/prof.fdata.130063.fdata /tmp/.tmpbj6cci/prof.fdata.130076.fdata /tmp/.tmpbj6cci/prof.fdata.130082.fdata /tmp/.tmpbj6cci/prof.fdata.130085.fdata /tmp/.tmpbj6cci/prof.fdata.130091.fdata /tmp/.tmpbj6cci/prof.fdata.130096.fdata /tmp/.tmpbj6cci/prof.fdata.130099.fdata /tmp/.tmpbj6cci/prof.fdata.130102.fdata /tmp/.tmpbj6cci/prof.fdata.130106.fdata /tmp/.tmpbj6cci/prof.fdata.130112.fdata /tmp/.tmpbj6cci/prof.fdata.130118.fdata /tmp/.tmpbj6cci/prof.fdata.130124.fdata /tmp/.tmpbj6cci/prof.fdata.130125.fdata /tmp/.tmpbj6cci/prof.fdata.130133.fdata /tmp/.tmpbj6cci/prof.fdata.130137.fdata /tmp/.tmpbj6cci/prof.fdata.130148.fdata /tmp/.tmpbj6cci/prof.fdata.130155.fdata /tmp/.tmpbj6cci/prof.fdata.130159.fdata /tmp/.tmpbj6cci/prof.fdata.130169.fdata /tmp/.tmpbj6cci/prof.fdata.130175.fdata /tmp/.tmpbj6cci/prof.fdata.130182.fdata /tmp/.tmpbj6cci/prof.fdata.130190.fdata /tmp/.tmpbj6cci/prof.fdata.130192.fdata /tmp/.tmpbj6cci/prof.fdata.130196.fdata /tmp/.tmpbj6cci/prof.fdata.130213.fdata /tmp/.tmpbj6cci/prof.fdata.130226.fdata /tmp/.tmpbj6cci/prof.fdata.130235.fdata /tmp/.tmpbj6cci/prof.fdata.130247.fdata /tmp/.tmpbj6cci/prof.fdata.130249.fdata /tmp/.tmpbj6cci/prof.fdata.130272.fdata /tmp/.tmpbj6cci/prof.fdata.130280.fdata /tmp/.tmpbj6cci/prof.fdata.130281.fdata /tmp/.tmpbj6cci/prof.fdata.130289.fdata /tmp/.tmpbj6cci/prof.fdata.130299.fdata /tmp/.tmpbj6cci/prof.fdata.130304.fdata /tmp/.tmpbj6cci/prof.fdata.130311.fdata /tmp/.tmpbj6cci/prof.fdata.130318.fdata /tmp/.tmpbj6cci/prof.fdata.130327.fdata /tmp/.tmpbj6cci/prof.fdata.130329.fdata /tmp/.tmpbj6cci/prof.fdata.130353.fdata /tmp/.tmpbj6cci/prof.fdata.130356.fdata /tmp/.tmpbj6cci/prof.fdata.130388.fdata /tmp/.tmpbj6cci/prof.fdata.130397.fdata /tmp/.tmpbj6cci/prof.fdata.130401.fdata /tmp/.tmpbj6cci/prof.fdata.130411.fdata /tmp/.tmpbj6cci/prof.fdata.130435.fdata /tmp/.tmpbj6cci/prof.fdata.130442.fdata /tmp/.tmpbj6cci/prof.fdata.130449.fdata /tmp/.tmpbj6cci/prof.fdata.130462.fdata /tmp/.tmpbj6cci/prof.fdata.130473.fdata /tmp/.tmpbj6cci/prof.fdata.130489.fdata /tmp/.tmpbj6cci/prof.fdata.130494.fdata /tmp/.tmpbj6cci/prof.fdata.130511.fdata /tmp/.tmpbj6cci/prof.fdata.130528.fdata /tmp/.tmpbj6cci/prof.fdata.130539.fdata /tmp/.tmpbj6cci/prof.fdata.130544.fdata /tmp/.tmpbj6cci/prof.fdata.130549.fdata /tmp/.tmpbj6cci/prof.fdata.130550.fdata /tmp/.tmpbj6cci/prof.fdata.130565.fdata /tmp/.tmpbj6cci/prof.fdata.130568.fdata /tmp/.tmpbj6cci/prof.fdata.130611.fdata /tmp/.tmpbj6cci/prof.fdata.130613.fdata /tmp/.tmpbj6cci/prof.fdata.130644.fdata /tmp/.tmpbj6cci/prof.fdata.130647.fdata /tmp/.tmpbj6cci/prof.fdata.130649.fdata /tmp/.tmpbj6cci/prof.fdata.130661.fdata /tmp/.tmpbj6cci/prof.fdata.130678.fdata /tmp/.tmpbj6cci/prof.fdata.130691.fdata /tmp/.tmpbj6cci/prof.fdata.130692.fdata /tmp/.tmpbj6cci/prof.fdata.130699.fdata /tmp/.tmpbj6cci/prof.fdata.130705.fdata /tmp/.tmpbj6cci/prof.fdata.130710.fdata /tmp/.tmpbj6cci/prof.fdata.130714.fdata /tmp/.tmpbj6cci/prof.fdata.130720.fdata /tmp/.tmpbj6cci/prof.fdata.130731.fdata /tmp/.tmpbj6cci/prof.fdata.130740.fdata /tmp/.tmpbj6cci/prof.fdata.130745.fdata /tmp/.tmpbj6cci/prof.fdata.130754.fdata /tmp/.tmpbj6cci/prof.fdata.130761.fdata /tmp/.tmpbj6cci/prof.fdata.130765.fdata /tmp/.tmpbj6cci/prof.fdata.130778.fdata /tmp/.tmpbj6cci/prof.fdata.130782.fdata /tmp/.tmpbj6cci/prof.fdata.130783.fdata /tmp/.tmpbj6cci/prof.fdata.130799.fdata /tmp/.tmpbj6cci/prof.fdata.130805.fdata /tmp/.tmpbj6cci/prof.fdata.130813.fdata /tmp/.tmpbj6cci/prof.fdata.130830.fdata /tmp/.tmpbj6cci/prof.fdata.130843.fdata /tmp/.tmpbj6cci/prof.fdata.130851.fdata /tmp/.tmpbj6cci/prof.fdata.130858.fdata /tmp/.tmpbj6cci/prof.fdata.130887.fdata /tmp/.tmpbj6cci/prof.fdata.130898.fdata /tmp/.tmpbj6cci/prof.fdata.130915.fdata /tmp/.tmpbj6cci/prof.fdata.130919.fdata /tmp/.tmpbj6cci/prof.fdata.130924.fdata /tmp/.tmpbj6cci/prof.fdata.130937.fdata /tmp/.tmpbj6cci/prof.fdata.130942.fdata /tmp/.tmpbj6cci/prof.fdata.130947.fdata /tmp/.tmpbj6cci/prof.fdata.130951.fdata /tmp/.tmpbj6cci/prof.fdata.130953.fdata /tmp/.tmpbj6cci/prof.fdata.130973.fdata /tmp/.tmpbj6cci/prof.fdata.130974.fdata /tmp/.tmpbj6cci/prof.fdata.130980.fdata /tmp/.tmpbj6cci/prof.fdata.130982.fdata /tmp/.tmpbj6cci/prof.fdata.130987.fdata /tmp/.tmpbj6cci/prof.fdata.130988.fdata /tmp/.tmpbj6cci/prof.fdata.130998.fdata /tmp/.tmpbj6cci/prof.fdata.131008.fdata /tmp/.tmpbj6cci/prof.fdata.131035.fdata /tmp/.tmpbj6cci/prof.fdata.131051.fdata /tmp/.tmpbj6cci/prof.fdata.131068.fdata /tmp/.tmpbj6cci/prof.fdata.131072.fdata /tmp/.tmpbj6cci/prof.fdata.131078.fdata /tmp/.tmpbj6cci/prof.fdata.131094.fdata /tmp/.tmpbj6cci/prof.fdata.131112.fdata /tmp/.tmpbj6cci/prof.fdata.131139.fdata /tmp/.tmpbj6cci/prof.fdata.131173.fdata /tmp/.tmpbj6cci/prof.fdata.131194.fdata /tmp/.tmpbj6cci/prof.fdata.131206.fdata /tmp/.tmpbj6cci/prof.fdata.131222.fdata /tmp/.tmpbj6cci/prof.fdata.131234.fdata /tmp/.tmpbj6cci/prof.fdata.131254.fdata /tmp/.tmpbj6cci/prof.fdata.131272.fdata /tmp/.tmpbj6cci/prof.fdata.131294.fdata /tmp/.tmpbj6cci/prof.fdata.131296.fdata /tmp/.tmpbj6cci/prof.fdata.131311.fdata /tmp/.tmpbj6cci/prof.fdata.131337.fdata /tmp/.tmpbj6cci/prof.fdata.131352.fdata /tmp/.tmpbj6cci/prof.fdata.131354.fdata /tmp/.tmpbj6cci/prof.fdata.131358.fdata /tmp/.tmpbj6cci/prof.fdata.131364.fdata /tmp/.tmpbj6cci/prof.fdata.131381.fdata /tmp/.tmpbj6cci/prof.fdata.131405.fdata /tmp/.tmpbj6cci/prof.fdata.131408.fdata /tmp/.tmpbj6cci/prof.fdata.131419.fdata /tmp/.tmpbj6cci/prof.fdata.131426.fdata /tmp/.tmpbj6cci/prof.fdata.131430.fdata /tmp/.tmpbj6cci/prof.fdata.131449.fdata /tmp/.tmpbj6cci/prof.fdata.131455.fdata /tmp/.tmpbj6cci/prof.fdata.131458.fdata /tmp/.tmpbj6cci/prof.fdata.131470.fdata /tmp/.tmpbj6cci/prof.fdata.131476.fdata /tmp/.tmpbj6cci/prof.fdata.131487.fdata /tmp/.tmpbj6cci/prof.fdata.131494.fdata /tmp/.tmpbj6cci/prof.fdata.131500.fdata /tmp/.tmpbj6cci/prof.fdata.131511.fdata /tmp/.tmpbj6cci/prof.fdata.131517.fdata /tmp/.tmpbj6cci/prof.fdata.131528.fdata /tmp/.tmpbj6cci/prof.fdata.131534.fdata /tmp/.tmpbj6cci/prof.fdata.131545.fdata /tmp/.tmpbj6cci/prof.fdata.131560.fdata /tmp/.tmpbj6cci/prof.fdata.131575.fdata /tmp/.tmpbj6cci/prof.fdata.131583.fdata /tmp/.tmpbj6cci/prof.fdata.131591.fdata /tmp/.tmpbj6cci/prof.fdata.131611.fdata /tmp/.tmpbj6cci/prof.fdata.131613.fdata /tmp/.tmpbj6cci/prof.fdata.131623.fdata /tmp/.tmpbj6cci/prof.fdata.131634.fdata /tmp/.tmpbj6cci/prof.fdata.131643.fdata /tmp/.tmpbj6cci/prof.fdata.131652.fdata /tmp/.tmpbj6cci/prof.fdata.131662.fdata /tmp/.tmpbj6cci/prof.fdata.131673.fdata /tmp/.tmpbj6cci/prof.fdata.131714.fdata /tmp/.tmpbj6cci/prof.fdata.131727.fdata /tmp/.tmpbj6cci/prof.fdata.131734.fdata /tmp/.tmpbj6cci/prof.fdata.131759.fdata /tmp/.tmpbj6cci/prof.fdata.131772.fdata /tmp/.tmpbj6cci/prof.fdata.131782.fdata /tmp/.tmpbj6cci/prof.fdata.131785.fdata /tmp/.tmpbj6cci/prof.fdata.131814.fdata /tmp/.tmpbj6cci/prof.fdata.131821.fdata /tmp/.tmpbj6cci/prof.fdata.131829.fdata /tmp/.tmpbj6cci/prof.fdata.131839.fdata /tmp/.tmpbj6cci/prof.fdata.131844.fdata /tmp/.tmpbj6cci/prof.fdata.131854.fdata /tmp/.tmpbj6cci/prof.fdata.131856.fdata /tmp/.tmpbj6cci/prof.fdata.131870.fdata /tmp/.tmpbj6cci/prof.fdata.131875.fdata /tmp/.tmpbj6cci/prof.fdata.131889.fdata /tmp/.tmpbj6cci/prof.fdata.131898.fdata /tmp/.tmpbj6cci/prof.fdata.131905.fdata /tmp/.tmpbj6cci/prof.fdata.131912.fdata /tmp/.tmpbj6cci/prof.fdata.131934.fdata /tmp/.tmpbj6cci/prof.fdata.131948.fdata /tmp/.tmpbj6cci/prof.fdata.131958.fdata /tmp/.tmpbj6cci/prof.fdata.131983.fdata /tmp/.tmpbj6cci/prof.fdata.131989.fdata /tmp/.tmpbj6cci/prof.fdata.131994.fdata /tmp/.tmpbj6cci/prof.fdata.132029.fdata /tmp/.tmpbj6cci/prof.fdata.132043.fdata /tmp/.tmpbj6cci/prof.fdata.132065.fdata /tmp/.tmpbj6cci/prof.fdata.132070.fdata /tmp/.tmpbj6cci/prof.fdata.132071.fdata /tmp/.tmpbj6cci/prof.fdata.132080.fdata /tmp/.tmpbj6cci/prof.fdata.132096.fdata /tmp/.tmpbj6cci/prof.fdata.132139.fdata /tmp/.tmpbj6cci/prof.fdata.132145.fdata /tmp/.tmpbj6cci/prof.fdata.132162.fdata /tmp/.tmpbj6cci/prof.fdata.132170.fdata /tmp/.tmpbj6cci/prof.fdata.132174.fdata /tmp/.tmpbj6cci/prof.fdata.132178.fdata /tmp/.tmpbj6cci/prof.fdata.132200.fdata /tmp/.tmpbj6cci/prof.fdata.132205.fdata /tmp/.tmpbj6cci/prof.fdata.132218.fdata /tmp/.tmpbj6cci/prof.fdata.132230.fdata /tmp/.tmpbj6cci/prof.fdata.132232.fdata /tmp/.tmpbj6cci/prof.fdata.132244.fdata /tmp/.tmpbj6cci/prof.fdata.132252.fdata /tmp/.tmpbj6cci/prof.fdata.132256.fdata /tmp/.tmpbj6cci/prof.fdata.132265.fdata /tmp/.tmpbj6cci/prof.fdata.132281.fdata /tmp/.tmpbj6cci/prof.fdata.132289.fdata /tmp/.tmpbj6cci/prof.fdata.132299.fdata /tmp/.tmpbj6cci/prof.fdata.132307.fdata /tmp/.tmpbj6cci/prof.fdata.132314.fdata /tmp/.tmpbj6cci/prof.fdata.132319.fdata /tmp/.tmpbj6cci/prof.fdata.132323.fdata /tmp/.tmpbj6cci/prof.fdata.132331.fdata /tmp/.tmpbj6cci/prof.fdata.132351.fdata /tmp/.tmpbj6cci/prof.fdata.132379.fdata /tmp/.tmpbj6cci/prof.fdata.132387.fdata /tmp/.tmpbj6cci/prof.fdata.132402.fdata /tmp/.tmpbj6cci/prof.fdata.132417.fdata /tmp/.tmpbj6cci/prof.fdata.132427.fdata /tmp/.tmpbj6cci/prof.fdata.132437.fdata /tmp/.tmpbj6cci/prof.fdata.132440.fdata /tmp/.tmpbj6cci/prof.fdata.132460.fdata /tmp/.tmpbj6cci/prof.fdata.132472.fdata /tmp/.tmpbj6cci/prof.fdata.132512.fdata /tmp/.tmpbj6cci/prof.fdata.132522.fdata /tmp/.tmpbj6cci/prof.fdata.132539.fdata /tmp/.tmpbj6cci/prof.fdata.132553.fdata /tmp/.tmpbj6cci/prof.fdata.132561.fdata /tmp/.tmpbj6cci/prof.fdata.132583.fdata /tmp/.tmpbj6cci/prof.fdata.132594.fdata /tmp/.tmpbj6cci/prof.fdata.132599.fdata /tmp/.tmpbj6cci/prof.fdata.132615.fdata /tmp/.tmpbj6cci/prof.fdata.132619.fdata /tmp/.tmpbj6cci/prof.fdata.132629.fdata /tmp/.tmpbj6cci/prof.fdata.132644.fdata /tmp/.tmpbj6cci/prof.fdata.132653.fdata /tmp/.tmpbj6cci/prof.fdata.132673.fdata /tmp/.tmpbj6cci/prof.fdata.132692.fdata /tmp/.tmpbj6cci/prof.fdata.132714.fdata /tmp/.tmpbj6cci/prof.fdata.132719.fdata /tmp/.tmpbj6cci/prof.fdata.132735.fdata /tmp/.tmpbj6cci/prof.fdata.132747.fdata /tmp/.tmpbj6cci/prof.fdata.132766.fdata /tmp/.tmpbj6cci/prof.fdata.132772.fdata /tmp/.tmpbj6cci/prof.fdata.132782.fdata /tmp/.tmpbj6cci/prof.fdata.132808.fdata /tmp/.tmpbj6cci/prof.fdata.132826.fdata /tmp/.tmpbj6cci/prof.fdata.132835.fdata /tmp/.tmpbj6cci/prof.fdata.132855.fdata /tmp/.tmpbj6cci/prof.fdata.132913.fdata /tmp/.tmpbj6cci/prof.fdata.132922.fdata /tmp/.tmpbj6cci/prof.fdata.132928.fdata /tmp/.tmpbj6cci/prof.fdata.132950.fdata /tmp/.tmpbj6cci/prof.fdata.132952.fdata /tmp/.tmpbj6cci/prof.fdata.132959.fdata /tmp/.tmpbj6cci/prof.fdata.133130.fdata /tmp/.tmpbj6cci/prof.fdata.133153.fdata /tmp/.tmpbj6cci/prof.fdata.133436.fdata /tmp/.tmpbj6cci/prof.fdata.133528.fdata /tmp/.tmpbj6cci/prof.fdata.134056.fdata /tmp/.tmpbj6cci/prof.fdata.134108.fdata /tmp/.tmpbj6cci/prof.fdata.134202.fdata /tmp/.tmpbj6cci/prof.fdata.134591.fdata /tmp/.tmpbj6cci/prof.fdata.134624.fdata /tmp/.tmpbj6cci/prof.fdata.134806.fdata /tmp/.tmpbj6cci/prof.fdata.134913.fdata /tmp/.tmpbj6cci/prof.fdata.134968.fdata /tmp/.tmpbj6cci/prof.fdata.135021.fdata /tmp/.tmpbj6cci/prof.fdata.135056.fdata /tmp/.tmpbj6cci/prof.fdata.135061.fdata /tmp/.tmpbj6cci/prof.fdata.135069.fdata /tmp/.tmpbj6cci/prof.fdata.135126.fdata /tmp/.tmpbj6cci/prof.fdata.135153.fdata /tmp/.tmpbj6cci/prof.fdata.135198.fdata /tmp/.tmpbj6cci/prof.fdata.135199.fdata /tmp/.tmpbj6cci/prof.fdata.135202.fdata /tmp/.tmpbj6cci/prof.fdata.135203.fdata /tmp/.tmpbj6cci/prof.fdata.135208.fdata /tmp/.tmpbj6cci/prof.fdata.135209.fdata /tmp/.tmpbj6cci/prof.fdata.135224.fdata /tmp/.tmpbj6cci/prof.fdata.135226.fdata /tmp/.tmpbj6cci/prof.fdata.135227.fdata /tmp/.tmpbj6cci/prof.fdata.135229.fdata /tmp/.tmpbj6cci/prof.fdata.135231.fdata /tmp/.tmpbj6cci/prof.fdata.135232.fdata /tmp/.tmpbj6cci/prof.fdata.135233.fdata /tmp/.tmpbj6cci/prof.fdata.135236.fdata /tmp/.tmpbj6cci/prof.fdata.135237.fdata /tmp/.tmpbj6cci/prof.fdata.135239.fdata /tmp/.tmpbj6cci/prof.fdata.135240.fdata /tmp/.tmpbj6cci/prof.fdata.135241.fdata /tmp/.tmpbj6cci/prof.fdata.135242.fdata /tmp/.tmpbj6cci/prof.fdata.135243.fdata /tmp/.tmpbj6cci/prof.fdata.135244.fdata /tmp/.tmpbj6cci/prof.fdata.135245.fdata /tmp/.tmpbj6cci/prof.fdata.135383.fdata /tmp/.tmpbj6cci/prof.fdata.135386.fdata /tmp/.tmpbj6cci/prof.fdata.135394.fdata /tmp/.tmpbj6cci/prof.fdata.135402.fdata /tmp/.tmpbj6cci/prof.fdata.135406.fdata /tmp/.tmpbj6cci/prof.fdata.135413.fdata /tmp/.tmpbj6cci/prof.fdata.135418.fdata /tmp/.tmpbj6cci/prof.fdata.135422.fdata /tmp/.tmpbj6cci/prof.fdata.135434.fdata /tmp/.tmpbj6cci/prof.fdata.135443.fdata /tmp/.tmpbj6cci/prof.fdata.135445.fdata /tmp/.tmpbj6cci/prof.fdata.135471.fdata /tmp/.tmpbj6cci/prof.fdata.135490.fdata /tmp/.tmpbj6cci/prof.fdata.135496.fdata /tmp/.tmpbj6cci/prof.fdata.135516.fdata /tmp/.tmpbj6cci/prof.fdata.135543.fdata /tmp/.tmpbj6cci/prof.fdata.135588.fdata /tmp/.tmpbj6cci/prof.fdata.135589.fdata /tmp/.tmpbj6cci/prof.fdata.135592.fdata /tmp/.tmpbj6cci/prof.fdata.135593.fdata /tmp/.tmpbj6cci/prof.fdata.135598.fdata /tmp/.tmpbj6cci/prof.fdata.135599.fdata /tmp/.tmpbj6cci/prof.fdata.135610.fdata /tmp/.tmpbj6cci/prof.fdata.135611.fdata /tmp/.tmpbj6cci/prof.fdata.135613.fdata /tmp/.tmpbj6cci/prof.fdata.135614.fdata /tmp/.tmpbj6cci/prof.fdata.135615.fdata /tmp/.tmpbj6cci/prof.fdata.135616.fdata /tmp/.tmpbj6cci/prof.fdata.135618.fdata /tmp/.tmpbj6cci/prof.fdata.135621.fdata /tmp/.tmpbj6cci/prof.fdata.135625.fdata /tmp/.tmpbj6cci/prof.fdata.135626.fdata /tmp/.tmpbj6cci/prof.fdata.135628.fdata /tmp/.tmpbj6cci/prof.fdata.135629.fdata /tmp/.tmpbj6cci/prof.fdata.135633.fdata /tmp/.tmpbj6cci/prof.fdata.135635.fdata /tmp/.tmpbj6cci/prof.fdata.135636.fdata /tmp/.tmpbj6cci/prof.fdata.135637.fdata /tmp/.tmpbj6cci/prof.fdata.135638.fdata /tmp/.tmpbj6cci/prof.fdata.135724.fdata /tmp/.tmpbj6cci/prof.fdata.135772.fdata /tmp/.tmpbj6cci/prof.fdata.135777.fdata /tmp/.tmpbj6cci/prof.fdata.135778.fdata /tmp/.tmpbj6cci/prof.fdata.135788.fdata /tmp/.tmpbj6cci/prof.fdata.135796.fdata /tmp/.tmpbj6cci/prof.fdata.135807.fdata /tmp/.tmpbj6cci/prof.fdata.135814.fdata /tmp/.tmpbj6cci/prof.fdata.135819.fdata /tmp/.tmpbj6cci/prof.fdata.135831.fdata /tmp/.tmpbj6cci/prof.fdata.135838.fdata /tmp/.tmpbj6cci/prof.fdata.135842.fdata /tmp/.tmpbj6cci/prof.fdata.135850.fdata /tmp/.tmpbj6cci/prof.fdata.135857.fdata /tmp/.tmpbj6cci/prof.fdata.135879.fdata /tmp/.tmpbj6cci/prof.fdata.135884.fdata /tmp/.tmpbj6cci/prof.fdata.135887.fdata /tmp/.tmpbj6cci/prof.fdata.135893.fdata /tmp/.tmpbj6cci/prof.fdata.135896.fdata /tmp/.tmpbj6cci/prof.fdata.135904.fdata /tmp/.tmpbj6cci/prof.fdata.135905.fdata /tmp/.tmpbj6cci/prof.fdata.135914.fdata /tmp/.tmpbj6cci/prof.fdata.135924.fdata /tmp/.tmpbj6cci/prof.fdata.135925.fdata /tmp/.tmpbj6cci/prof.fdata.135929.fdata /tmp/.tmpbj6cci/prof.fdata.135936.fdata /tmp/.tmpbj6cci/prof.fdata.135945.fdata /tmp/.tmpbj6cci/prof.fdata.135954.fdata /tmp/.tmpbj6cci/prof.fdata.135965.fdata /tmp/.tmpbj6cci/prof.fdata.135976.fdata /tmp/.tmpbj6cci/prof.fdata.135978.fdata /tmp/.tmpbj6cci/prof.fdata.136008.fdata /tmp/.tmpbj6cci/prof.fdata.136016.fdata /tmp/.tmpbj6cci/prof.fdata.136031.fdata /tmp/.tmpbj6cci/prof.fdata.136039.fdata /tmp/.tmpbj6cci/prof.fdata.136042.fdata /tmp/.tmpbj6cci/prof.fdata.136053.fdata /tmp/.tmpbj6cci/prof.fdata.136061.fdata /tmp/.tmpbj6cci/prof.fdata.136066.fdata /tmp/.tmpbj6cci/prof.fdata.136097.fdata /tmp/.tmpbj6cci/prof.fdata.136101.fdata /tmp/.tmpbj6cci/prof.fdata.136107.fdata /tmp/.tmpbj6cci/prof.fdata.136121.fdata /tmp/.tmpbj6cci/prof.fdata.136125.fdata /tmp/.tmpbj6cci/prof.fdata.136127.fdata /tmp/.tmpbj6cci/prof.fdata.136142.fdata /tmp/.tmpbj6cci/prof.fdata.136151.fdata /tmp/.tmpbj6cci/prof.fdata.136160.fdata /tmp/.tmpbj6cci/prof.fdata.136164.fdata /tmp/.tmpbj6cci/prof.fdata.136171.fdata /tmp/.tmpbj6cci/prof.fdata.136174.fdata /tmp/.tmpbj6cci/prof.fdata.136185.fdata /tmp/.tmpbj6cci/prof.fdata.136196.fdata /tmp/.tmpbj6cci/prof.fdata.136200.fdata /tmp/.tmpbj6cci/prof.fdata.136204.fdata /tmp/.tmpbj6cci/prof.fdata.136218.fdata /tmp/.tmpbj6cci/prof.fdata.136223.fdata /tmp/.tmpbj6cci/prof.fdata.136224.fdata /tmp/.tmpbj6cci/prof.fdata.136225.fdata /tmp/.tmpbj6cci/prof.fdata.136239.fdata /tmp/.tmpbj6cci/prof.fdata.136251.fdata /tmp/.tmpbj6cci/prof.fdata.136256.fdata /tmp/.tmpbj6cci/prof.fdata.136261.fdata /tmp/.tmpbj6cci/prof.fdata.136265.fdata /tmp/.tmpbj6cci/prof.fdata.136280.fdata /tmp/.tmpbj6cci/prof.fdata.136289.fdata /tmp/.tmpbj6cci/prof.fdata.136300.fdata /tmp/.tmpbj6cci/prof.fdata.136305.fdata /tmp/.tmpbj6cci/prof.fdata.136312.fdata /tmp/.tmpbj6cci/prof.fdata.136321.fdata /tmp/.tmpbj6cci/prof.fdata.136332.fdata /tmp/.tmpbj6cci/prof.fdata.136338.fdata /tmp/.tmpbj6cci/prof.fdata.136353.fdata /tmp/.tmpbj6cci/prof.fdata.136365.fdata /tmp/.tmpbj6cci/prof.fdata.136375.fdata /tmp/.tmpbj6cci/prof.fdata.136416.fdata /tmp/.tmpbj6cci/prof.fdata.136417.fdata /tmp/.tmpbj6cci/prof.fdata.136455.fdata /tmp/.tmpbj6cci/prof.fdata.136456.fdata /tmp/.tmpbj6cci/prof.fdata.136491.fdata /tmp/.tmpbj6cci/prof.fdata.136497.fdata /tmp/.tmpbj6cci/prof.fdata.136504.fdata /tmp/.tmpbj6cci/prof.fdata.136508.fdata /tmp/.tmpbj6cci/prof.fdata.136515.fdata /tmp/.tmpbj6cci/prof.fdata.136530.fdata /tmp/.tmpbj6cci/prof.fdata.136545.fdata /tmp/.tmpbj6cci/prof.fdata.136552.fdata /tmp/.tmpbj6cci/prof.fdata.136589.fdata /tmp/.tmpbj6cci/prof.fdata.136616.fdata /tmp/.tmpbj6cci/prof.fdata.136630.fdata /tmp/.tmpbj6cci/prof.fdata.136631.fdata /tmp/.tmpbj6cci/prof.fdata.136634.fdata /tmp/.tmpbj6cci/prof.fdata.136635.fdata /tmp/.tmpbj6cci/prof.fdata.136640.fdata /tmp/.tmpbj6cci/prof.fdata.136641.fdata /tmp/.tmpbj6cci/prof.fdata.136650.fdata /tmp/.tmpbj6cci/prof.fdata.136651.fdata /tmp/.tmpbj6cci/prof.fdata.136652.fdata /tmp/.tmpbj6cci/prof.fdata.136653.fdata /tmp/.tmpbj6cci/prof.fdata.136677.fdata /tmp/.tmpbj6cci/prof.fdata.136685.fdata /tmp/.tmpbj6cci/prof.fdata.136704.fdata /tmp/.tmpbj6cci/prof.fdata.136708.fdata /tmp/.tmpbj6cci/prof.fdata.136809.fdata /tmp/.tmpbj6cci/prof.fdata.136836.fdata /tmp/.tmpbj6cci/prof.fdata.136881.fdata /tmp/.tmpbj6cci/prof.fdata.136882.fdata /tmp/.tmpbj6cci/prof.fdata.136885.fdata /tmp/.tmpbj6cci/prof.fdata.136886.fdata /tmp/.tmpbj6cci/prof.fdata.136891.fdata /tmp/.tmpbj6cci/prof.fdata.136892.fdata /tmp/.tmpbj6cci/prof.fdata.136902.fdata /tmp/.tmpbj6cci/prof.fdata.136905.fdata /tmp/.tmpbj6cci/prof.fdata.136907.fdata /tmp/.tmpbj6cci/prof.fdata.136908.fdata /tmp/.tmpbj6cci/prof.fdata.136910.fdata /tmp/.tmpbj6cci/prof.fdata.136911.fdata /tmp/.tmpbj6cci/prof.fdata.136913.fdata /tmp/.tmpbj6cci/prof.fdata.136915.fdata /tmp/.tmpbj6cci/prof.fdata.136917.fdata /tmp/.tmpbj6cci/prof.fdata.136918.fdata /tmp/.tmpbj6cci/prof.fdata.136920.fdata /tmp/.tmpbj6cci/prof.fdata.136922.fdata /tmp/.tmpbj6cci/prof.fdata.136923.fdata /tmp/.tmpbj6cci/prof.fdata.136927.fdata /tmp/.tmpbj6cci/prof.fdata.136928.fdata /tmp/.tmpbj6cci/prof.fdata.136945.fdata /tmp/.tmpbj6cci/prof.fdata.136949.fdata /tmp/.tmpbj6cci/prof.fdata.136958.fdata /tmp/.tmpbj6cci/prof.fdata.137062.fdata /tmp/.tmpbj6cci/prof.fdata.137066.fdata /tmp/.tmpbj6cci/prof.fdata.137070.fdata /tmp/.tmpbj6cci/prof.fdata.137083.fdata /tmp/.tmpbj6cci/prof.fdata.137085.fdata /tmp/.tmpbj6cci/prof.fdata.137093.fdata /tmp/.tmpbj6cci/prof.fdata.137105.fdata /tmp/.tmpbj6cci/prof.fdata.137116.fdata /tmp/.tmpbj6cci/prof.fdata.137118.fdata /tmp/.tmpbj6cci/prof.fdata.137128.fdata /tmp/.tmpbj6cci/prof.fdata.137129.fdata /tmp/.tmpbj6cci/prof.fdata.137133.fdata /tmp/.tmpbj6cci/prof.fdata.137143.fdata /tmp/.tmpbj6cci/prof.fdata.137144.fdata /tmp/.tmpbj6cci/prof.fdata.137147.fdata /tmp/.tmpbj6cci/prof.fdata.137158.fdata /tmp/.tmpbj6cci/prof.fdata.137161.fdata /tmp/.tmpbj6cci/prof.fdata.137164.fdata /tmp/.tmpbj6cci/prof.fdata.137168.fdata /tmp/.tmpbj6cci/prof.fdata.137177.fdata /tmp/.tmpbj6cci/prof.fdata.137180.fdata /tmp/.tmpbj6cci/prof.fdata.137182.fdata /tmp/.tmpbj6cci/prof.fdata.137193.fdata /tmp/.tmpbj6cci/prof.fdata.137195.fdata /tmp/.tmpbj6cci/prof.fdata.137211.fdata /tmp/.tmpbj6cci/prof.fdata.137221.fdata /tmp/.tmpbj6cci/prof.fdata.137228.fdata /tmp/.tmpbj6cci/prof.fdata.137233.fdata /tmp/.tmpbj6cci/prof.fdata.137243.fdata /tmp/.tmpbj6cci/prof.fdata.137258.fdata /tmp/.tmpbj6cci/prof.fdata.137294.fdata /tmp/.tmpbj6cci/prof.fdata.137303.fdata /tmp/.tmpbj6cci/prof.fdata.137315.fdata /tmp/.tmpbj6cci/prof.fdata.137326.fdata /tmp/.tmpbj6cci/prof.fdata.137330.fdata /tmp/.tmpbj6cci/prof.fdata.137337.fdata /tmp/.tmpbj6cci/prof.fdata.137353.fdata /tmp/.tmpbj6cci/prof.fdata.137361.fdata /tmp/.tmpbj6cci/prof.fdata.137373.fdata /tmp/.tmpbj6cci/prof.fdata.137385.fdata /tmp/.tmpbj6cci/prof.fdata.137387.fdata /tmp/.tmpbj6cci/prof.fdata.137394.fdata /tmp/.tmpbj6cci/prof.fdata.137400.fdata /tmp/.tmpbj6cci/prof.fdata.137409.fdata /tmp/.tmpbj6cci/prof.fdata.137423.fdata /tmp/.tmpbj6cci/prof.fdata.137429.fdata /tmp/.tmpbj6cci/prof.fdata.137474.fdata /tmp/.tmpbj6cci/prof.fdata.137501.fdata /tmp/.tmpbj6cci/prof.fdata.137525.fdata /tmp/.tmpbj6cci/prof.fdata.137544.fdata /tmp/.tmpbj6cci/prof.fdata.137548.fdata /tmp/.tmpbj6cci/prof.fdata.137569.fdata /tmp/.tmpbj6cci/prof.fdata.137576.fdata /tmp/.tmpbj6cci/prof.fdata.137577.fdata /tmp/.tmpbj6cci/prof.fdata.137590.fdata /tmp/.tmpbj6cci/prof.fdata.137598.fdata /tmp/.tmpbj6cci/prof.fdata.137603.fdata /tmp/.tmpbj6cci/prof.fdata.137605.fdata /tmp/.tmpbj6cci/prof.fdata.137628.fdata /tmp/.tmpbj6cci/prof.fdata.137635.fdata /tmp/.tmpbj6cci/prof.fdata.137640.fdata /tmp/.tmpbj6cci/prof.fdata.137648.fdata /tmp/.tmpbj6cci/prof.fdata.137652.fdata /tmp/.tmpbj6cci/prof.fdata.137666.fdata /tmp/.tmpbj6cci/prof.fdata.137677.fdata /tmp/.tmpbj6cci/prof.fdata.137703.fdata /tmp/.tmpbj6cci/prof.fdata.137709.fdata /tmp/.tmpbj6cci/prof.fdata.137714.fdata /tmp/.tmpbj6cci/prof.fdata.137715.fdata /tmp/.tmpbj6cci/prof.fdata.137722.fdata /tmp/.tmpbj6cci/prof.fdata.137727.fdata /tmp/.tmpbj6cci/prof.fdata.137731.fdata /tmp/.tmpbj6cci/prof.fdata.137747.fdata /tmp/.tmpbj6cci/prof.fdata.137754.fdata /tmp/.tmpbj6cci/prof.fdata.137763.fdata /tmp/.tmpbj6cci/prof.fdata.137786.fdata /tmp/.tmpbj6cci/prof.fdata.137791.fdata /tmp/.tmpbj6cci/prof.fdata.137799.fdata /tmp/.tmpbj6cci/prof.fdata.137805.fdata /tmp/.tmpbj6cci/prof.fdata.137813.fdata /tmp/.tmpbj6cci/prof.fdata.137819.fdata /tmp/.tmpbj6cci/prof.fdata.137827.fdata /tmp/.tmpbj6cci/prof.fdata.137832.fdata /tmp/.tmpbj6cci/prof.fdata.137849.fdata /tmp/.tmpbj6cci/prof.fdata.137855.fdata /tmp/.tmpbj6cci/prof.fdata.137866.fdata /tmp/.tmpbj6cci/prof.fdata.137873.fdata /tmp/.tmpbj6cci/prof.fdata.137876.fdata /tmp/.tmpbj6cci/prof.fdata.137893.fdata /tmp/.tmpbj6cci/prof.fdata.137908.fdata /tmp/.tmpbj6cci/prof.fdata.137917.fdata /tmp/.tmpbj6cci/prof.fdata.137936.fdata /tmp/.tmpbj6cci/prof.fdata.137942.fdata /tmp/.tmpbj6cci/prof.fdata.137975.fdata /tmp/.tmpbj6cci/prof.fdata.137996.fdata /tmp/.tmpbj6cci/prof.fdata.138011.fdata /tmp/.tmpbj6cci/prof.fdata.138038.fdata /tmp/.tmpbj6cci/prof.fdata.138045.fdata /tmp/.tmpbj6cci/prof.fdata.138060.fdata /tmp/.tmpbj6cci/prof.fdata.138063.fdata /tmp/.tmpbj6cci/prof.fdata.138070.fdata /tmp/.tmpbj6cci/prof.fdata.138085.fdata /tmp/.tmpbj6cci/prof.fdata.138100.fdata /tmp/.tmpbj6cci/prof.fdata.138104.fdata /tmp/.tmpbj6cci/prof.fdata.138114.fdata /tmp/.tmpbj6cci/prof.fdata.138120.fdata /tmp/.tmpbj6cci/prof.fdata.138141.fdata /tmp/.tmpbj6cci/prof.fdata.138149.fdata /tmp/.tmpbj6cci/prof.fdata.138151.fdata /tmp/.tmpbj6cci/prof.fdata.138163.fdata /tmp/.tmpbj6cci/prof.fdata.138175.fdata /tmp/.tmpbj6cci/prof.fdata.138195.fdata /tmp/.tmpbj6cci/prof.fdata.138235.fdata /tmp/.tmpbj6cci/prof.fdata.138248.fdata /tmp/.tmpbj6cci/prof.fdata.138272.fdata /tmp/.tmpbj6cci/prof.fdata.138331.fdata /tmp/.tmpbj6cci/prof.fdata.138380.fdata /tmp/.tmpbj6cci/prof.fdata.138391.fdata /tmp/.tmpbj6cci/prof.fdata.138425.fdata /tmp/.tmpbj6cci/prof.fdata.138439.fdata /tmp/.tmpbj6cci/prof.fdata.138508.fdata /tmp/.tmpbj6cci/prof.fdata.138516.fdata /tmp/.tmpbj6cci/prof.fdata.138532.fdata /tmp/.tmpbj6cci/prof.fdata.138572.fdata /tmp/.tmpbj6cci/prof.fdata.138607.fdata /tmp/.tmpbj6cci/prof.fdata.138651.fdata /tmp/.tmpbj6cci/prof.fdata.138653.fdata /tmp/.tmpbj6cci/prof.fdata.138656.fdata /tmp/.tmpbj6cci/prof.fdata.138665.fdata /tmp/.tmpbj6cci/prof.fdata.138666.fdata /tmp/.tmpbj6cci/prof.fdata.138667.fdata /tmp/.tmpbj6cci/prof.fdata.138669.fdata /tmp/.tmpbj6cci/prof.fdata.138670.fdata /tmp/.tmpbj6cci/prof.fdata.138671.fdata /tmp/.tmpbj6cci/prof.fdata.138673.fdata /tmp/.tmpbj6cci/prof.fdata.138675.fdata /tmp/.tmpbj6cci/prof.fdata.138678.fdata /tmp/.tmpbj6cci/prof.fdata.138680.fdata /tmp/.tmpbj6cci/prof.fdata.138684.fdata /tmp/.tmpbj6cci/prof.fdata.138685.fdata /tmp/.tmpbj6cci/prof.fdata.138687.fdata /tmp/.tmpbj6cci/prof.fdata.138688.fdata /tmp/.tmpbj6cci/prof.fdata.138690.fdata /tmp/.tmpbj6cci/prof.fdata.138691.fdata /tmp/.tmpbj6cci/prof.fdata.138704.fdata /tmp/.tmpbj6cci/prof.fdata.138811.fdata /tmp/.tmpbj6cci/prof.fdata.138812.fdata /tmp/.tmpbj6cci/prof.fdata.138818.fdata /tmp/.tmpbj6cci/prof.fdata.138834.fdata /tmp/.tmpbj6cci/prof.fdata.138841.fdata /tmp/.tmpbj6cci/prof.fdata.138845.fdata /tmp/.tmpbj6cci/prof.fdata.138853.fdata /tmp/.tmpbj6cci/prof.fdata.138866.fdata /tmp/.tmpbj6cci/prof.fdata.138868.fdata /tmp/.tmpbj6cci/prof.fdata.138874.fdata /tmp/.tmpbj6cci/prof.fdata.138879.fdata /tmp/.tmpbj6cci/prof.fdata.138880.fdata /tmp/.tmpbj6cci/prof.fdata.138887.fdata /tmp/.tmpbj6cci/prof.fdata.138891.fdata /tmp/.tmpbj6cci/prof.fdata.138898.fdata /tmp/.tmpbj6cci/prof.fdata.138899.fdata /tmp/.tmpbj6cci/prof.fdata.138902.fdata /tmp/.tmpbj6cci/prof.fdata.138906.fdata /tmp/.tmpbj6cci/prof.fdata.138913.fdata /tmp/.tmpbj6cci/prof.fdata.138918.fdata /tmp/.tmpbj6cci/prof.fdata.138930.fdata /tmp/.tmpbj6cci/prof.fdata.138937.fdata /tmp/.tmpbj6cci/prof.fdata.138946.fdata /tmp/.tmpbj6cci/prof.fdata.138947.fdata /tmp/.tmpbj6cci/prof.fdata.138949.fdata /tmp/.tmpbj6cci/prof.fdata.138963.fdata /tmp/.tmpbj6cci/prof.fdata.138975.fdata /tmp/.tmpbj6cci/prof.fdata.138979.fdata /tmp/.tmpbj6cci/prof.fdata.138990.fdata /tmp/.tmpbj6cci/prof.fdata.139011.fdata /tmp/.tmpbj6cci/prof.fdata.139021.fdata /tmp/.tmpbj6cci/prof.fdata.139025.fdata /tmp/.tmpbj6cci/prof.fdata.139029.fdata /tmp/.tmpbj6cci/prof.fdata.139037.fdata /tmp/.tmpbj6cci/prof.fdata.139043.fdata /tmp/.tmpbj6cci/prof.fdata.139049.fdata /tmp/.tmpbj6cci/prof.fdata.139051.fdata /tmp/.tmpbj6cci/prof.fdata.139063.fdata /tmp/.tmpbj6cci/prof.fdata.139065.fdata /tmp/.tmpbj6cci/prof.fdata.139076.fdata /tmp/.tmpbj6cci/prof.fdata.139087.fdata /tmp/.tmpbj6cci/prof.fdata.139097.fdata /tmp/.tmpbj6cci/prof.fdata.139099.fdata /tmp/.tmpbj6cci/prof.fdata.139105.fdata /tmp/.tmpbj6cci/prof.fdata.139112.fdata /tmp/.tmpbj6cci/prof.fdata.139128.fdata /tmp/.tmpbj6cci/prof.fdata.139132.fdata /tmp/.tmpbj6cci/prof.fdata.139138.fdata /tmp/.tmpbj6cci/prof.fdata.139149.fdata /tmp/.tmpbj6cci/prof.fdata.139162.fdata /tmp/.tmpbj6cci/prof.fdata.139172.fdata /tmp/.tmpbj6cci/prof.fdata.139197.fdata /tmp/.tmpbj6cci/prof.fdata.139204.fdata /tmp/.tmpbj6cci/prof.fdata.139243.fdata /tmp/.tmpbj6cci/prof.fdata.139249.fdata /tmp/.tmpbj6cci/prof.fdata.139256.fdata /tmp/.tmpbj6cci/prof.fdata.139263.fdata /tmp/.tmpbj6cci/prof.fdata.139283.fdata /tmp/.tmpbj6cci/prof.fdata.139301.fdata /tmp/.tmpbj6cci/prof.fdata.139302.fdata /tmp/.tmpbj6cci/prof.fdata.139305.fdata /tmp/.tmpbj6cci/prof.fdata.139306.fdata /tmp/.tmpbj6cci/prof.fdata.139311.fdata /tmp/.tmpbj6cci/prof.fdata.139312.fdata /tmp/.tmpbj6cci/prof.fdata.139319.fdata /tmp/.tmpbj6cci/prof.fdata.139320.fdata /tmp/.tmpbj6cci/prof.fdata.139339.fdata /tmp/.tmpbj6cci/prof.fdata.139343.fdata /tmp/.tmpbj6cci/prof.fdata.139358.fdata /tmp/.tmpbj6cci/prof.fdata.139373.fdata /tmp/.tmpbj6cci/prof.fdata.139388.fdata /tmp/.tmpbj6cci/prof.fdata.139389.fdata /tmp/.tmpbj6cci/prof.fdata.139392.fdata /tmp/.tmpbj6cci/prof.fdata.139393.fdata /tmp/.tmpbj6cci/prof.fdata.139398.fdata /tmp/.tmpbj6cci/prof.fdata.139399.fdata /tmp/.tmpbj6cci/prof.fdata.139410.fdata /tmp/.tmpbj6cci/prof.fdata.139411.fdata /tmp/.tmpbj6cci/prof.fdata.139412.fdata /tmp/.tmpbj6cci/prof.fdata.139413.fdata /tmp/.tmpbj6cci/prof.fdata.139414.fdata /tmp/.tmpbj6cci/prof.fdata.139415.fdata /tmp/.tmpbj6cci/prof.fdata.139469.fdata /tmp/.tmpbj6cci/prof.fdata.139473.fdata /tmp/.tmpbj6cci/prof.fdata.139477.fdata /tmp/.tmpbj6cci/prof.fdata.139480.fdata /tmp/.tmpbj6cci/prof.fdata.139484.fdata /tmp/.tmpbj6cci/prof.fdata.139488.fdata /tmp/.tmpbj6cci/prof.fdata.139494.fdata /tmp/.tmpbj6cci/prof.fdata.139496.fdata /tmp/.tmpbj6cci/prof.fdata.139553.fdata /tmp/.tmpbj6cci/prof.fdata.139583.fdata > "/tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata" [at /checkout/obj]`
Profile from 735 files merged.
##[endgroup]
[2024-06-09T14:09:51.994Z INFO  opt_dist::training] LLVM BOLT statistics
[2024-06-09T14:09:51.994Z INFO  opt_dist::training] /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata: 146.08 MiB
---
[2024-06-09T14:12:53Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:12:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:12:53Z DEBUG collector::compile::execute] cd "/tmp/.tmpFFLgLd" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpFFLgLd#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:12:55Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:12:55Z DEBUG collector::compile::execute] cd "/tmp/.tmpFFLgLd" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpFFLgLd#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpFFLgLd/incremental-state"
[2024-06-09T14:12:58Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:12:58Z DEBUG collector::compile::execute] cd "/tmp/.tmpFFLgLd" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpFFLgLd#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpFFLgLd/incremental-state"
[2024-06-09T14:12:59Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpFFLgLd"
[2024-06-09T14:12:59Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T14:12:59Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T14:12:59Z DEBUG collector::compile::execute] cd "/tmp/.tmpFFLgLd" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpFFLgLd#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpFFLgLd/incremental-state"
[2024-06-09T14:13:01Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:13:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:13:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpKZPdRY" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpKZPdRY#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:13:04Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:13:04Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:13:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpKZPdRY" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpKZPdRY#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpKZPdRY/incremental-state"
[2024-06-09T14:13:07Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:13:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpKZPdRY" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpKZPdRY#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpKZPdRY/incremental-state"
[2024-06-09T14:13:08Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpKZPdRY"
[2024-06-09T14:13:08Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T14:13:08Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T14:13:08Z DEBUG collector::compile::execute] cd "/tmp/.tmpKZPdRY" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpKZPdRY#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpKZPdRY/incremental-state"
[2024-06-09T14:13:11Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:13:11Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:13:11Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:13:11Z DEBUG collector::compile::execute] cd "/tmp/.tmpfumCgA" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpfumCgA#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:13:13Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:13:13Z DEBUG collector::compile::execute] cd "/tmp/.tmpfumCgA" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpfumCgA#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfumCgA/incremental-state"
[2024-06-09T14:13:16Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:13:16Z DEBUG collector::compile::execute] cd "/tmp/.tmpfumCgA" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpfumCgA#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfumCgA/incremental-state"
[2024-06-09T14:13:18Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpfumCgA"
[2024-06-09T14:13:18Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T14:13:18Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T14:13:18Z DEBUG collector::compile::execute] cd "/tmp/.tmpfumCgA" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpfumCgA#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfumCgA/incremental-state"
Executing benchmark cargo-0.60.0 (2/8)
Preparing cargo-0.60.0
[2024-06-09T14:13:20Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:13:20Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-06-09T14:15:25Z DEBUG collector::compile::execute] cd "/tmp/.tmpOA9n32" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpOA9n32#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpOA9n32/incremental-state"
Running cargo-0.60.0: Debug + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2024-06-09T14:15:30Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:15:30Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:15:30Z DEBUG collector::compile::execute] cd "/tmp/.tmpjNuBMW" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpjNuBMW#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:15:49Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:15:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpjNuBMW" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpjNuBMW#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpjNuBMW/incremental-state"
[2024-06-09T14:16:12Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:16:12Z DEBUG collector::compile::execute] cd "/tmp/.tmpjNuBMW" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpjNuBMW#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpjNuBMW/incremental-state"
[2024-06-09T14:16:18Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpjNuBMW"
[2024-06-09T14:16:18Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T14:16:18Z 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" }), backend=Llvm, phase=benchmark
[2024-06-09T14:16:18Z DEBUG collector::compile::execute] cd "/tmp/.tmpjNuBMW" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpjNuBMW#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpjNuBMW/incremental-state"
[2024-06-09T14:16:25Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:16:25Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:16:25Z DEBUG collector::compile::execute] cd "/tmp/.tmpbp9TsV" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpbp9TsV#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:16:52Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-06-09T14:17:53Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:17:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:17:53Z DEBUG collector::compile::execute] cd "/tmp/.tmp5OdWoi" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmp5OdWoi#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:17:58Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:17:58Z DEBUG collector::compile::execute] cd "/tmp/.tmp5OdWoi" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmp5OdWoi#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp5OdWoi/incremental-state"
[2024-06-09T14:18:03Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:18:03Z DEBUG collector::compile::execute] cd "/tmp/.tmp5OdWoi" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmp5OdWoi#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp5OdWoi/incremental-state"
Executing benchmark diesel-1.4.8 (4/8)
Preparing diesel-1.4.8
[2024-06-09T14:18:04Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:18:04Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
Preparing match-stress
[2024-06-09T14:19:36Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:19:36Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:19:36Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:19:36Z DEBUG collector::compile::execute] cd "/tmp/.tmpEcnRgF" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpEcnRgF#match-stress@0.1.0" "--" "--skip-this-rustc"
[2024-06-09T14:19:36Z DEBUG collector::compile::execute] cd "/tmp/.tmps0ScEl" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmps0ScEl#match-stress@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2024-06-09T14:19:36Z DEBUG collector::compile::execute] cd "/tmp/.tmpeeeBQX" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" 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/.tmpeeeBQX#match-stress@0.1.0" "--release" "--" "--skip-this-rustc"
[2024-06-09T14:19:37Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:19:37Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:19:37Z DEBUG collector::compile::execute] cd "/tmp/.tmpnuRyxN" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpnuRyxN#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:19:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:19:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:19:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpnuRyxN" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpnuRyxN#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpnuRyxN/incremental-state"
[2024-06-09T14:19:42Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:19:42Z DEBUG collector::compile::execute] cd "/tmp/.tmpnuRyxN" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpnuRyxN#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpnuRyxN/incremental-state"
[2024-06-09T14:19:43Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:19:43Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:19:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpIrU3bJ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpIrU3bJ#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:19:46Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:19:46Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:19:46Z DEBUG collector::compile::execute] cd "/tmp/.tmpIrU3bJ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpIrU3bJ#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpIrU3bJ/incremental-state"
[2024-06-09T14:19:48Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:19:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpIrU3bJ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpIrU3bJ#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpIrU3bJ/incremental-state"
Running match-stress: Opt + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2024-06-09T14:19:50Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:19:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:19:50Z DEBUG collector::compile::execute] cd "/tmp/.tmpkaOsoC" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpkaOsoC#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:19:52Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:19:52Z DEBUG collector::compile::execute] cd "/tmp/.tmpkaOsoC" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpkaOsoC#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpkaOsoC/incremental-state"
[2024-06-09T14:19:55Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:19:55Z DEBUG collector::compile::execute] cd "/tmp/.tmpkaOsoC" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpkaOsoC#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpkaOsoC/incremental-state"
Executing benchmark token-stream-stress (7/8)
Preparing token-stream-stress
[2024-06-09T14:19:57Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:19:57Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-06-09T14:19:59Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:19:59Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:19:59Z DEBUG collector::compile::execute] cd "/tmp/.tmpz2IEGv" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpz2IEGv#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:20:00Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:20:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpz2IEGv" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpz2IEGv#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpz2IEGv/incremental-state"
[2024-06-09T14:20:01Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:20:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpz2IEGv" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpz2IEGv#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpz2IEGv/incremental-state"
[2024-06-09T14:20:02Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:20:02Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:20:02Z DEBUG collector::compile::execute] cd "/tmp/.tmpym7spU" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpym7spU#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:20:03Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:20:03Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:20:03Z DEBUG collector::compile::execute] cd "/tmp/.tmpym7spU" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpym7spU#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpym7spU/incremental-state"
[2024-06-09T14:20:04Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:20:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpym7spU" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpym7spU#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpym7spU/incremental-state"
Running token-stream-stress: Opt + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2024-06-09T14:20:05Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-09T14:20:05Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:20:05Z DEBUG collector::compile::execute] cd "/tmp/.tmpJQK1ka" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpJQK1ka#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-09T14:20:07Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:20:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpJQK1ka" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpJQK1ka#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpJQK1ka/incremental-state"
[2024-06-09T14:20:08Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-09T14:20:08Z DEBUG collector::compile::execute] cd "/tmp/.tmpJQK1ka" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" 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/.tmpJQK1ka#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpJQK1ka/incremental-state"
Executing benchmark tuple-stress (8/8)
Preparing tuple-stress
[2024-06-09T14:20:09Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-09T14:20:09Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
Finished benchmark tuple-stress (8/8)
[2024-06-09T14:20:44.983Z INFO  opt_dist::training] Merging rustc BOLT profiles from /tmp/.tmpPC1eoV/prof.fdata to /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata
##[endgroup]
##[group]Merging BOLT profiles
[2024-06-09T14:20:44.984Z INFO  opt_dist::exec] Executing `merge-fdata /tmp/.tmpPC1eoV/prof.fdata.139676.fdata /tmp/.tmpPC1eoV/prof.fdata.139691.fdata /tmp/.tmpPC1eoV/prof.fdata.139692.fdata /tmp/.tmpPC1eoV/prof.fdata.139693.fdata /tmp/.tmpPC1eoV/prof.fdata.139697.fdata /tmp/.tmpPC1eoV/prof.fdata.139698.fdata /tmp/.tmpPC1eoV/prof.fdata.139699.fdata /tmp/.tmpPC1eoV/prof.fdata.139706.fdata /tmp/.tmpPC1eoV/prof.fdata.139707.fdata /tmp/.tmpPC1eoV/prof.fdata.139708.fdata /tmp/.tmpPC1eoV/prof.fdata.139727.fdata /tmp/.tmpPC1eoV/prof.fdata.139737.fdata /tmp/.tmpPC1eoV/prof.fdata.139747.fdata /tmp/.tmpPC1eoV/prof.fdata.139758.fdata /tmp/.tmpPC1eoV/prof.fdata.139769.fdata /tmp/.tmpPC1eoV/prof.fdata.139780.fdata /tmp/.tmpPC1eoV/prof.fdata.139823.fdata /tmp/.tmpPC1eoV/prof.fdata.139867.fdata /tmp/.tmpPC1eoV/prof.fdata.139911.fdata /tmp/.tmpPC1eoV/prof.fdata.139925.fdata /tmp/.tmpPC1eoV/prof.fdata.139949.fdata /tmp/.tmpPC1eoV/prof.fdata.139967.fdata /tmp/.tmpPC1eoV/prof.fdata.139991.fdata /tmp/.tmpPC1eoV/prof.fdata.139992.fdata /tmp/.tmpPC1eoV/prof.fdata.139993.fdata /tmp/.tmpPC1eoV/prof.fdata.139997.fdata /tmp/.tmpPC1eoV/prof.fdata.139998.fdata /tmp/.tmpPC1eoV/prof.fdata.139999.fdata /tmp/.tmpPC1eoV/prof.fdata.140006.fdata /tmp/.tmpPC1eoV/prof.fdata.140007.fdata /tmp/.tmpPC1eoV/prof.fdata.140008.fdata /tmp/.tmpPC1eoV/prof.fdata.140018.fdata /tmp/.tmpPC1eoV/prof.fdata.140021.fdata /tmp/.tmpPC1eoV/prof.fdata.140023.fdata /tmp/.tmpPC1eoV/prof.fdata.140026.fdata /tmp/.tmpPC1eoV/prof.fdata.140027.fdata /tmp/.tmpPC1eoV/prof.fdata.140029.fdata /tmp/.tmpPC1eoV/prof.fdata.140032.fdata /tmp/.tmpPC1eoV/prof.fdata.140033.fdata /tmp/.tmpPC1eoV/prof.fdata.140034.fdata /tmp/.tmpPC1eoV/prof.fdata.140038.fdata /tmp/.tmpPC1eoV/prof.fdata.140040.fdata /tmp/.tmpPC1eoV/prof.fdata.140041.fdata /tmp/.tmpPC1eoV/prof.fdata.140042.fdata /tmp/.tmpPC1eoV/prof.fdata.140045.fdata /tmp/.tmpPC1eoV/prof.fdata.140047.fdata /tmp/.tmpPC1eoV/prof.fdata.140049.fdata /tmp/.tmpPC1eoV/prof.fdata.140050.fdata /tmp/.tmpPC1eoV/prof.fdata.140051.fdata /tmp/.tmpPC1eoV/prof.fdata.140128.fdata /tmp/.tmpPC1eoV/prof.fdata.140202.fdata /tmp/.tmpPC1eoV/prof.fdata.140206.fdata /tmp/.tmpPC1eoV/prof.fdata.140210.fdata /tmp/.tmpPC1eoV/prof.fdata.140217.fdata /tmp/.tmpPC1eoV/prof.fdata.140234.fdata /tmp/.tmpPC1eoV/prof.fdata.140237.fdata /tmp/.tmpPC1eoV/prof.fdata.140244.fdata /tmp/.tmpPC1eoV/prof.fdata.140252.fdata /tmp/.tmpPC1eoV/prof.fdata.140256.fdata /tmp/.tmpPC1eoV/prof.fdata.140261.fdata /tmp/.tmpPC1eoV/prof.fdata.140266.fdata /tmp/.tmpPC1eoV/prof.fdata.140268.fdata /tmp/.tmpPC1eoV/prof.fdata.140274.fdata /tmp/.tmpPC1eoV/prof.fdata.140276.fdata /tmp/.tmpPC1eoV/prof.fdata.140282.fdata /tmp/.tmpPC1eoV/prof.fdata.140289.fdata /tmp/.tmpPC1eoV/prof.fdata.140294.fdata /tmp/.tmpPC1eoV/prof.fdata.140296.fdata /tmp/.tmpPC1eoV/prof.fdata.140300.fdata /tmp/.tmpPC1eoV/prof.fdata.140308.fdata /tmp/.tmpPC1eoV/prof.fdata.140314.fdata /tmp/.tmpPC1eoV/prof.fdata.140321.fdata /tmp/.tmpPC1eoV/prof.fdata.140333.fdata /tmp/.tmpPC1eoV/prof.fdata.140334.fdata /tmp/.tmpPC1eoV/prof.fdata.140344.fdata /tmp/.tmpPC1eoV/prof.fdata.140353.fdata /tmp/.tmpPC1eoV/prof.fdata.140366.fdata /tmp/.tmpPC1eoV/prof.fdata.140373.fdata /tmp/.tmpPC1eoV/prof.fdata.140391.fdata /tmp/.tmpPC1eoV/prof.fdata.140423.fdata /tmp/.tmpPC1eoV/prof.fdata.140437.fdata /tmp/.tmpPC1eoV/prof.fdata.140451.fdata /tmp/.tmpPC1eoV/prof.fdata.140467.fdata /tmp/.tmpPC1eoV/prof.fdata.140471.fdata /tmp/.tmpPC1eoV/prof.fdata.140477.fdata /tmp/.tmpPC1eoV/prof.fdata.140479.fdata /tmp/.tmpPC1eoV/prof.fdata.140494.fdata /tmp/.tmpPC1eoV/prof.fdata.140501.fdata /tmp/.tmpPC1eoV/prof.fdata.140505.fdata /tmp/.tmpPC1eoV/prof.fdata.140509.fdata /tmp/.tmpPC1eoV/prof.fdata.140516.fdata /tmp/.tmpPC1eoV/prof.fdata.140524.fdata /tmp/.tmpPC1eoV/prof.fdata.140536.fdata /tmp/.tmpPC1eoV/prof.fdata.140546.fdata /tmp/.tmpPC1eoV/prof.fdata.140552.fdata /tmp/.tmpPC1eoV/prof.fdata.140560.fdata /tmp/.tmpPC1eoV/prof.fdata.140578.fdata /tmp/.tmpPC1eoV/prof.fdata.140587.fdata /tmp/.tmpPC1eoV/prof.fdata.140588.fdata /tmp/.tmpPC1eoV/prof.fdata.140605.fdata /tmp/.tmpPC1eoV/prof.fdata.140609.fdata /tmp/.tmpPC1eoV/prof.fdata.140635.fdata /tmp/.tmpPC1eoV/prof.fdata.140642.fdata /tmp/.tmpPC1eoV/prof.fdata.140651.fdata /tmp/.tmpPC1eoV/prof.fdata.140654.fdata /tmp/.tmpPC1eoV/prof.fdata.140665.fdata /tmp/.tmpPC1eoV/prof.fdata.140670.fdata /tmp/.tmpPC1eoV/prof.fdata.140701.fdata /tmp/.tmpPC1eoV/prof.fdata.140707.fdata /tmp/.tmpPC1eoV/prof.fdata.140711.fdata /tmp/.tmpPC1eoV/prof.fdata.140719.fdata /tmp/.tmpPC1eoV/prof.fdata.140725.fdata /tmp/.tmpPC1eoV/prof.fdata.140742.fdata /tmp/.tmpPC1eoV/prof.fdata.140758.fdata /tmp/.tmpPC1eoV/prof.fdata.140775.fdata /tmp/.tmpPC1eoV/prof.fdata.140776.fdata /tmp/.tmpPC1eoV/prof.fdata.140801.fdata /tmp/.tmpPC1eoV/prof.fdata.140806.fdata /tmp/.tmpPC1eoV/prof.fdata.140817.fdata /tmp/.tmpPC1eoV/prof.fdata.140834.fdata /tmp/.tmpPC1eoV/prof.fdata.140843.fdata /tmp/.tmpPC1eoV/prof.fdata.140855.fdata /tmp/.tmpPC1eoV/prof.fdata.140860.fdata /tmp/.tmpPC1eoV/prof.fdata.140878.fdata /tmp/.tmpPC1eoV/prof.fdata.140885.fdata /tmp/.tmpPC1eoV/prof.fdata.140892.fdata /tmp/.tmpPC1eoV/prof.fdata.140907.fdata /tmp/.tmpPC1eoV/prof.fdata.140909.fdata /tmp/.tmpPC1eoV/prof.fdata.140925.fdata /tmp/.tmpPC1eoV/prof.fdata.140931.fdata /tmp/.tmpPC1eoV/prof.fdata.140939.fdata /tmp/.tmpPC1eoV/prof.fdata.140971.fdata /tmp/.tmpPC1eoV/prof.fdata.140973.fdata /tmp/.tmpPC1eoV/prof.fdata.140985.fdata /tmp/.tmpPC1eoV/prof.fdata.140990.fdata /tmp/.tmpPC1eoV/prof.fdata.141007.fdata /tmp/.tmpPC1eoV/prof.fdata.141011.fdata /tmp/.tmpPC1eoV/prof.fdata.141027.fdata /tmp/.tmpPC1eoV/prof.fdata.141035.fdata /tmp/.tmpPC1eoV/prof.fdata.141039.fdata /tmp/.tmpPC1eoV/prof.fdata.141046.fdata /tmp/.tmpPC1eoV/prof.fdata.141051.fdata /tmp/.tmpPC1eoV/prof.fdata.141060.fdata /tmp/.tmpPC1eoV/prof.fdata.141081.fdata /tmp/.tmpPC1eoV/prof.fdata.141097.fdata /tmp/.tmpPC1eoV/prof.fdata.141102.fdata /tmp/.tmpPC1eoV/prof.fdata.141109.fdata /tmp/.tmpPC1eoV/prof.fdata.141115.fdata /tmp/.tmpPC1eoV/prof.fdata.141139.fdata /tmp/.tmpPC1eoV/prof.fdata.141144.fdata /tmp/.tmpPC1eoV/prof.fdata.141153.fdata /tmp/.tmpPC1eoV/prof.fdata.141163.fdata /tmp/.tmpPC1eoV/prof.fdata.141170.fdata /tmp/.tmpPC1eoV/prof.fdata.141184.fdata /tmp/.tmpPC1eoV/prof.fdata.141191.fdata /tmp/.tmpPC1eoV/prof.fdata.141200.fdata /tmp/.tmpPC1eoV/prof.fdata.141213.fdata /tmp/.tmpPC1eoV/prof.fdata.141230.fdata /tmp/.tmpPC1eoV/prof.fdata.141237.fdata /tmp/.tmpPC1eoV/prof.fdata.141242.fdata /tmp/.tmpPC1eoV/prof.fdata.141244.fdata /tmp/.tmpPC1eoV/prof.fdata.141256.fdata /tmp/.tmpPC1eoV/prof.fdata.141260.fdata /tmp/.tmpPC1eoV/prof.fdata.141266.fdata /tmp/.tmpPC1eoV/prof.fdata.141271.fdata /tmp/.tmpPC1eoV/prof.fdata.141281.fdata /tmp/.tmpPC1eoV/prof.fdata.141293.fdata /tmp/.tmpPC1eoV/prof.fdata.141294.fdata /tmp/.tmpPC1eoV/prof.fdata.141302.fdata /tmp/.tmpPC1eoV/prof.fdata.141311.fdata /tmp/.tmpPC1eoV/prof.fdata.141315.fdata /tmp/.tmpPC1eoV/prof.fdata.141319.fdata /tmp/.tmpPC1eoV/prof.fdata.141332.fdata /tmp/.tmpPC1eoV/prof.fdata.141350.fdata /tmp/.tmpPC1eoV/prof.fdata.141358.fdata /tmp/.tmpPC1eoV/prof.fdata.141364.fdata /tmp/.tmpPC1eoV/prof.fdata.141380.fdata /tmp/.tmpPC1eoV/prof.fdata.141399.fdata /tmp/.tmpPC1eoV/prof.fdata.141404.fdata /tmp/.tmpPC1eoV/prof.fdata.141414.fdata /tmp/.tmpPC1eoV/prof.fdata.141415.fdata /tmp/.tmpPC1eoV/prof.fdata.141422.fdata /tmp/.tmpPC1eoV/prof.fdata.141432.fdata /tmp/.tmpPC1eoV/prof.fdata.141457.fdata /tmp/.tmpPC1eoV/prof.fdata.141473.fdata /tmp/.tmpPC1eoV/prof.fdata.141498.fdata /tmp/.tmpPC1eoV/prof.fdata.141502.fdata /tmp/.tmpPC1eoV/prof.fdata.141510.fdata /tmp/.tmpPC1eoV/prof.fdata.141528.fdata /tmp/.tmpPC1eoV/prof.fdata.141552.fdata /tmp/.tmpPC1eoV/prof.fdata.141559.fdata /tmp/.tmpPC1eoV/prof.fdata.141563.fdata /tmp/.tmpPC1eoV/prof.fdata.141573.fdata /tmp/.tmpPC1eoV/prof.fdata.141578.fdata /tmp/.tmpPC1eoV/prof.fdata.141586.fdata /tmp/.tmpPC1eoV/prof.fdata.141602.fdata /tmp/.tmpPC1eoV/prof.fdata.141609.fdata /tmp/.tmpPC1eoV/prof.fdata.141617.fdata /tmp/.tmpPC1eoV/prof.fdata.141621.fdata /tmp/.tmpPC1eoV/prof.fdata.141623.fdata /tmp/.tmpPC1eoV/prof.fdata.141638.fdata /tmp/.tmpPC1eoV/prof.fdata.141657.fdata /tmp/.tmpPC1eoV/prof.fdata.141675.fdata /tmp/.tmpPC1eoV/prof.fdata.141692.fdata /tmp/.tmpPC1eoV/prof.fdata.141698.fdata /tmp/.tmpPC1eoV/prof.fdata.141700.fdata /tmp/.tmpPC1eoV/prof.fdata.141732.fdata /tmp/.tmpPC1eoV/prof.fdata.141736.fdata /tmp/.tmpPC1eoV/prof.fdata.141751.fdata /tmp/.tmpPC1eoV/prof.fdata.141759.fdata /tmp/.tmpPC1eoV/prof.fdata.141763.fdata /tmp/.tmpPC1eoV/prof.fdata.141765.fdata /tmp/.tmpPC1eoV/prof.fdata.141775.fdata /tmp/.tmpPC1eoV/prof.fdata.141788.fdata /tmp/.tmpPC1eoV/prof.fdata.141803.fdata /tmp/.tmpPC1eoV/prof.fdata.141813.fdata /tmp/.tmpPC1eoV/prof.fdata.141817.fdata /tmp/.tmpPC1eoV/prof.fdata.141828.fdata /tmp/.tmpPC1eoV/prof.fdata.141836.fdata /tmp/.tmpPC1eoV/prof.fdata.141843.fdata /tmp/.tmpPC1eoV/prof.fdata.141851.fdata /tmp/.tmpPC1eoV/prof.fdata.141861.fdata /tmp/.tmpPC1eoV/prof.fdata.141868.fdata /tmp/.tmpPC1eoV/prof.fdata.141873.fdata /tmp/.tmpPC1eoV/prof.fdata.141882.fdata /tmp/.tmpPC1eoV/prof.fdata.141889.fdata /tmp/.tmpPC1eoV/prof.fdata.141897.fdata /tmp/.tmpPC1eoV/prof.fdata.141903.fdata /tmp/.tmpPC1eoV/prof.fdata.141911.fdata /tmp/.tmpPC1eoV/prof.fdata.141928.fdata /tmp/.tmpPC1eoV/prof.fdata.141934.fdata /tmp/.tmpPC1eoV/prof.fdata.141935.fdata /tmp/.tmpPC1eoV/prof.fdata.141949.fdata /tmp/.tmpPC1eoV/prof.fdata.141957.fdata /tmp/.tmpPC1eoV/prof.fdata.141970.fdata /tmp/.tmpPC1eoV/prof.fdata.141984.fdata /tmp/.tmpPC1eoV/prof.fdata.141995.fdata /tmp/.tmpPC1eoV/prof.fdata.142020.fdata /tmp/.tmpPC1eoV/prof.fdata.142024.fdata /tmp/.tmpPC1eoV/prof.fdata.142040.fdata /tmp/.tmpPC1eoV/prof.fdata.142050.fdata /tmp/.tmpPC1eoV/prof.fdata.142057.fdata /tmp/.tmpPC1eoV/prof.fdata.142066.fdata /tmp/.tmpPC1eoV/prof.fdata.142071.fdata /tmp/.tmpPC1eoV/prof.fdata.142091.fdata /tmp/.tmpPC1eoV/prof.fdata.142097.fdata /tmp/.tmpPC1eoV/prof.fdata.142113.fdata /tmp/.tmpPC1eoV/prof.fdata.142124.fdata /tmp/.tmpPC1eoV/prof.fdata.142133.fdata /tmp/.tmpPC1eoV/prof.fdata.142144.fdata /tmp/.tmpPC1eoV/prof.fdata.142145.fdata /tmp/.tmpPC1eoV/prof.fdata.142161.fdata /tmp/.tmpPC1eoV/prof.fdata.142174.fdata /tmp/.tmpPC1eoV/prof.fdata.142188.fdata /tmp/.tmpPC1eoV/prof.fdata.142196.fdata /tmp/.tmpPC1eoV/prof.fdata.142200.fdata /tmp/.tmpPC1eoV/prof.fdata.142214.fdata /tmp/.tmpPC1eoV/prof.fdata.142230.fdata /tmp/.tmpPC1eoV/prof.fdata.142239.fdata /tmp/.tmpPC1eoV/prof.fdata.142258.fdata /tmp/.tmpPC1eoV/prof.fdata.142280.fdata /tmp/.tmpPC1eoV/prof.fdata.142293.fdata /tmp/.tmpPC1eoV/prof.fdata.142294.fdata /tmp/.tmpPC1eoV/prof.fdata.142303.fdata /tmp/.tmpPC1eoV/prof.fdata.142306.fdata /tmp/.tmpPC1eoV/prof.fdata.142315.fdata /tmp/.tmpPC1eoV/prof.fdata.142340.fdata /tmp/.tmpPC1eoV/prof.fdata.142344.fdata /tmp/.tmpPC1eoV/prof.fdata.142358.fdata /tmp/.tmpPC1eoV/prof.fdata.142364.fdata /tmp/.tmpPC1eoV/prof.fdata.142376.fdata /tmp/.tmpPC1eoV/prof.fdata.142382.fdata /tmp/.tmpPC1eoV/prof.fdata.142388.fdata /tmp/.tmpPC1eoV/prof.fdata.142395.fdata /tmp/.tmpPC1eoV/prof.fdata.142400.fdata /tmp/.tmpPC1eoV/prof.fdata.142413.fdata /tmp/.tmpPC1eoV/prof.fdata.142417.fdata /tmp/.tmpPC1eoV/prof.fdata.142423.fdata /tmp/.tmpPC1eoV/prof.fdata.142432.fdata /tmp/.tmpPC1eoV/prof.fdata.142439.fdata /tmp/.tmpPC1eoV/prof.fdata.142457.fdata /tmp/.tmpPC1eoV/prof.fdata.142464.fdata /tmp/.tmpPC1eoV/prof.fdata.142477.fdata /tmp/.tmpPC1eoV/prof.fdata.142481.fdata /tmp/.tmpPC1eoV/prof.fdata.142498.fdata /tmp/.tmpPC1eoV/prof.fdata.142501.fdata /tmp/.tmpPC1eoV/prof.fdata.142511.fdata /tmp/.tmpPC1eoV/prof.fdata.142515.fdata /tmp/.tmpPC1eoV/prof.fdata.142521.fdata /tmp/.tmpPC1eoV/prof.fdata.142540.fdata /tmp/.tmpPC1eoV/prof.fdata.142552.fdata /tmp/.tmpPC1eoV/prof.fdata.142563.fdata /tmp/.tmpPC1eoV/prof.fdata.142581.fdata /tmp/.tmpPC1eoV/prof.fdata.142593.fdata /tmp/.tmpPC1eoV/prof.fdata.142600.fdata /tmp/.tmpPC1eoV/prof.fdata.142611.fdata /tmp/.tmpPC1eoV/prof.fdata.142617.fdata /tmp/.tmpPC1eoV/prof.fdata.142626.fdata /tmp/.tmpPC1eoV/prof.fdata.142640.fdata /tmp/.tmpPC1eoV/prof.fdata.142648.fdata /tmp/.tmpPC1eoV/prof.fdata.142654.fdata /tmp/.tmpPC1eoV/prof.fdata.142661.fdata /tmp/.tmpPC1eoV/prof.fdata.142670.fdata /tmp/.tmpPC1eoV/prof.fdata.142671.fdata /tmp/.tmpPC1eoV/prof.fdata.142680.fdata /tmp/.tmpPC1eoV/prof.fdata.142702.fdata /tmp/.tmpPC1eoV/prof.fdata.142706.fdata /tmp/.tmpPC1eoV/prof.fdata.142710.fdata /tmp/.tmpPC1eoV/prof.fdata.142722.fdata /tmp/.tmpPC1eoV/prof.fdata.142727.fdata /tmp/.tmpPC1eoV/prof.fdata.142732.fdata /tmp/.tmpPC1eoV/prof.fdata.142736.fdata /tmp/.tmpPC1eoV/prof.fdata.142748.fdata /tmp/.tmpPC1eoV/prof.fdata.142755.fdata /tmp/.tmpPC1eoV/prof.fdata.142764.fdata /tmp/.tmpPC1eoV/prof.fdata.142767.fdata /tmp/.tmpPC1eoV/prof.fdata.142788.fdata /tmp/.tmpPC1eoV/prof.fdata.142801.fdata /tmp/.tmpPC1eoV/prof.fdata.142806.fdata /tmp/.tmpPC1eoV/prof.fdata.142810.fdata /tmp/.tmpPC1eoV/prof.fdata.142816.fdata /tmp/.tmpPC1eoV/prof.fdata.142822.fdata /tmp/.tmpPC1eoV/prof.fdata.142827.fdata /tmp/.tmpPC1eoV/prof.fdata.142835.fdata /tmp/.tmpPC1eoV/prof.fdata.142848.fdata /tmp/.tmpPC1eoV/prof.fdata.142861.fdata /tmp/.tmpPC1eoV/prof.fdata.142881.fdata /tmp/.tmpPC1eoV/prof.fdata.142891.fdata /tmp/.tmpPC1eoV/prof.fdata.142906.fdata /tmp/.tmpPC1eoV/prof.fdata.142908.fdata /tmp/.tmpPC1eoV/prof.fdata.142922.fdata /tmp/.tmpPC1eoV/prof.fdata.142928.fdata /tmp/.tmpPC1eoV/prof.fdata.142938.fdata /tmp/.tmpPC1eoV/prof.fdata.142948.fdata /tmp/.tmpPC1eoV/prof.fdata.142954.fdata /tmp/.tmpPC1eoV/prof.fdata.142961.fdata /tmp/.tmpPC1eoV/prof.fdata.142988.fdata /tmp/.tmpPC1eoV/prof.fdata.142998.fdata /tmp/.tmpPC1eoV/prof.fdata.143017.fdata /tmp/.tmpPC1eoV/prof.fdata.143020.fdata /tmp/.tmpPC1eoV/prof.fdata.143037.fdata /tmp/.tmpPC1eoV/prof.fdata.143043.fdata /tmp/.tmpPC1eoV/prof.fdata.143048.fdata /tmp/.tmpPC1eoV/prof.fdata.143056.fdata /tmp/.tmpPC1eoV/prof.fdata.143073.fdata /tmp/.tmpPC1eoV/prof.fdata.143083.fdata /tmp/.tmpPC1eoV/prof.fdata.143089.fdata /tmp/.tmpPC1eoV/prof.fdata.143098.fdata /tmp/.tmpPC1eoV/prof.fdata.143102.fdata /tmp/.tmpPC1eoV/prof.fdata.143106.fdata /tmp/.tmpPC1eoV/prof.fdata.143117.fdata /tmp/.tmpPC1eoV/prof.fdata.143126.fdata /tmp/.tmpPC1eoV/prof.fdata.143133.fdata /tmp/.tmpPC1eoV/prof.fdata.143144.fdata /tmp/.tmpPC1eoV/prof.fdata.143151.fdata /tmp/.tmpPC1eoV/prof.fdata.143161.fdata /tmp/.tmpPC1eoV/prof.fdata.143171.fdata /tmp/.tmpPC1eoV/prof.fdata.143178.fdata /tmp/.tmpPC1eoV/prof.fdata.143180.fdata /tmp/.tmpPC1eoV/prof.fdata.143188.fdata /tmp/.tmpPC1eoV/prof.fdata.143199.fdata /tmp/.tmpPC1eoV/prof.fdata.143202.fdata /tmp/.tmpPC1eoV/prof.fdata.143207.fdata /tmp/.tmpPC1eoV/prof.fdata.143208.fdata /tmp/.tmpPC1eoV/prof.fdata.143214.fdata /tmp/.tmpPC1eoV/prof.fdata.143238.fdata /tmp/.tmpPC1eoV/prof.fdata.143249.fdata /tmp/.tmpPC1eoV/prof.fdata.143256.fdata /tmp/.tmpPC1eoV/prof.fdata.143262.fdata /tmp/.tmpPC1eoV/prof.fdata.143268.fdata /tmp/.tmpPC1eoV/prof.fdata.143276.fdata /tmp/.tmpPC1eoV/prof.fdata.143288.fdata /tmp/.tmpPC1eoV/prof.fdata.143297.fdata /tmp/.tmpPC1eoV/prof.fdata.143310.fdata /tmp/.tmpPC1eoV/prof.fdata.143322.fdata /tmp/.tmpPC1eoV/prof.fdata.143327.fdata /tmp/.tmpPC1eoV/prof.fdata.143335.fdata /tmp/.tmpPC1eoV/prof.fdata.143350.fdata /tmp/.tmpPC1eoV/prof.fdata.143355.fdata /tmp/.tmpPC1eoV/prof.fdata.143356.fdata /tmp/.tmpPC1eoV/prof.fdata.143369.fdata /tmp/.tmpPC1eoV/prof.fdata.143380.fdata /tmp/.tmpPC1eoV/prof.fdata.143390.fdata /tmp/.tmpPC1eoV/prof.fdata.143399.fdata /tmp/.tmpPC1eoV/prof.fdata.143404.fdata /tmp/.tmpPC1eoV/prof.fdata.143414.fdata /tmp/.tmpPC1eoV/prof.fdata.143432.fdata /tmp/.tmpPC1eoV/prof.fdata.143433.fdata /tmp/.tmpPC1eoV/prof.fdata.143444.fdata /tmp/.tmpPC1eoV/prof.fdata.143453.fdata /tmp/.tmpPC1eoV/prof.fdata.143460.fdata /tmp/.tmpPC1eoV/prof.fdata.143462.fdata /tmp/.tmpPC1eoV/prof.fdata.143469.fdata /tmp/.tmpPC1eoV/prof.fdata.143477.fdata /tmp/.tmpPC1eoV/prof.fdata.143482.fdata /tmp/.tmpPC1eoV/prof.fdata.143495.fdata /tmp/.tmpPC1eoV/prof.fdata.143506.fdata /tmp/.tmpPC1eoV/prof.fdata.143511.fdata /tmp/.tmpPC1eoV/prof.fdata.143527.fdata /tmp/.tmpPC1eoV/prof.fdata.143531.fdata /tmp/.tmpPC1eoV/prof.fdata.143537.fdata /tmp/.tmpPC1eoV/prof.fdata.143545.fdata /tmp/.tmpPC1eoV/prof.fdata.143552.fdata /tmp/.tmpPC1eoV/prof.fdata.143557.fdata /tmp/.tmpPC1eoV/prof.fdata.143558.fdata /tmp/.tmpPC1eoV/prof.fdata.143559.fdata /tmp/.tmpPC1eoV/prof.fdata.143567.fdata /tmp/.tmpPC1eoV/prof.fdata.143574.fdata /tmp/.tmpPC1eoV/prof.fdata.143590.fdata /tmp/.tmpPC1eoV/prof.fdata.143614.fdata /tmp/.tmpPC1eoV/prof.fdata.143622.fdata /tmp/.tmpPC1eoV/prof.fdata.143638.fdata /tmp/.tmpPC1eoV/prof.fdata.143647.fdata /tmp/.tmpPC1eoV/prof.fdata.143654.fdata /tmp/.tmpPC1eoV/prof.fdata.143666.fdata /tmp/.tmpPC1eoV/prof.fdata.143670.fdata /tmp/.tmpPC1eoV/prof.fdata.143677.fdata /tmp/.tmpPC1eoV/prof.fdata.143692.fdata /tmp/.tmpPC1eoV/prof.fdata.143698.fdata /tmp/.tmpPC1eoV/prof.fdata.143713.fdata /tmp/.tmpPC1eoV/prof.fdata.143722.fdata /tmp/.tmpPC1eoV/prof.fdata.143728.fdata /tmp/.tmpPC1eoV/prof.fdata.143735.fdata /tmp/.tmpPC1eoV/prof.fdata.143752.fdata /tmp/.tmpPC1eoV/prof.fdata.143758.fdata /tmp/.tmpPC1eoV/prof.fdata.143768.fdata /tmp/.tmpPC1eoV/prof.fdata.143787.fdata /tmp/.tmpPC1eoV/prof.fdata.143790.fdata /tmp/.tmpPC1eoV/prof.fdata.143797.fdata /tmp/.tmpPC1eoV/prof.fdata.143826.fdata /tmp/.tmpPC1eoV/prof.fdata.143827.fdata /tmp/.tmpPC1eoV/prof.fdata.143872.fdata /tmp/.tmpPC1eoV/prof.fdata.143889.fdata /tmp/.tmpPC1eoV/prof.fdata.143923.fdata /tmp/.tmpPC1eoV/prof.fdata.143958.fdata /tmp/.tmpPC1eoV/prof.fdata.143980.fdata /tmp/.tmpPC1eoV/prof.fdata.143983.fdata /tmp/.tmpPC1eoV/prof.fdata.143987.fdata /tmp/.tmpPC1eoV/prof.fdata.144013.fdata /tmp/.tmpPC1eoV/prof.fdata.144019.fdata /tmp/.tmpPC1eoV/prof.fdata.144070.fdata /tmp/.tmpPC1eoV/prof.fdata.144086.fdata /tmp/.tmpPC1eoV/prof.fdata.144093.fdata /tmp/.tmpPC1eoV/prof.fdata.144103.fdata /tmp/.tmpPC1eoV/prof.fdata.144126.fdata /tmp/.tmpPC1eoV/prof.fdata.144140.fdata /tmp/.tmpPC1eoV/prof.fdata.144147.fdata /tmp/.tmpPC1eoV/prof.fdata.144157.fdata /tmp/.tmpPC1eoV/prof.fdata.144160.fdata /tmp/.tmpPC1eoV/prof.fdata.144169.fdata /tmp/.tmpPC1eoV/prof.fdata.144175.fdata /tmp/.tmpPC1eoV/prof.fdata.144184.fdata /tmp/.tmpPC1eoV/prof.fdata.144239.fdata /tmp/.tmpPC1eoV/prof.fdata.144255.fdata /tmp/.tmpPC1eoV/prof.fdata.144312.fdata /tmp/.tmpPC1eoV/prof.fdata.144333.fdata /tmp/.tmpPC1eoV/prof.fdata.144349.fdata /tmp/.tmpPC1eoV/prof.fdata.144359.fdata /tmp/.tmpPC1eoV/prof.fdata.144487.fdata /tmp/.tmpPC1eoV/prof.fdata.144494.fdata /tmp/.tmpPC1eoV/prof.fdata.144699.fdata /tmp/.tmpPC1eoV/prof.fdata.144739.fdata /tmp/.tmpPC1eoV/prof.fdata.144762.fdata /tmp/.tmpPC1eoV/prof.fdata.144862.fdata /tmp/.tmpPC1eoV/prof.fdata.146152.fdata /tmp/.tmpPC1eoV/prof.fdata.146248.fdata /tmp/.tmpPC1eoV/prof.fdata.146274.fdata /tmp/.tmpPC1eoV/prof.fdata.146448.fdata /tmp/.tmpPC1eoV/prof.fdata.146450.fdata /tmp/.tmpPC1eoV/prof.fdata.146512.fdata /tmp/.tmpPC1eoV/prof.fdata.146727.fdata /tmp/.tmpPC1eoV/prof.fdata.146804.fdata /tmp/.tmpPC1eoV/prof.fdata.147269.fdata /tmp/.tmpPC1eoV/prof.fdata.147280.fdata /tmp/.tmpPC1eoV/prof.fdata.147287.fdata /tmp/.tmpPC1eoV/prof.fdata.147294.fdata /tmp/.tmpPC1eoV/prof.fdata.147300.fdata /tmp/.tmpPC1eoV/prof.fdata.147304.fdata /tmp/.tmpPC1eoV/prof.fdata.147326.fdata /tmp/.tmpPC1eoV/prof.fdata.147341.fdata /tmp/.tmpPC1eoV/prof.fdata.147355.fdata /tmp/.tmpPC1eoV/prof.fdata.147407.fdata /tmp/.tmpPC1eoV/prof.fdata.147420.fdata /tmp/.tmpPC1eoV/prof.fdata.147430.fdata /tmp/.tmpPC1eoV/prof.fdata.147440.fdata /tmp/.tmpPC1eoV/prof.fdata.147451.fdata /tmp/.tmpPC1eoV/prof.fdata.147462.fdata /tmp/.tmpPC1eoV/prof.fdata.147488.fdata /tmp/.tmpPC1eoV/prof.fdata.147754.fdata /tmp/.tmpPC1eoV/prof.fdata.148021.fdata /tmp/.tmpPC1eoV/prof.fdata.148288.fdata /tmp/.tmpPC1eoV/prof.fdata.148330.fdata /tmp/.tmpPC1eoV/prof.fdata.148852.fdata /tmp/.tmpPC1eoV/prof.fdata.149119.fdata /tmp/.tmpPC1eoV/prof.fdata.149393.fdata /tmp/.tmpPC1eoV/prof.fdata.149394.fdata /tmp/.tmpPC1eoV/prof.fdata.149395.fdata /tmp/.tmpPC1eoV/prof.fdata.149399.fdata /tmp/.tmpPC1eoV/prof.fdata.149400.fdata /tmp/.tmpPC1eoV/prof.fdata.149401.fdata /tmp/.tmpPC1eoV/prof.fdata.149408.fdata /tmp/.tmpPC1eoV/prof.fdata.149410.fdata /tmp/.tmpPC1eoV/prof.fdata.149411.fdata /tmp/.tmpPC1eoV/prof.fdata.149429.fdata /tmp/.tmpPC1eoV/prof.fdata.149439.fdata /tmp/.tmpPC1eoV/prof.fdata.149449.fdata /tmp/.tmpPC1eoV/prof.fdata.149460.fdata /tmp/.tmpPC1eoV/prof.fdata.149471.fdata /tmp/.tmpPC1eoV/prof.fdata.149482.fdata /tmp/.tmpPC1eoV/prof.fdata.149494.fdata /tmp/.tmpPC1eoV/prof.fdata.149506.fdata /tmp/.tmpPC1eoV/prof.fdata.149518.fdata /tmp/.tmpPC1eoV/prof.fdata.149536.fdata /tmp/.tmpPC1eoV/prof.fdata.149537.fdata /tmp/.tmpPC1eoV/prof.fdata.149538.fdata /tmp/.tmpPC1eoV/prof.fdata.149542.fdata /tmp/.tmpPC1eoV/prof.fdata.149543.fdata /tmp/.tmpPC1eoV/prof.fdata.149544.fdata /tmp/.tmpPC1eoV/prof.fdata.149551.fdata /tmp/.tmpPC1eoV/prof.fdata.149552.fdata /tmp/.tmpPC1eoV/prof.fdata.149553.fdata /tmp/.tmpPC1eoV/prof.fdata.149562.fdata /tmp/.tmpPC1eoV/prof.fdata.149563.fdata /tmp/.tmpPC1eoV/prof.fdata.149564.fdata /tmp/.tmpPC1eoV/prof.fdata.149568.fdata /tmp/.tmpPC1eoV/prof.fdata.149571.fdata /tmp/.tmpPC1eoV/prof.fdata.149576.fdata /tmp/.tmpPC1eoV/prof.fdata.149577.fdata /tmp/.tmpPC1eoV/prof.fdata.149578.fdata /tmp/.tmpPC1eoV/prof.fdata.149579.fdata /tmp/.tmpPC1eoV/prof.fdata.149581.fdata /tmp/.tmpPC1eoV/prof.fdata.149582.fdata /tmp/.tmpPC1eoV/prof.fdata.149583.fdata /tmp/.tmpPC1eoV/prof.fdata.149676.fdata /tmp/.tmpPC1eoV/prof.fdata.149679.fdata /tmp/.tmpPC1eoV/prof.fdata.149684.fdata /tmp/.tmpPC1eoV/prof.fdata.149693.fdata /tmp/.tmpPC1eoV/prof.fdata.149700.fdata /tmp/.tmpPC1eoV/prof.fdata.149703.fdata /tmp/.tmpPC1eoV/prof.fdata.149711.fdata /tmp/.tmpPC1eoV/prof.fdata.149715.fdata /tmp/.tmpPC1eoV/prof.fdata.149722.fdata /tmp/.tmpPC1eoV/prof.fdata.149726.fdata /tmp/.tmpPC1eoV/prof.fdata.149730.fdata /tmp/.tmpPC1eoV/prof.fdata.149735.fdata /tmp/.tmpPC1eoV/prof.fdata.149746.fdata /tmp/.tmpPC1eoV/prof.fdata.149765.fdata /tmp/.tmpPC1eoV/prof.fdata.149773.fdata /tmp/.tmpPC1eoV/prof.fdata.149834.fdata /tmp/.tmpPC1eoV/prof.fdata.149838.fdata /tmp/.tmpPC1eoV/prof.fdata.149849.fdata /tmp/.tmpPC1eoV/prof.fdata.149920.fdata /tmp/.tmpPC1eoV/prof.fdata.149930.fdata /tmp/.tmpPC1eoV/prof.fdata.149940.fdata /tmp/.tmpPC1eoV/prof.fdata.149951.fdata /tmp/.tmpPC1eoV/prof.fdata.149962.fdata /tmp/.tmpPC1eoV/prof.fdata.149973.fdata /tmp/.tmpPC1eoV/prof.fdata.150029.fdata /tmp/.tmpPC1eoV/prof.fdata.150086.fdata /tmp/.tmpPC1eoV/prof.fdata.150143.fdata /tmp/.tmpPC1eoV/prof.fdata.150155.fdata /tmp/.tmpPC1eoV/prof.fdata.150217.fdata /tmp/.tmpPC1eoV/prof.fdata.150254.fdata /tmp/.tmpPC1eoV/prof.fdata.150297.fdata /tmp/.tmpPC1eoV/prof.fdata.150298.fdata /tmp/.tmpPC1eoV/prof.fdata.150299.fdata /tmp/.tmpPC1eoV/prof.fdata.150303.fdata /tmp/.tmpPC1eoV/prof.fdata.150304.fdata /tmp/.tmpPC1eoV/prof.fdata.150305.fdata /tmp/.tmpPC1eoV/prof.fdata.150312.fdata /tmp/.tmpPC1eoV/prof.fdata.150313.fdata /tmp/.tmpPC1eoV/prof.fdata.150314.fdata /tmp/.tmpPC1eoV/prof.fdata.150333.fdata /tmp/.tmpPC1eoV/prof.fdata.150343.fdata /tmp/.tmpPC1eoV/prof.fdata.150353.fdata /tmp/.tmpPC1eoV/prof.fdata.150364.fdata /tmp/.tmpPC1eoV/prof.fdata.150375.fdata /tmp/.tmpPC1eoV/prof.fdata.150386.fdata /tmp/.tmpPC1eoV/prof.fdata.150398.fdata /tmp/.tmpPC1eoV/prof.fdata.150410.fdata /tmp/.tmpPC1eoV/prof.fdata.150422.fdata /tmp/.tmpPC1eoV/prof.fdata.150440.fdata /tmp/.tmpPC1eoV/prof.fdata.150441.fdata /tmp/.tmpPC1eoV/prof.fdata.150442.fdata /tmp/.tmpPC1eoV/prof.fdata.150446.fdata /tmp/.tmpPC1eoV/prof.fdata.150447.fdata /tmp/.tmpPC1eoV/prof.fdata.150448.fdata /tmp/.tmpPC1eoV/prof.fdata.150455.fdata /tmp/.tmpPC1eoV/prof.fdata.150456.fdata /tmp/.tmpPC1eoV/prof.fdata.150457.fdata /tmp/.tmpPC1eoV/prof.fdata.150476.fdata /tmp/.tmpPC1eoV/prof.fdata.150486.fdata /tmp/.tmpPC1eoV/prof.fdata.150496.fdata /tmp/.tmpPC1eoV/prof.fdata.150507.fdata /tmp/.tmpPC1eoV/prof.fdata.150518.fdata /tmp/.tmpPC1eoV/prof.fdata.150531.fdata /tmp/.tmpPC1eoV/prof.fdata.150545.fdata /tmp/.tmpPC1eoV/prof.fdata.150557.fdata /tmp/.tmpPC1eoV/prof.fdata.150573.fdata /tmp/.tmpPC1eoV/prof.fdata.150593.fdata /tmp/.tmpPC1eoV/prof.fdata.150594.fdata /tmp/.tmpPC1eoV/prof.fdata.150595.fdata /tmp/.tmpPC1eoV/prof.fdata.150599.fdata /tmp/.tmpPC1eoV/prof.fdata.150600.fdata /tmp/.tmpPC1eoV/prof.fdata.150601.fdata /tmp/.tmpPC1eoV/prof.fdata.150608.fdata /tmp/.tmpPC1eoV/prof.fdata.150609.fdata /tmp/.tmpPC1eoV/prof.fdata.150610.fdata /tmp/.tmpPC1eoV/prof.fdata.150618.fdata /tmp/.tmpPC1eoV/prof.fdata.150619.fdata /tmp/.tmpPC1eoV/prof.fdata.150622.fdata /tmp/.tmpPC1eoV/prof.fdata.150659.fdata /tmp/.tmpPC1eoV/prof.fdata.150669.fdata /tmp/.tmpPC1eoV/prof.fdata.150679.fdata /tmp/.tmpPC1eoV/prof.fdata.150690.fdata /tmp/.tmpPC1eoV/prof.fdata.150704.fdata /tmp/.tmpPC1eoV/prof.fdata.150722.fdata /tmp/.tmpPC1eoV/prof.fdata.150741.fdata /tmp/.tmpPC1eoV/prof.fdata.150756.fdata /tmp/.tmpPC1eoV/prof.fdata.150775.fdata /tmp/.tmpPC1eoV/prof.fdata.150798.fdata /tmp/.tmpPC1eoV/prof.fdata.150799.fdata /tmp/.tmpPC1eoV/prof.fdata.150800.fdata /tmp/.tmpPC1eoV/prof.fdata.150804.fdata /tmp/.tmpPC1eoV/prof.fdata.150805.fdata /tmp/.tmpPC1eoV/prof.fdata.150806.fdata /tmp/.tmpPC1eoV/prof.fdata.150813.fdata /tmp/.tmpPC1eoV/prof.fdata.150814.fdata /tmp/.tmpPC1eoV/prof.fdata.150815.fdata /tmp/.tmpPC1eoV/prof.fdata.150834.fdata /tmp/.tmpPC1eoV/prof.fdata.150844.fdata /tmp/.tmpPC1eoV/prof.fdata.150854.fdata /tmp/.tmpPC1eoV/prof.fdata.150865.fdata /tmp/.tmpPC1eoV/prof.fdata.150876.fdata /tmp/.tmpPC1eoV/prof.fdata.150890.fdata /tmp/.tmpPC1eoV/prof.fdata.150908.fdata /tmp/.tmpPC1eoV/prof.fdata.150927.fdata /tmp/.tmpPC1eoV/prof.fdata.150946.fdata /tmp/.tmpPC1eoV/prof.fdata.150961.fdata /tmp/.tmpPC1eoV/prof.fdata.150980.fdata /tmp/.tmpPC1eoV/prof.fdata.150997.fdata > "/tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata" [at /checkout/obj]`
Profile from 641 files merged.
[2024-06-09T14:20:55.821Z INFO  opt_dist::training] rustc BOLT statistics
[2024-06-09T14:20:55.821Z INFO  opt_dist::training] /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata: 166.93 MiB
##[endgroup]
---
[TIMING] core::build_steps::dist::LlvmBitcodeLinker { compiler: Compiler { stage: 1, host: x86_64-unknown-linux-gnu }, target: x86_64-unknown-linux-gnu } -- 1.106
##[group]Building GCC for x86_64-unknown-linux-gnu


failed to execute command: BootstrapCommand { command: cd "/checkout/obj/build/x86_64-unknown-linux-gnu/gcc/build" && "src/gcc/configure" "--enable-host-shared" "--enable-languages=jit" "--enable-checking=release" "--disable-bootstrap" "--disable-multilib" "--prefix=/checkout/obj/build/x86_64-unknown-linux-gnu/gcc/install", failure_behavior: Exit, output_mode: PrintOutput }


Build completed unsuccessfully in 0:07:22
[2024-06-09T14:35:30.956Z INFO  opt_dist::timer] Section `Stage 5 (final build)` ended: FAIL (442.48s)`
---
[2024-06-09T14:35:30.956Z INFO  opt_dist::utils] Free disk space: 4.46 TiB out of total 5.11 TiB (12.71% 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.86/src/backtrace.rs:27:14
   1: <opt_dist::exec::CmdBuilder>::run
             at /rustc/9e6f6bfb0669bcda3b6fb362c113bb48a51c354d/src/tools/opt-dist/src/exec.rs:78:17
   2: <opt_dist::exec::Bootstrap>::run
             at /rustc/9e6f6bfb0669bcda3b6fb362c113bb48a51c354d/src/tools/opt-dist/src/exec.rs:179:9
             at /rustc/9e6f6bfb0669bcda3b6fb362c113bb48a51c354d/src/tools/opt-dist/src/main.rs:343:52
             at /rustc/9e6f6bfb0669bcda3b6fb362c113bb48a51c354d/src/tools/opt-dist/src/main.rs:343:52
   4: <opt_dist::timer::TimerSection>::section::<opt_dist::execute_pipeline::{closure#4}, ()>
             at /rustc/9e6f6bfb0669bcda3b6fb362c113bb48a51c354d/src/tools/opt-dist/src/timer.rs:111:22
             at /rustc/9e6f6bfb0669bcda3b6fb362c113bb48a51c354d/src/tools/opt-dist/src/main.rs:343:5
   6: opt_dist::main
             at /rustc/9e6f6bfb0669bcda3b6fb362c113bb48a51c354d/src/tools/opt-dist/src/main.rs:401:18
   7: <fn() -> core::result::Result<(), anyhow::Error> as core::ops::function::FnOnce<()>>::call_once
   7: <fn() -> core::result::Result<(), anyhow::Error> as core::ops::function::FnOnce<()>>::call_once
             at /rustc/d9e85b56e7f85f7fdabff71f217b7bb2cee0ef68/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>>
             at /rustc/d9e85b56e7f85f7fdabff71f217b7bb2cee0ef68/library/std/src/sys_common/backtrace.rs:155:18
   9: std::rt::lang_start::<core::result::Result<(), anyhow::Error>>::{closure#0}
             at /rustc/d9e85b56e7f85f7fdabff71f217b7bb2cee0ef68/library/std/src/rt.rs:159:18
  10: core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once
  11: std::panicking::try::do_call
             at /rustc/d9e85b56e7f85f7fdabff71f217b7bb2cee0ef68/library/std/src/panicking.rs:559:40
  12: std::panicking::try
             at /rustc/d9e85b56e7f85f7fdabff71f217b7bb2cee0ef68/library/std/src/panicking.rs:523:19

@bors
Copy link
Contributor

bors commented Jun 9, 2024

💔 Test failed - checks-actions

@bors bors removed the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Jun 9, 2024
@bors bors added the S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. label Jun 9, 2024
@abibroom
Copy link

We discussed this at the Council meeting today and we don't have any concerns with this change. However, we would like to confirm with the Foundation. @abibroom - do you know of any concerns from the Foundation side (feel free to ping me on Zulip or reach out via email if you'd rather not discuss this publicly.

I'd like to be able to say this is all fine, but want to run it past Foundation legal counsel first just to make sure. Please bear with me whilst that happens!

@abibroom
Copy link

We discussed this at the Council meeting today and we don't have any concerns with this change. However, we would like to confirm with the Foundation. @abibroom - do you know of any concerns from the Foundation side (feel free to ping me on Zulip or reach out via email if you'd rather not discuss this publicly.

I'd like to be able to say this is all fine, but want to run it past Foundation legal counsel first just to make sure. Please bear with me whilst that happens!

We should be good to go with this. Legal raised two points, neither of which I believe to be blocking concerns:

  1. Compliance with the GPLv2 license, specifically, the requirement to provide source code as well as binary distributions. This has hopefully already been thoroughly considered before deciding to add the component.

  2. Enabling downstream compliance: "When it comes to downstream distribution, anyone providing a binary distribution of Rust incorporating this component will need to provide source code for the whole distribution. This is ultimately their problem, but if you're aware of anyone who's doing this currently, it's probably worth talking through those cases and figuring out how to provide notice to them and other potential distributors of their additional obligations with respect to this component."

@eholk
Copy link
Contributor

eholk commented Jun 14, 2024

Enabling downstream compliance: "When it comes to downstream distribution, anyone providing a binary distribution of Rust incorporating this component will need to provide source code for the whole distribution. This is ultimately their problem, but if you're aware of anyone who's doing this currently, it's probably worth talking through those cases and figuring out how to provide notice to them and other potential distributors of their additional obligations with respect to this component."

@abibroom - just to make sure, if someone wanted to make a downstream binary distribution without releasing source code (which strikes me as rather unlikely), they could still do so if they chose not to include the libgccjit component?

I want to make sure this change doesn't effectively mean we have to relicense Rust as GPL2.

@GuillaumeGomez
Copy link
Member Author

Unless you compile with the GCC backend, the license of GCC doesn't concern you.

@Kobzol
Copy link
Contributor

Kobzol commented Jun 14, 2024

Unless you compile with the GCC backend, the license of GCC doesn't concern you.

It would be great if this was clarified a bit more in the discussion. When we were talking about "binary distributions" here, it means a distribution of the compiler toolchain, right? Not the actual end user Rust code compiled with rustc.

@GuillaumeGomez
Copy link
Member Author

This is the part I'm not clear about: by default, do we plan to include the GCC backend in all binary distributions? libccjit.so and gcc are only used at compile time. Using them changes the license of the generated binaries. However, does having them in the binary distribution also implies that all other items are impacted by the license?

@eholk
Copy link
Contributor

eholk commented Jun 14, 2024

libccjit.so and gcc are only used at compile time. Using them changes the license of the generated binaries.

Are you saying that if you compile code with gcc then the resulting binaries have to be GPL? As far as I know, that's not the case. I think it's relatively common for closed-source products to be compiled and released using GPL toolchains.

Generally I thought the way it works is if you include GPL code in your compiled binary then your whole binary needs to be GPL.

@GuillaumeGomez
Copy link
Member Author

That's not how I understood it. But I'm definitely not an expert in the area so I'd better keep quiet until someone well versed in licenses and in GPL2 in particular could confirm our thoughts.

@abibroom
Copy link

@abibroom - just to make sure, if someone wanted to make a downstream binary distribution without releasing source code (which strikes me as rather unlikely), they could still do so if they chose not to include the libgccjit component?

Yes.

When we were talking about "binary distributions" here, it means a distribution of the compiler toolchain, right? Not the actual end user Rust code compiled with rustc.

Yes; "a binary distribution of Rust" where 'Rust' means what is provided in this GitHub org/repo by the Rust Project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-meta Area: Issues about the rust-lang/rust repository. A-testsuite Area: The testsuite used to check the correctness of rustc S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

10 participants