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

Rollup of 7 pull requests #126503

Closed
wants to merge 21 commits into from

Conversation

matthiaskrgr
Copy link
Member

Successful merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

Urgau and others added 21 commits May 29, 2024 17:03
CentOS 7 is going EOL on June 30, after which its package repos will no
longer exist on the regular mirrors. We'll still be able to access
packages from the vault server though, and can start doing so now. This
affects `dist-i686-linux` and `dist-x86_64-linux`.

I also removed `epel-release` because we were only using that for its
`cmake3`, but we've been building our own version for a while.
Signed-off-by: onur-ozkan <work@onurozkan.dev>
Signed-off-by: onur-ozkan <work@onurozkan.dev>
* Allow crt-static for dylibs
* Pass -lgcc to the linker
Co-Authored-By: Jeremy Soller <jackpot51@gmail.com>
…ge, r=estebank

Indicate in `non_local_defs` lint that the macro needs to change

This PR adds a note to indicate that the macro needs to change in the `non_local_definitions` lint output.

Address rust-lang#125089 (comment)
Fixes rust-lang#125681
r? ``````@estebank``````
…rister

rustc_span: Add conveniences for working with span formats

This is the refactoring part of rust-lang#125017.
Various Redox OS fixes and add i686 Redox OS target

All of these come from the fork used by Redox OS available at https://gitlab.redox-os.org/redox-os/rust/-/commits/redox-2024-05-11/?ref_type=heads.

cc ```@jackpot51```
ci: Update centos:7 to use vault repos

CentOS 7 is going EOL on June 30, after which its package repos will no
longer exist on the regular mirrors. We'll still be able to access
packages from the vault server though, and can start doing so now. This
affects `dist-i686-linux` and `dist-x86_64-linux`.

I also removed `epel-release` because we were only using that for its
`cmake3`, but we've been building our own version for a while.

try-job: dist-i686-linux
try-job: dist-x86_64-linux
Use `Variance` glob imported variants everywhere

Fully commit to using the globbed variance. Could be convinced the other way, and change this PR to not use the globbed variants anywhere, but I'd rather we do one or the other.

r? lcnr
MIR Shl/Shr: the offset can be computed with rem_euclid

r? ```@scottmcm```
…=Kobzol

build `libcxx-version` only when it doesn't exist

In rust-lang#126423, it seems like c++ parsing takes quite amount of time on bootstrap startups. This PR makes libcxx-version to be compiled only when it doesn't exist.

A simple demonstration on the overhead of buiding `libcxx-version`:

```sh
$ rm -rf build/host/libcxx-version

$ x build
Building bootstrap
    Finished `dev` profile [unoptimized] target(s) in 0.07s

 ----- LIBCXX VERSION CHECK TOOK: 509ms
Building tool rustdoc (stage1 -> stage2, x86_64-unknown-linux-gnu)
    Finished `release` profile [optimized] target(s) in 0.25s
Build completed successfully in 0:00:02

$ x build
Building bootstrap
    Finished `dev` profile [unoptimized] target(s) in 0.07s

 ----- LIBCXX VERSION CHECK TOOK: 2ms
Creating a sysroot for stage2 compiler (use `rustup toolchain link 'name' build/host/stage2`)
Building tool rustdoc (stage1 -> stage2, x86_64-unknown-linux-gnu)
    Finished `release` profile [optimized] target(s) in 0.14s
Build completed successfully in 0:00:01
```
@rustbot rustbot added A-testsuite Area: The testsuite used to check the correctness of rustc 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) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-infra Relevant to the infrastructure team, which will review and decide on the PR/issue. WG-trait-system-refactor The Rustc Trait System Refactor Initiative (-Znext-solver) rollup A PR which is a rollup labels Jun 15, 2024
@matthiaskrgr
Copy link
Member Author

@bors r+ rollup=never p=7

@bors
Copy link
Contributor

bors commented Jun 15, 2024

📌 Commit 0fd667c has been approved by matthiaskrgr

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jun 15, 2024
@bors
Copy link
Contributor

bors commented Jun 15, 2024

⌛ Testing commit 0fd667c with merge 75f541e...

bors added a commit to rust-lang-ci/rust that referenced this pull request Jun 15, 2024
…iaskrgr

Rollup of 7 pull requests

Successful merges:

 - rust-lang#125722 (Indicate in `non_local_defs` lint that the macro needs to change)
 - rust-lang#125829 (rustc_span: Add conveniences for working with span formats)
 - rust-lang#126192 (Various Redox OS fixes and add i686 Redox OS target)
 - rust-lang#126352 (ci: Update centos:7 to use vault repos)
 - rust-lang#126354 (Use `Variance` glob imported variants everywhere)
 - rust-lang#126469 (MIR Shl/Shr: the offset can be computed with rem_euclid)
 - rust-lang#126472 (build `libcxx-version` only when it doesn't exist)

r? `@ghost`
`@rustbot` modify labels: rollup
@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)
FROM centos:7

WORKDIR /build

# CentOS 7 EOL is June 30, 2024, but the repos remain in the vault.
RUN sed -i /etc/yum.repos.d/*.repo -e 's!^mirrorlist!#mirrorlist!' \
  -e 's!^#baseurl=http://mirror.centos.org/!baseurl=https://vault.centos.org/!'

RUN yum upgrade -y && \
    yum install -y \
      automake \
---

#20 [ 8/17] RUN mkdir /home/user
#20 CACHED

#21 [ 3/17] RUN sed -i /etc/yum.repos.d/*.repo -e 's!^mirrorlist!#mirrorlist!'   -e 's!^#baseurl=http://mirror.centos.org/!baseurl=https://vault.centos.org/!'

#22 [ 5/17] RUN yum upgrade -y &&     yum install -y       automake       bzip2       file       gcc       gcc-c++       git       glibc-devel.i686       glibc-devel.x86_64       libedit-devel       libstdc++-devel.i686       libstdc++-devel.x86_64       make       ncurses-devel       openssl-devel       patch       perl       perl-core       pkgconfig       python3       unzip       wget       xz       zlib-devel.i686       zlib-devel.x86_64       && yum clean all
#22 CACHED

---
Preparing bitmaps-3.1.0
[2024-06-15T02:35:23Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T02:35:23Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T02:35:23Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T02:35:23Z DEBUG collector::compile::execute] cd "/tmp/.tmpWgtRLg" && 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/.tmpWgtRLg#bitmaps@3.1.0" "--release" "--" "--skip-this-rustc"
[2024-06-15T02:35:23Z DEBUG collector::compile::execute] cd "/tmp/.tmpKOE1Pc" && 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/.tmpKOE1Pc#bitmaps@3.1.0" "--" "--skip-this-rustc"
Running bitmaps-3.1.0: Check + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2024-06-15T02:35:23Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T02:35:23Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
---
[2024-06-15T02:38:44Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T02:38:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:38:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpWNWUkB" && 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/.tmpWNWUkB#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T02:38:49Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:38:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpWNWUkB" && 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/.tmpWNWUkB#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpWNWUkB/incremental-state"
[2024-06-15T02:38:53Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:38:53Z DEBUG collector::compile::execute] cd "/tmp/.tmpWNWUkB" && 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/.tmpWNWUkB#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpWNWUkB/incremental-state"
[2024-06-15T02:38:54Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T02:38:54Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:38:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpvptOuB" && 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/.tmpvptOuB#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T02:38:58Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:38:58Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:38:58Z DEBUG collector::compile::execute] cd "/tmp/.tmpvptOuB" && 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/.tmpvptOuB#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpvptOuB/incremental-state"
[2024-06-15T02:39:02Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:39:02Z DEBUG collector::compile::execute] cd "/tmp/.tmpvptOuB" && 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/.tmpvptOuB#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpvptOuB/incremental-state"
Executing benchmark diesel-1.4.8 (4/8)
Preparing diesel-1.4.8
[2024-06-15T02:39:03Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T02:39:03Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-06-15T02:39:41Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T02:39:41Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:39:41Z DEBUG collector::compile::execute] cd "/tmp/.tmpNXwrHB" && 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/.tmpNXwrHB#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T02:39:47Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:39:47Z DEBUG collector::compile::execute] cd "/tmp/.tmpNXwrHB" && 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/.tmpNXwrHB#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpNXwrHB/incremental-state"
[2024-06-15T02:39:55Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:39:55Z DEBUG collector::compile::execute] cd "/tmp/.tmpNXwrHB" && 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/.tmpNXwrHB#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpNXwrHB/incremental-state"
[2024-06-15T02:39:56Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpNXwrHB"
[2024-06-15T02:39:56Z 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-15T02:39:56Z 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-15T02:39:56Z DEBUG collector::compile::execute] cd "/tmp/.tmpNXwrHB" && 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/.tmpNXwrHB#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpNXwrHB/incremental-state"
Executing benchmark externs (5/8)
Preparing externs
[2024-06-15T02:39:58Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T02:39:58Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-06-15T02:40:03Z DEBUG collector::compile::execute] cd "/tmp/.tmpL6RcAC" && 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/.tmpL6RcAC#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpL6RcAC/incremental-state"
Running match-stress: Debug + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2024-06-15T02:40:03Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T02:40:03Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:03Z DEBUG collector::compile::execute] cd "/tmp/.tmpNHrAew" && 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/.tmpNHrAew#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T02:40:04Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpNHrAew" && 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/.tmpNHrAew#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpNHrAew/incremental-state"
[2024-06-15T02:40:06Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:06Z DEBUG collector::compile::execute] cd "/tmp/.tmpNHrAew" && 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/.tmpNHrAew#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpNHrAew/incremental-state"
[2024-06-15T02:40:06Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T02:40:06Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:06Z DEBUG collector::compile::execute] cd "/tmp/.tmpef2Wzg" && 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/.tmpef2Wzg#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T02:40:07Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-06-15T02:40:10Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T02:40:10Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:10Z DEBUG collector::compile::execute] cd "/tmp/.tmpLHs5yd" && 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/.tmpLHs5yd#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T02:40:10Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:10Z DEBUG collector::compile::execute] cd "/tmp/.tmpLHs5yd" && 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/.tmpLHs5yd#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpLHs5yd/incremental-state"
[2024-06-15T02:40:10Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:10Z DEBUG collector::compile::execute] cd "/tmp/.tmpLHs5yd" && 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/.tmpLHs5yd#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpLHs5yd/incremental-state"
[2024-06-15T02:40:10Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T02:40:10Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:10Z DEBUG collector::compile::execute] cd "/tmp/.tmp6X195O" && 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/.tmp6X195O#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T02:40:10Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-06-15T02:40:10Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T02:40:10Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:10Z DEBUG collector::compile::execute] cd "/tmp/.tmpxHelNC" && 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/.tmpxHelNC#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T02:40:12Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:12Z DEBUG collector::compile::execute] cd "/tmp/.tmpxHelNC" && 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/.tmpxHelNC#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpxHelNC/incremental-state"
[2024-06-15T02:40:14Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:14Z DEBUG collector::compile::execute] cd "/tmp/.tmpxHelNC" && 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/.tmpxHelNC#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpxHelNC/incremental-state"
[2024-06-15T02:40:15Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpxHelNC"
[2024-06-15T02:40:15Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-06-15T02:40:15Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-06-15T02:40:15Z DEBUG collector::compile::execute] cd "/tmp/.tmpxHelNC" && 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/.tmpxHelNC#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpxHelNC/incremental-state"
[2024-06-15T02:40:17Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T02:40:17Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:17Z DEBUG collector::compile::execute] cd "/tmp/.tmpfGtOjp" && 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/.tmpfGtOjp#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T02:40:19Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:19Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:19Z DEBUG collector::compile::execute] cd "/tmp/.tmpfGtOjp" && 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/.tmpfGtOjp#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfGtOjp/incremental-state"
[2024-06-15T02:40:21Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:21Z DEBUG collector::compile::execute] cd "/tmp/.tmpfGtOjp" && 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/.tmpfGtOjp#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfGtOjp/incremental-state"
[2024-06-15T02:40:22Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpfGtOjp"
[2024-06-15T02:40:22Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-06-15T02:40:22Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-06-15T02:40:22Z DEBUG collector::compile::execute] cd "/tmp/.tmpfGtOjp" && 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/.tmpfGtOjp#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfGtOjp/incremental-state"
[2024-06-15T02:40:24Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T02:40:24Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:24Z DEBUG collector::compile::execute] cd "/tmp/.tmplogZBa" && 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/.tmplogZBa#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T02:40:26Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:26Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:26Z DEBUG collector::compile::execute] cd "/tmp/.tmplogZBa" && 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/.tmplogZBa#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmplogZBa/incremental-state"
[2024-06-15T02:40:28Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:40:28Z DEBUG collector::compile::execute] cd "/tmp/.tmplogZBa" && 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/.tmplogZBa#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmplogZBa/incremental-state"
[2024-06-15T02:40:29Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmplogZBa"
[2024-06-15T02:40:29Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-06-15T02:40:29Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-06-15T02:40:29Z DEBUG collector::compile::execute] cd "/tmp/.tmplogZBa" && 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/.tmplogZBa#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmplogZBa/incremental-state"
[2024-06-15T02:40:31.515Z INFO  opt_dist::training] Merging Rustc PGO profiles to /tmp/tmp-multistage/opt-artifacts/rustc-pgo.profdata
[2024-06-15T02:40:31.515Z INFO  opt_dist::exec] Executing `/checkout/obj/build/x86_64-unknown-linux-gnu/llvm/build/bin/llvm-profdata merge -o /tmp/tmp-multistage/opt-artifacts/rustc-pgo.profdata /tmp/tmp-multistage/opt-artifacts/rustc-pgo [at /checkout/obj]`
##[endgroup]
[2024-06-15T02:40:44.842Z INFO  opt_dist::training] Rustc PGO statistics
---
[2024-06-15T02:58:02Z DEBUG collector::compile::execute] cd "/tmp/.tmpdCulGf" && 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/.tmpdCulGf#syn@1.0.89" "--" "--skip-this-rustc"
Running syn-1.0.89: Debug + [Full] + Llvm
[2024-06-15T02:58:05Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T02:58:05Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:58:05Z DEBUG collector::compile::execute] cd "/tmp/.tmpaCvTOG" && 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/.tmpaCvTOG#syn@1.0.89" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T02:58:06Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T02:58:06Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T02:58:06Z DEBUG collector::compile::execute] cd "/tmp/.tmpWYLeV4" && 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/.tmpWYLeV4#syn@1.0.89" "--release" "--" "--wrap-rustc-with" "Eprintln"
Finished benchmark syn-1.0.89 (8/8)
---
Executing benchmark ripgrep-13.0.0 (5/8)
Preparing ripgrep-13.0.0
[2024-06-15T03:21:42Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:21:42Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:21:42Z DEBUG collector::compile::execute] cd "/tmp/.tmpvHFeWM" && 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/.tmpvHFeWM#ripgrep@13.0.0" "--release" "--" "--skip-this-rustc"
[2024-06-15T03:21:42Z DEBUG collector::compile::execute] cd "/tmp/.tmpjGjj9J" && 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/.tmpjGjj9J#ripgrep@13.0.0" "--" "--skip-this-rustc"
[2024-06-15T03:22:11Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:22:11Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:22:11Z DEBUG collector::compile::execute] cd "/tmp/.tmpupv39V" && 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/.tmpupv39V#ripgrep@13.0.0" "--" "--wrap-rustc-with" "Eprintln"
Running ripgrep-13.0.0: Opt + [Full] + Llvm
---
Finished benchmark syn-1.0.89 (8/8)
##[endgroup]
[2024-06-15T03:23:29.244Z INFO  opt_dist::training] Merging LLVM BOLT profiles from /tmp/.tmpw9OQlk/prof.fdata to /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata
##[group]Merging BOLT profiles
[2024-06-15T03:23:29.245Z INFO  opt_dist::exec] Executing `merge-fdata /tmp/.tmpw9OQlk/prof.fdata.130408.fdata /tmp/.tmpw9OQlk/prof.fdata.130419.fdata /tmp/.tmpw9OQlk/prof.fdata.130420.fdata /tmp/.tmpw9OQlk/prof.fdata.130423.fdata /tmp/.tmpw9OQlk/prof.fdata.130424.fdata /tmp/.tmpw9OQlk/prof.fdata.130429.fdata /tmp/.tmpw9OQlk/prof.fdata.130430.fdata /tmp/.tmpw9OQlk/prof.fdata.130435.fdata /tmp/.tmpw9OQlk/prof.fdata.130436.fdata /tmp/.tmpw9OQlk/prof.fdata.130445.fdata /tmp/.tmpw9OQlk/prof.fdata.130449.fdata /tmp/.tmpw9OQlk/prof.fdata.130450.fdata /tmp/.tmpw9OQlk/prof.fdata.130451.fdata /tmp/.tmpw9OQlk/prof.fdata.130452.fdata /tmp/.tmpw9OQlk/prof.fdata.130454.fdata /tmp/.tmpw9OQlk/prof.fdata.130460.fdata /tmp/.tmpw9OQlk/prof.fdata.130462.fdata /tmp/.tmpw9OQlk/prof.fdata.130463.fdata /tmp/.tmpw9OQlk/prof.fdata.130464.fdata /tmp/.tmpw9OQlk/prof.fdata.130465.fdata /tmp/.tmpw9OQlk/prof.fdata.130466.fdata /tmp/.tmpw9OQlk/prof.fdata.130468.fdata /tmp/.tmpw9OQlk/prof.fdata.130471.fdata /tmp/.tmpw9OQlk/prof.fdata.130473.fdata /tmp/.tmpw9OQlk/prof.fdata.130474.fdata /tmp/.tmpw9OQlk/prof.fdata.130475.fdata /tmp/.tmpw9OQlk/prof.fdata.130476.fdata /tmp/.tmpw9OQlk/prof.fdata.130611.fdata /tmp/.tmpw9OQlk/prof.fdata.130614.fdata /tmp/.tmpw9OQlk/prof.fdata.130621.fdata /tmp/.tmpw9OQlk/prof.fdata.130623.fdata /tmp/.tmpw9OQlk/prof.fdata.130655.fdata /tmp/.tmpw9OQlk/prof.fdata.130661.fdata /tmp/.tmpw9OQlk/prof.fdata.130665.fdata /tmp/.tmpw9OQlk/prof.fdata.130678.fdata /tmp/.tmpw9OQlk/prof.fdata.130679.fdata /tmp/.tmpw9OQlk/prof.fdata.130686.fdata /tmp/.tmpw9OQlk/prof.fdata.130692.fdata /tmp/.tmpw9OQlk/prof.fdata.130693.fdata /tmp/.tmpw9OQlk/prof.fdata.130698.fdata /tmp/.tmpw9OQlk/prof.fdata.130703.fdata /tmp/.tmpw9OQlk/prof.fdata.130707.fdata /tmp/.tmpw9OQlk/prof.fdata.130712.fdata /tmp/.tmpw9OQlk/prof.fdata.130713.fdata /tmp/.tmpw9OQlk/prof.fdata.130722.fdata /tmp/.tmpw9OQlk/prof.fdata.130724.fdata /tmp/.tmpw9OQlk/prof.fdata.130727.fdata /tmp/.tmpw9OQlk/prof.fdata.130731.fdata /tmp/.tmpw9OQlk/prof.fdata.130736.fdata /tmp/.tmpw9OQlk/prof.fdata.130747.fdata /tmp/.tmpw9OQlk/prof.fdata.130749.fdata /tmp/.tmpw9OQlk/prof.fdata.130753.fdata /tmp/.tmpw9OQlk/prof.fdata.130771.fdata /tmp/.tmpw9OQlk/prof.fdata.130775.fdata /tmp/.tmpw9OQlk/prof.fdata.130780.fdata /tmp/.tmpw9OQlk/prof.fdata.130786.fdata /tmp/.tmpw9OQlk/prof.fdata.130795.fdata /tmp/.tmpw9OQlk/prof.fdata.130816.fdata /tmp/.tmpw9OQlk/prof.fdata.130819.fdata /tmp/.tmpw9OQlk/prof.fdata.130834.fdata /tmp/.tmpw9OQlk/prof.fdata.130868.fdata /tmp/.tmpw9OQlk/prof.fdata.130874.fdata /tmp/.tmpw9OQlk/prof.fdata.130879.fdata /tmp/.tmpw9OQlk/prof.fdata.130886.fdata /tmp/.tmpw9OQlk/prof.fdata.130892.fdata /tmp/.tmpw9OQlk/prof.fdata.130896.fdata /tmp/.tmpw9OQlk/prof.fdata.130904.fdata /tmp/.tmpw9OQlk/prof.fdata.130907.fdata /tmp/.tmpw9OQlk/prof.fdata.130920.fdata /tmp/.tmpw9OQlk/prof.fdata.130928.fdata /tmp/.tmpw9OQlk/prof.fdata.130932.fdata /tmp/.tmpw9OQlk/prof.fdata.130950.fdata /tmp/.tmpw9OQlk/prof.fdata.130956.fdata /tmp/.tmpw9OQlk/prof.fdata.130966.fdata /tmp/.tmpw9OQlk/prof.fdata.130976.fdata /tmp/.tmpw9OQlk/prof.fdata.131000.fdata /tmp/.tmpw9OQlk/prof.fdata.131008.fdata /tmp/.tmpw9OQlk/prof.fdata.131020.fdata /tmp/.tmpw9OQlk/prof.fdata.131027.fdata /tmp/.tmpw9OQlk/prof.fdata.131032.fdata /tmp/.tmpw9OQlk/prof.fdata.131039.fdata /tmp/.tmpw9OQlk/prof.fdata.131061.fdata /tmp/.tmpw9OQlk/prof.fdata.131073.fdata /tmp/.tmpw9OQlk/prof.fdata.131080.fdata /tmp/.tmpw9OQlk/prof.fdata.131086.fdata /tmp/.tmpw9OQlk/prof.fdata.131098.fdata /tmp/.tmpw9OQlk/prof.fdata.131099.fdata /tmp/.tmpw9OQlk/prof.fdata.131114.fdata /tmp/.tmpw9OQlk/prof.fdata.131123.fdata /tmp/.tmpw9OQlk/prof.fdata.131124.fdata /tmp/.tmpw9OQlk/prof.fdata.131139.fdata /tmp/.tmpw9OQlk/prof.fdata.131148.fdata /tmp/.tmpw9OQlk/prof.fdata.131155.fdata /tmp/.tmpw9OQlk/prof.fdata.131173.fdata /tmp/.tmpw9OQlk/prof.fdata.131182.fdata /tmp/.tmpw9OQlk/prof.fdata.131207.fdata /tmp/.tmpw9OQlk/prof.fdata.131211.fdata /tmp/.tmpw9OQlk/prof.fdata.131229.fdata /tmp/.tmpw9OQlk/prof.fdata.131258.fdata /tmp/.tmpw9OQlk/prof.fdata.131264.fdata /tmp/.tmpw9OQlk/prof.fdata.131276.fdata /tmp/.tmpw9OQlk/prof.fdata.131288.fdata /tmp/.tmpw9OQlk/prof.fdata.131293.fdata /tmp/.tmpw9OQlk/prof.fdata.131296.fdata /tmp/.tmpw9OQlk/prof.fdata.131305.fdata /tmp/.tmpw9OQlk/prof.fdata.131312.fdata /tmp/.tmpw9OQlk/prof.fdata.131317.fdata /tmp/.tmpw9OQlk/prof.fdata.131328.fdata /tmp/.tmpw9OQlk/prof.fdata.131393.fdata /tmp/.tmpw9OQlk/prof.fdata.131412.fdata /tmp/.tmpw9OQlk/prof.fdata.131415.fdata /tmp/.tmpw9OQlk/prof.fdata.131431.fdata /tmp/.tmpw9OQlk/prof.fdata.131434.fdata /tmp/.tmpw9OQlk/prof.fdata.131446.fdata /tmp/.tmpw9OQlk/prof.fdata.131450.fdata /tmp/.tmpw9OQlk/prof.fdata.131461.fdata /tmp/.tmpw9OQlk/prof.fdata.131462.fdata /tmp/.tmpw9OQlk/prof.fdata.131478.fdata /tmp/.tmpw9OQlk/prof.fdata.131479.fdata /tmp/.tmpw9OQlk/prof.fdata.131508.fdata /tmp/.tmpw9OQlk/prof.fdata.131511.fdata /tmp/.tmpw9OQlk/prof.fdata.131520.fdata /tmp/.tmpw9OQlk/prof.fdata.131530.fdata /tmp/.tmpw9OQlk/prof.fdata.131721.fdata /tmp/.tmpw9OQlk/prof.fdata.131724.fdata /tmp/.tmpw9OQlk/prof.fdata.131880.fdata /tmp/.tmpw9OQlk/prof.fdata.131901.fdata /tmp/.tmpw9OQlk/prof.fdata.131927.fdata /tmp/.tmpw9OQlk/prof.fdata.131955.fdata /tmp/.tmpw9OQlk/prof.fdata.131994.fdata /tmp/.tmpw9OQlk/prof.fdata.132067.fdata /tmp/.tmpw9OQlk/prof.fdata.132100.fdata /tmp/.tmpw9OQlk/prof.fdata.132152.fdata /tmp/.tmpw9OQlk/prof.fdata.132169.fdata /tmp/.tmpw9OQlk/prof.fdata.132190.fdata /tmp/.tmpw9OQlk/prof.fdata.132200.fdata /tmp/.tmpw9OQlk/prof.fdata.132237.fdata /tmp/.tmpw9OQlk/prof.fdata.132335.fdata /tmp/.tmpw9OQlk/prof.fdata.132462.fdata /tmp/.tmpw9OQlk/prof.fdata.132487.fdata /tmp/.tmpw9OQlk/prof.fdata.132488.fdata /tmp/.tmpw9OQlk/prof.fdata.132502.fdata /tmp/.tmpw9OQlk/prof.fdata.132587.fdata /tmp/.tmpw9OQlk/prof.fdata.132627.fdata /tmp/.tmpw9OQlk/prof.fdata.132633.fdata /tmp/.tmpw9OQlk/prof.fdata.132635.fdata /tmp/.tmpw9OQlk/prof.fdata.132657.fdata /tmp/.tmpw9OQlk/prof.fdata.132671.fdata /tmp/.tmpw9OQlk/prof.fdata.132709.fdata /tmp/.tmpw9OQlk/prof.fdata.132717.fdata /tmp/.tmpw9OQlk/prof.fdata.132737.fdata /tmp/.tmpw9OQlk/prof.fdata.132749.fdata /tmp/.tmpw9OQlk/prof.fdata.132754.fdata /tmp/.tmpw9OQlk/prof.fdata.132765.fdata /tmp/.tmpw9OQlk/prof.fdata.132783.fdata /tmp/.tmpw9OQlk/prof.fdata.132797.fdata /tmp/.tmpw9OQlk/prof.fdata.132808.fdata /tmp/.tmpw9OQlk/prof.fdata.132811.fdata /tmp/.tmpw9OQlk/prof.fdata.132814.fdata /tmp/.tmpw9OQlk/prof.fdata.132818.fdata /tmp/.tmpw9OQlk/prof.fdata.132855.fdata /tmp/.tmpw9OQlk/prof.fdata.132867.fdata /tmp/.tmpw9OQlk/prof.fdata.132879.fdata /tmp/.tmpw9OQlk/prof.fdata.132894.fdata /tmp/.tmpw9OQlk/prof.fdata.132908.fdata /tmp/.tmpw9OQlk/prof.fdata.132910.fdata /tmp/.tmpw9OQlk/prof.fdata.132916.fdata /tmp/.tmpw9OQlk/prof.fdata.132939.fdata /tmp/.tmpw9OQlk/prof.fdata.132953.fdata /tmp/.tmpw9OQlk/prof.fdata.132954.fdata /tmp/.tmpw9OQlk/prof.fdata.132956.fdata /tmp/.tmpw9OQlk/prof.fdata.132957.fdata /tmp/.tmpw9OQlk/prof.fdata.132966.fdata /tmp/.tmpw9OQlk/prof.fdata.132983.fdata /tmp/.tmpw9OQlk/prof.fdata.132985.fdata /tmp/.tmpw9OQlk/prof.fdata.132994.fdata /tmp/.tmpw9OQlk/prof.fdata.132995.fdata /tmp/.tmpw9OQlk/prof.fdata.133002.fdata /tmp/.tmpw9OQlk/prof.fdata.133008.fdata /tmp/.tmpw9OQlk/prof.fdata.133021.fdata /tmp/.tmpw9OQlk/prof.fdata.133030.fdata /tmp/.tmpw9OQlk/prof.fdata.133036.fdata /tmp/.tmpw9OQlk/prof.fdata.133044.fdata /tmp/.tmpw9OQlk/prof.fdata.133049.fdata /tmp/.tmpw9OQlk/prof.fdata.133112.fdata /tmp/.tmpw9OQlk/prof.fdata.133137.fdata /tmp/.tmpw9OQlk/prof.fdata.133149.fdata /tmp/.tmpw9OQlk/prof.fdata.133153.fdata /tmp/.tmpw9OQlk/prof.fdata.133162.fdata /tmp/.tmpw9OQlk/prof.fdata.133173.fdata /tmp/.tmpw9OQlk/prof.fdata.133182.fdata /tmp/.tmpw9OQlk/prof.fdata.133188.fdata /tmp/.tmpw9OQlk/prof.fdata.133235.fdata /tmp/.tmpw9OQlk/prof.fdata.133272.fdata /tmp/.tmpw9OQlk/prof.fdata.133314.fdata /tmp/.tmpw9OQlk/prof.fdata.133319.fdata /tmp/.tmpw9OQlk/prof.fdata.133338.fdata /tmp/.tmpw9OQlk/prof.fdata.133401.fdata /tmp/.tmpw9OQlk/prof.fdata.133450.fdata /tmp/.tmpw9OQlk/prof.fdata.133539.fdata /tmp/.tmpw9OQlk/prof.fdata.133753.fdata /tmp/.tmpw9OQlk/prof.fdata.133792.fdata /tmp/.tmpw9OQlk/prof.fdata.133822.fdata /tmp/.tmpw9OQlk/prof.fdata.133887.fdata /tmp/.tmpw9OQlk/prof.fdata.133894.fdata /tmp/.tmpw9OQlk/prof.fdata.133909.fdata /tmp/.tmpw9OQlk/prof.fdata.133945.fdata /tmp/.tmpw9OQlk/prof.fdata.133949.fdata /tmp/.tmpw9OQlk/prof.fdata.134018.fdata /tmp/.tmpw9OQlk/prof.fdata.134120.fdata /tmp/.tmpw9OQlk/prof.fdata.134143.fdata /tmp/.tmpw9OQlk/prof.fdata.134148.fdata /tmp/.tmpw9OQlk/prof.fdata.134191.fdata /tmp/.tmpw9OQlk/prof.fdata.134261.fdata /tmp/.tmpw9OQlk/prof.fdata.134264.fdata /tmp/.tmpw9OQlk/prof.fdata.134295.fdata /tmp/.tmpw9OQlk/prof.fdata.134308.fdata /tmp/.tmpw9OQlk/prof.fdata.134339.fdata /tmp/.tmpw9OQlk/prof.fdata.134411.fdata /tmp/.tmpw9OQlk/prof.fdata.134426.fdata /tmp/.tmpw9OQlk/prof.fdata.134440.fdata /tmp/.tmpw9OQlk/prof.fdata.134450.fdata /tmp/.tmpw9OQlk/prof.fdata.134461.fdata /tmp/.tmpw9OQlk/prof.fdata.134467.fdata /tmp/.tmpw9OQlk/prof.fdata.134472.fdata /tmp/.tmpw9OQlk/prof.fdata.134481.fdata /tmp/.tmpw9OQlk/prof.fdata.134493.fdata /tmp/.tmpw9OQlk/prof.fdata.134503.fdata /tmp/.tmpw9OQlk/prof.fdata.134505.fdata /tmp/.tmpw9OQlk/prof.fdata.134529.fdata /tmp/.tmpw9OQlk/prof.fdata.134539.fdata /tmp/.tmpw9OQlk/prof.fdata.134550.fdata /tmp/.tmpw9OQlk/prof.fdata.134556.fdata /tmp/.tmpw9OQlk/prof.fdata.134587.fdata /tmp/.tmpw9OQlk/prof.fdata.134600.fdata /tmp/.tmpw9OQlk/prof.fdata.134622.fdata /tmp/.tmpw9OQlk/prof.fdata.134638.fdata /tmp/.tmpw9OQlk/prof.fdata.134643.fdata /tmp/.tmpw9OQlk/prof.fdata.134655.fdata /tmp/.tmpw9OQlk/prof.fdata.134656.fdata /tmp/.tmpw9OQlk/prof.fdata.134668.fdata /tmp/.tmpw9OQlk/prof.fdata.134679.fdata /tmp/.tmpw9OQlk/prof.fdata.134721.fdata /tmp/.tmpw9OQlk/prof.fdata.134727.fdata /tmp/.tmpw9OQlk/prof.fdata.134735.fdata /tmp/.tmpw9OQlk/prof.fdata.134746.fdata /tmp/.tmpw9OQlk/prof.fdata.134754.fdata /tmp/.tmpw9OQlk/prof.fdata.134776.fdata /tmp/.tmpw9OQlk/prof.fdata.134780.fdata /tmp/.tmpw9OQlk/prof.fdata.134786.fdata /tmp/.tmpw9OQlk/prof.fdata.134804.fdata /tmp/.tmpw9OQlk/prof.fdata.134816.fdata /tmp/.tmpw9OQlk/prof.fdata.134831.fdata /tmp/.tmpw9OQlk/prof.fdata.134835.fdata /tmp/.tmpw9OQlk/prof.fdata.134853.fdata /tmp/.tmpw9OQlk/prof.fdata.134864.fdata /tmp/.tmpw9OQlk/prof.fdata.134870.fdata /tmp/.tmpw9OQlk/prof.fdata.134886.fdata /tmp/.tmpw9OQlk/prof.fdata.134891.fdata /tmp/.tmpw9OQlk/prof.fdata.134905.fdata /tmp/.tmpw9OQlk/prof.fdata.134907.fdata /tmp/.tmpw9OQlk/prof.fdata.134914.fdata /tmp/.tmpw9OQlk/prof.fdata.134936.fdata /tmp/.tmpw9OQlk/prof.fdata.134955.fdata /tmp/.tmpw9OQlk/prof.fdata.134964.fdata /tmp/.tmpw9OQlk/prof.fdata.134974.fdata /tmp/.tmpw9OQlk/prof.fdata.134982.fdata /tmp/.tmpw9OQlk/prof.fdata.134987.fdata /tmp/.tmpw9OQlk/prof.fdata.135005.fdata /tmp/.tmpw9OQlk/prof.fdata.135011.fdata /tmp/.tmpw9OQlk/prof.fdata.135023.fdata /tmp/.tmpw9OQlk/prof.fdata.135037.fdata /tmp/.tmpw9OQlk/prof.fdata.135059.fdata /tmp/.tmpw9OQlk/prof.fdata.135085.fdata /tmp/.tmpw9OQlk/prof.fdata.135095.fdata /tmp/.tmpw9OQlk/prof.fdata.135107.fdata /tmp/.tmpw9OQlk/prof.fdata.135112.fdata /tmp/.tmpw9OQlk/prof.fdata.135144.fdata /tmp/.tmpw9OQlk/prof.fdata.135164.fdata /tmp/.tmpw9OQlk/prof.fdata.135178.fdata /tmp/.tmpw9OQlk/prof.fdata.135188.fdata /tmp/.tmpw9OQlk/prof.fdata.135196.fdata /tmp/.tmpw9OQlk/prof.fdata.135219.fdata /tmp/.tmpw9OQlk/prof.fdata.135230.fdata /tmp/.tmpw9OQlk/prof.fdata.135242.fdata /tmp/.tmpw9OQlk/prof.fdata.135249.fdata /tmp/.tmpw9OQlk/prof.fdata.135254.fdata /tmp/.tmpw9OQlk/prof.fdata.135255.fdata /tmp/.tmpw9OQlk/prof.fdata.135298.fdata /tmp/.tmpw9OQlk/prof.fdata.135305.fdata /tmp/.tmpw9OQlk/prof.fdata.135327.fdata /tmp/.tmpw9OQlk/prof.fdata.135340.fdata /tmp/.tmpw9OQlk/prof.fdata.135344.fdata /tmp/.tmpw9OQlk/prof.fdata.135362.fdata /tmp/.tmpw9OQlk/prof.fdata.135411.fdata /tmp/.tmpw9OQlk/prof.fdata.135434.fdata /tmp/.tmpw9OQlk/prof.fdata.135472.fdata /tmp/.tmpw9OQlk/prof.fdata.135477.fdata /tmp/.tmpw9OQlk/prof.fdata.135490.fdata /tmp/.tmpw9OQlk/prof.fdata.135522.fdata /tmp/.tmpw9OQlk/prof.fdata.135529.fdata /tmp/.tmpw9OQlk/prof.fdata.135549.fdata /tmp/.tmpw9OQlk/prof.fdata.135550.fdata /tmp/.tmpw9OQlk/prof.fdata.135572.fdata /tmp/.tmpw9OQlk/prof.fdata.135600.fdata /tmp/.tmpw9OQlk/prof.fdata.135615.fdata /tmp/.tmpw9OQlk/prof.fdata.135626.fdata /tmp/.tmpw9OQlk/prof.fdata.135639.fdata /tmp/.tmpw9OQlk/prof.fdata.135718.fdata /tmp/.tmpw9OQlk/prof.fdata.135745.fdata /tmp/.tmpw9OQlk/prof.fdata.135790.fdata /tmp/.tmpw9OQlk/prof.fdata.135791.fdata /tmp/.tmpw9OQlk/prof.fdata.135794.fdata /tmp/.tmpw9OQlk/prof.fdata.135795.fdata /tmp/.tmpw9OQlk/prof.fdata.135800.fdata /tmp/.tmpw9OQlk/prof.fdata.135801.fdata /tmp/.tmpw9OQlk/prof.fdata.135806.fdata /tmp/.tmpw9OQlk/prof.fdata.135807.fdata /tmp/.tmpw9OQlk/prof.fdata.135822.fdata /tmp/.tmpw9OQlk/prof.fdata.135823.fdata /tmp/.tmpw9OQlk/prof.fdata.135825.fdata /tmp/.tmpw9OQlk/prof.fdata.135826.fdata /tmp/.tmpw9OQlk/prof.fdata.135828.fdata /tmp/.tmpw9OQlk/prof.fdata.135829.fdata /tmp/.tmpw9OQlk/prof.fdata.135830.fdata /tmp/.tmpw9OQlk/prof.fdata.135831.fdata /tmp/.tmpw9OQlk/prof.fdata.135834.fdata /tmp/.tmpw9OQlk/prof.fdata.135835.fdata /tmp/.tmpw9OQlk/prof.fdata.135836.fdata /tmp/.tmpw9OQlk/prof.fdata.135839.fdata /tmp/.tmpw9OQlk/prof.fdata.135840.fdata /tmp/.tmpw9OQlk/prof.fdata.135841.fdata /tmp/.tmpw9OQlk/prof.fdata.135842.fdata /tmp/.tmpw9OQlk/prof.fdata.135843.fdata /tmp/.tmpw9OQlk/prof.fdata.135983.fdata /tmp/.tmpw9OQlk/prof.fdata.135989.fdata /tmp/.tmpw9OQlk/prof.fdata.135994.fdata /tmp/.tmpw9OQlk/prof.fdata.135998.fdata /tmp/.tmpw9OQlk/prof.fdata.136001.fdata /tmp/.tmpw9OQlk/prof.fdata.136012.fdata /tmp/.tmpw9OQlk/prof.fdata.136017.fdata /tmp/.tmpw9OQlk/prof.fdata.136021.fdata /tmp/.tmpw9OQlk/prof.fdata.136029.fdata /tmp/.tmpw9OQlk/prof.fdata.136040.fdata /tmp/.tmpw9OQlk/prof.fdata.136067.fdata /tmp/.tmpw9OQlk/prof.fdata.136072.fdata /tmp/.tmpw9OQlk/prof.fdata.136089.fdata /tmp/.tmpw9OQlk/prof.fdata.136095.fdata /tmp/.tmpw9OQlk/prof.fdata.136115.fdata /tmp/.tmpw9OQlk/prof.fdata.136142.fdata /tmp/.tmpw9OQlk/prof.fdata.136187.fdata /tmp/.tmpw9OQlk/prof.fdata.136188.fdata /tmp/.tmpw9OQlk/prof.fdata.136191.fdata /tmp/.tmpw9OQlk/prof.fdata.136192.fdata /tmp/.tmpw9OQlk/prof.fdata.136197.fdata /tmp/.tmpw9OQlk/prof.fdata.136198.fdata /tmp/.tmpw9OQlk/prof.fdata.136203.fdata /tmp/.tmpw9OQlk/prof.fdata.136204.fdata /tmp/.tmpw9OQlk/prof.fdata.136216.fdata /tmp/.tmpw9OQlk/prof.fdata.136217.fdata /tmp/.tmpw9OQlk/prof.fdata.136218.fdata /tmp/.tmpw9OQlk/prof.fdata.136219.fdata /tmp/.tmpw9OQlk/prof.fdata.136220.fdata /tmp/.tmpw9OQlk/prof.fdata.136221.fdata /tmp/.tmpw9OQlk/prof.fdata.136224.fdata /tmp/.tmpw9OQlk/prof.fdata.136227.fdata /tmp/.tmpw9OQlk/prof.fdata.136228.fdata /tmp/.tmpw9OQlk/prof.fdata.136230.fdata /tmp/.tmpw9OQlk/prof.fdata.136232.fdata /tmp/.tmpw9OQlk/prof.fdata.136234.fdata /tmp/.tmpw9OQlk/prof.fdata.136236.fdata /tmp/.tmpw9OQlk/prof.fdata.136237.fdata /tmp/.tmpw9OQlk/prof.fdata.136240.fdata /tmp/.tmpw9OQlk/prof.fdata.136242.fdata /tmp/.tmpw9OQlk/prof.fdata.136253.fdata /tmp/.tmpw9OQlk/prof.fdata.136260.fdata /tmp/.tmpw9OQlk/prof.fdata.136377.fdata /tmp/.tmpw9OQlk/prof.fdata.136380.fdata /tmp/.tmpw9OQlk/prof.fdata.136381.fdata /tmp/.tmpw9OQlk/prof.fdata.136383.fdata /tmp/.tmpw9OQlk/prof.fdata.136400.fdata /tmp/.tmpw9OQlk/prof.fdata.136413.fdata /tmp/.tmpw9OQlk/prof.fdata.136414.fdata /tmp/.tmpw9OQlk/prof.fdata.136422.fdata /tmp/.tmpw9OQlk/prof.fdata.136426.fdata /tmp/.tmpw9OQlk/prof.fdata.136434.fdata /tmp/.tmpw9OQlk/prof.fdata.136448.fdata /tmp/.tmpw9OQlk/prof.fdata.136450.fdata /tmp/.tmpw9OQlk/prof.fdata.136470.fdata /tmp/.tmpw9OQlk/prof.fdata.136474.fdata /tmp/.tmpw9OQlk/prof.fdata.136482.fdata /tmp/.tmpw9OQlk/prof.fdata.136486.fdata /tmp/.tmpw9OQlk/prof.fdata.136491.fdata /tmp/.tmpw9OQlk/prof.fdata.136495.fdata /tmp/.tmpw9OQlk/prof.fdata.136496.fdata /tmp/.tmpw9OQlk/prof.fdata.136504.fdata /tmp/.tmpw9OQlk/prof.fdata.136506.fdata /tmp/.tmpw9OQlk/prof.fdata.136508.fdata /tmp/.tmpw9OQlk/prof.fdata.136510.fdata /tmp/.tmpw9OQlk/prof.fdata.136518.fdata /tmp/.tmpw9OQlk/prof.fdata.136522.fdata /tmp/.tmpw9OQlk/prof.fdata.136562.fdata /tmp/.tmpw9OQlk/prof.fdata.136573.fdata /tmp/.tmpw9OQlk/prof.fdata.136577.fdata /tmp/.tmpw9OQlk/prof.fdata.136582.fdata /tmp/.tmpw9OQlk/prof.fdata.136593.fdata /tmp/.tmpw9OQlk/prof.fdata.136600.fdata /tmp/.tmpw9OQlk/prof.fdata.136617.fdata /tmp/.tmpw9OQlk/prof.fdata.136624.fdata /tmp/.tmpw9OQlk/prof.fdata.136634.fdata /tmp/.tmpw9OQlk/prof.fdata.136640.fdata /tmp/.tmpw9OQlk/prof.fdata.136650.fdata /tmp/.tmpw9OQlk/prof.fdata.136667.fdata /tmp/.tmpw9OQlk/prof.fdata.136668.fdata /tmp/.tmpw9OQlk/prof.fdata.136679.fdata /tmp/.tmpw9OQlk/prof.fdata.136693.fdata /tmp/.tmpw9OQlk/prof.fdata.136698.fdata /tmp/.tmpw9OQlk/prof.fdata.136705.fdata /tmp/.tmpw9OQlk/prof.fdata.136709.fdata /tmp/.tmpw9OQlk/prof.fdata.136726.fdata /tmp/.tmpw9OQlk/prof.fdata.136737.fdata /tmp/.tmpw9OQlk/prof.fdata.136748.fdata /tmp/.tmpw9OQlk/prof.fdata.136756.fdata /tmp/.tmpw9OQlk/prof.fdata.136757.fdata /tmp/.tmpw9OQlk/prof.fdata.136763.fdata /tmp/.tmpw9OQlk/prof.fdata.136768.fdata /tmp/.tmpw9OQlk/prof.fdata.136776.fdata /tmp/.tmpw9OQlk/prof.fdata.136788.fdata /tmp/.tmpw9OQlk/prof.fdata.136795.fdata /tmp/.tmpw9OQlk/prof.fdata.136799.fdata /tmp/.tmpw9OQlk/prof.fdata.136810.fdata /tmp/.tmpw9OQlk/prof.fdata.136814.fdata /tmp/.tmpw9OQlk/prof.fdata.136826.fdata /tmp/.tmpw9OQlk/prof.fdata.136836.fdata /tmp/.tmpw9OQlk/prof.fdata.136838.fdata /tmp/.tmpw9OQlk/prof.fdata.136846.fdata /tmp/.tmpw9OQlk/prof.fdata.136853.fdata /tmp/.tmpw9OQlk/prof.fdata.136872.fdata /tmp/.tmpw9OQlk/prof.fdata.136877.fdata /tmp/.tmpw9OQlk/prof.fdata.136883.fdata /tmp/.tmpw9OQlk/prof.fdata.136900.fdata /tmp/.tmpw9OQlk/prof.fdata.136908.fdata /tmp/.tmpw9OQlk/prof.fdata.136911.fdata /tmp/.tmpw9OQlk/prof.fdata.136923.fdata /tmp/.tmpw9OQlk/prof.fdata.136937.fdata /tmp/.tmpw9OQlk/prof.fdata.136945.fdata /tmp/.tmpw9OQlk/prof.fdata.136946.fdata /tmp/.tmpw9OQlk/prof.fdata.136952.fdata /tmp/.tmpw9OQlk/prof.fdata.136968.fdata /tmp/.tmpw9OQlk/prof.fdata.136988.fdata /tmp/.tmpw9OQlk/prof.fdata.137022.fdata /tmp/.tmpw9OQlk/prof.fdata.137023.fdata /tmp/.tmpw9OQlk/prof.fdata.137061.fdata /tmp/.tmpw9OQlk/prof.fdata.137062.fdata /tmp/.tmpw9OQlk/prof.fdata.137078.fdata /tmp/.tmpw9OQlk/prof.fdata.137103.fdata /tmp/.tmpw9OQlk/prof.fdata.137110.fdata /tmp/.tmpw9OQlk/prof.fdata.137114.fdata /tmp/.tmpw9OQlk/prof.fdata.137121.fdata /tmp/.tmpw9OQlk/prof.fdata.137128.fdata /tmp/.tmpw9OQlk/prof.fdata.137135.fdata /tmp/.tmpw9OQlk/prof.fdata.137148.fdata /tmp/.tmpw9OQlk/prof.fdata.137195.fdata /tmp/.tmpw9OQlk/prof.fdata.137222.fdata /tmp/.tmpw9OQlk/prof.fdata.137236.fdata /tmp/.tmpw9OQlk/prof.fdata.137237.fdata /tmp/.tmpw9OQlk/prof.fdata.137240.fdata /tmp/.tmpw9OQlk/prof.fdata.137241.fdata /tmp/.tmpw9OQlk/prof.fdata.137246.fdata /tmp/.tmpw9OQlk/prof.fdata.137247.fdata /tmp/.tmpw9OQlk/prof.fdata.137252.fdata /tmp/.tmpw9OQlk/prof.fdata.137253.fdata /tmp/.tmpw9OQlk/prof.fdata.137262.fdata /tmp/.tmpw9OQlk/prof.fdata.137263.fdata /tmp/.tmpw9OQlk/prof.fdata.137264.fdata /tmp/.tmpw9OQlk/prof.fdata.137265.fdata /tmp/.tmpw9OQlk/prof.fdata.137294.fdata /tmp/.tmpw9OQlk/prof.fdata.137295.fdata /tmp/.tmpw9OQlk/prof.fdata.137317.fdata /tmp/.tmpw9OQlk/prof.fdata.137321.fdata /tmp/.tmpw9OQlk/prof.fdata.137421.fdata /tmp/.tmpw9OQlk/prof.fdata.137448.fdata /tmp/.tmpw9OQlk/prof.fdata.137493.fdata /tmp/.tmpw9OQlk/prof.fdata.137494.fdata /tmp/.tmpw9OQlk/prof.fdata.137497.fdata /tmp/.tmpw9OQlk/prof.fdata.137498.fdata /tmp/.tmpw9OQlk/prof.fdata.137503.fdata /tmp/.tmpw9OQlk/prof.fdata.137504.fdata /tmp/.tmpw9OQlk/prof.fdata.137509.fdata /tmp/.tmpw9OQlk/prof.fdata.137510.fdata /tmp/.tmpw9OQlk/prof.fdata.137520.fdata /tmp/.tmpw9OQlk/prof.fdata.137522.fdata /tmp/.tmpw9OQlk/prof.fdata.137525.fdata /tmp/.tmpw9OQlk/prof.fdata.137526.fdata /tmp/.tmpw9OQlk/prof.fdata.137527.fdata /tmp/.tmpw9OQlk/prof.fdata.137528.fdata /tmp/.tmpw9OQlk/prof.fdata.137530.fdata /tmp/.tmpw9OQlk/prof.fdata.137532.fdata /tmp/.tmpw9OQlk/prof.fdata.137534.fdata /tmp/.tmpw9OQlk/prof.fdata.137535.fdata /tmp/.tmpw9OQlk/prof.fdata.137540.fdata /tmp/.tmpw9OQlk/prof.fdata.137541.fdata /tmp/.tmpw9OQlk/prof.fdata.137545.fdata /tmp/.tmpw9OQlk/prof.fdata.137546.fdata /tmp/.tmpw9OQlk/prof.fdata.137547.fdata /tmp/.tmpw9OQlk/prof.fdata.137548.fdata /tmp/.tmpw9OQlk/prof.fdata.137549.fdata /tmp/.tmpw9OQlk/prof.fdata.137563.fdata /tmp/.tmpw9OQlk/prof.fdata.137680.fdata /tmp/.tmpw9OQlk/prof.fdata.137682.fdata /tmp/.tmpw9OQlk/prof.fdata.137694.fdata /tmp/.tmpw9OQlk/prof.fdata.137698.fdata /tmp/.tmpw9OQlk/prof.fdata.137707.fdata /tmp/.tmpw9OQlk/prof.fdata.137716.fdata /tmp/.tmpw9OQlk/prof.fdata.137723.fdata /tmp/.tmpw9OQlk/prof.fdata.137731.fdata /tmp/.tmpw9OQlk/prof.fdata.137741.fdata /tmp/.tmpw9OQlk/prof.fdata.137742.fdata /tmp/.tmpw9OQlk/prof.fdata.137743.fdata /tmp/.tmpw9OQlk/prof.fdata.137747.fdata /tmp/.tmpw9OQlk/prof.fdata.137753.fdata /tmp/.tmpw9OQlk/prof.fdata.137762.fdata /tmp/.tmpw9OQlk/prof.fdata.137771.fdata /tmp/.tmpw9OQlk/prof.fdata.137776.fdata /tmp/.tmpw9OQlk/prof.fdata.137780.fdata /tmp/.tmpw9OQlk/prof.fdata.137787.fdata /tmp/.tmpw9OQlk/prof.fdata.137788.fdata /tmp/.tmpw9OQlk/prof.fdata.137793.fdata /tmp/.tmpw9OQlk/prof.fdata.137798.fdata /tmp/.tmpw9OQlk/prof.fdata.137809.fdata /tmp/.tmpw9OQlk/prof.fdata.137827.fdata /tmp/.tmpw9OQlk/prof.fdata.137829.fdata /tmp/.tmpw9OQlk/prof.fdata.137833.fdata /tmp/.tmpw9OQlk/prof.fdata.137840.fdata /tmp/.tmpw9OQlk/prof.fdata.137850.fdata /tmp/.tmpw9OQlk/prof.fdata.137859.fdata /tmp/.tmpw9OQlk/prof.fdata.137861.fdata /tmp/.tmpw9OQlk/prof.fdata.137891.fdata /tmp/.tmpw9OQlk/prof.fdata.137920.fdata /tmp/.tmpw9OQlk/prof.fdata.137923.fdata /tmp/.tmpw9OQlk/prof.fdata.137934.fdata /tmp/.tmpw9OQlk/prof.fdata.137946.fdata /tmp/.tmpw9OQlk/prof.fdata.137956.fdata /tmp/.tmpw9OQlk/prof.fdata.137968.fdata /tmp/.tmpw9OQlk/prof.fdata.137972.fdata /tmp/.tmpw9OQlk/prof.fdata.137980.fdata /tmp/.tmpw9OQlk/prof.fdata.137990.fdata /tmp/.tmpw9OQlk/prof.fdata.137999.fdata /tmp/.tmpw9OQlk/prof.fdata.138000.fdata /tmp/.tmpw9OQlk/prof.fdata.138015.fdata /tmp/.tmpw9OQlk/prof.fdata.138037.fdata /tmp/.tmpw9OQlk/prof.fdata.138045.fdata /tmp/.tmpw9OQlk/prof.fdata.138057.fdata /tmp/.tmpw9OQlk/prof.fdata.138064.fdata /tmp/.tmpw9OQlk/prof.fdata.138104.fdata /tmp/.tmpw9OQlk/prof.fdata.138118.fdata /tmp/.tmpw9OQlk/prof.fdata.138143.fdata /tmp/.tmpw9OQlk/prof.fdata.138160.fdata /tmp/.tmpw9OQlk/prof.fdata.138163.fdata /tmp/.tmpw9OQlk/prof.fdata.138169.fdata /tmp/.tmpw9OQlk/prof.fdata.138185.fdata /tmp/.tmpw9OQlk/prof.fdata.138203.fdata /tmp/.tmpw9OQlk/prof.fdata.138209.fdata /tmp/.tmpw9OQlk/prof.fdata.138214.fdata /tmp/.tmpw9OQlk/prof.fdata.138226.fdata /tmp/.tmpw9OQlk/prof.fdata.138235.fdata /tmp/.tmpw9OQlk/prof.fdata.138251.fdata /tmp/.tmpw9OQlk/prof.fdata.138255.fdata /tmp/.tmpw9OQlk/prof.fdata.138268.fdata /tmp/.tmpw9OQlk/prof.fdata.138278.fdata /tmp/.tmpw9OQlk/prof.fdata.138279.fdata /tmp/.tmpw9OQlk/prof.fdata.138289.fdata /tmp/.tmpw9OQlk/prof.fdata.138308.fdata /tmp/.tmpw9OQlk/prof.fdata.138312.fdata /tmp/.tmpw9OQlk/prof.fdata.138318.fdata /tmp/.tmpw9OQlk/prof.fdata.138330.fdata /tmp/.tmpw9OQlk/prof.fdata.138340.fdata /tmp/.tmpw9OQlk/prof.fdata.138347.fdata /tmp/.tmpw9OQlk/prof.fdata.138350.fdata /tmp/.tmpw9OQlk/prof.fdata.138356.fdata /tmp/.tmpw9OQlk/prof.fdata.138365.fdata /tmp/.tmpw9OQlk/prof.fdata.138383.fdata /tmp/.tmpw9OQlk/prof.fdata.138385.fdata /tmp/.tmpw9OQlk/prof.fdata.138401.fdata /tmp/.tmpw9OQlk/prof.fdata.138413.fdata /tmp/.tmpw9OQlk/prof.fdata.138418.fdata /tmp/.tmpw9OQlk/prof.fdata.138424.fdata /tmp/.tmpw9OQlk/prof.fdata.138426.fdata /tmp/.tmpw9OQlk/prof.fdata.138436.fdata /tmp/.tmpw9OQlk/prof.fdata.138441.fdata /tmp/.tmpw9OQlk/prof.fdata.138463.fdata /tmp/.tmpw9OQlk/prof.fdata.138465.fdata /tmp/.tmpw9OQlk/prof.fdata.138481.fdata /tmp/.tmpw9OQlk/prof.fdata.138484.fdata /tmp/.tmpw9OQlk/prof.fdata.138507.fdata /tmp/.tmpw9OQlk/prof.fdata.138536.fdata /tmp/.tmpw9OQlk/prof.fdata.138538.fdata /tmp/.tmpw9OQlk/prof.fdata.138553.fdata /tmp/.tmpw9OQlk/prof.fdata.138567.fdata /tmp/.tmpw9OQlk/prof.fdata.138568.fdata /tmp/.tmpw9OQlk/prof.fdata.138580.fdata /tmp/.tmpw9OQlk/prof.fdata.138591.fdata /tmp/.tmpw9OQlk/prof.fdata.138622.fdata /tmp/.tmpw9OQlk/prof.fdata.138626.fdata /tmp/.tmpw9OQlk/prof.fdata.138648.fdata /tmp/.tmpw9OQlk/prof.fdata.138662.fdata /tmp/.tmpw9OQlk/prof.fdata.138678.fdata /tmp/.tmpw9OQlk/prof.fdata.138695.fdata /tmp/.tmpw9OQlk/prof.fdata.138703.fdata /tmp/.tmpw9OQlk/prof.fdata.138712.fdata /tmp/.tmpw9OQlk/prof.fdata.138727.fdata /tmp/.tmpw9OQlk/prof.fdata.138733.fdata /tmp/.tmpw9OQlk/prof.fdata.138736.fdata /tmp/.tmpw9OQlk/prof.fdata.138750.fdata /tmp/.tmpw9OQlk/prof.fdata.138755.fdata /tmp/.tmpw9OQlk/prof.fdata.138764.fdata /tmp/.tmpw9OQlk/prof.fdata.138765.fdata /tmp/.tmpw9OQlk/prof.fdata.138773.fdata /tmp/.tmpw9OQlk/prof.fdata.138790.fdata /tmp/.tmpw9OQlk/prof.fdata.138816.fdata /tmp/.tmpw9OQlk/prof.fdata.138831.fdata /tmp/.tmpw9OQlk/prof.fdata.138900.fdata /tmp/.tmpw9OQlk/prof.fdata.138911.fdata /tmp/.tmpw9OQlk/prof.fdata.138940.fdata /tmp/.tmpw9OQlk/prof.fdata.138997.fdata /tmp/.tmpw9OQlk/prof.fdata.139013.fdata /tmp/.tmpw9OQlk/prof.fdata.139056.fdata /tmp/.tmpw9OQlk/prof.fdata.139067.fdata /tmp/.tmpw9OQlk/prof.fdata.139125.fdata /tmp/.tmpw9OQlk/prof.fdata.139133.fdata /tmp/.tmpw9OQlk/prof.fdata.139149.fdata /tmp/.tmpw9OQlk/prof.fdata.139189.fdata /tmp/.tmpw9OQlk/prof.fdata.139224.fdata /tmp/.tmpw9OQlk/prof.fdata.139268.fdata /tmp/.tmpw9OQlk/prof.fdata.139270.fdata /tmp/.tmpw9OQlk/prof.fdata.139273.fdata /tmp/.tmpw9OQlk/prof.fdata.139276.fdata /tmp/.tmpw9OQlk/prof.fdata.139286.fdata /tmp/.tmpw9OQlk/prof.fdata.139288.fdata /tmp/.tmpw9OQlk/prof.fdata.139289.fdata /tmp/.tmpw9OQlk/prof.fdata.139291.fdata /tmp/.tmpw9OQlk/prof.fdata.139292.fdata /tmp/.tmpw9OQlk/prof.fdata.139293.fdata /tmp/.tmpw9OQlk/prof.fdata.139294.fdata /tmp/.tmpw9OQlk/prof.fdata.139296.fdata /tmp/.tmpw9OQlk/prof.fdata.139297.fdata /tmp/.tmpw9OQlk/prof.fdata.139299.fdata /tmp/.tmpw9OQlk/prof.fdata.139302.fdata /tmp/.tmpw9OQlk/prof.fdata.139304.fdata /tmp/.tmpw9OQlk/prof.fdata.139305.fdata /tmp/.tmpw9OQlk/prof.fdata.139306.fdata /tmp/.tmpw9OQlk/prof.fdata.139310.fdata /tmp/.tmpw9OQlk/prof.fdata.139313.fdata /tmp/.tmpw9OQlk/prof.fdata.139325.fdata /tmp/.tmpw9OQlk/prof.fdata.139432.fdata /tmp/.tmpw9OQlk/prof.fdata.139433.fdata /tmp/.tmpw9OQlk/prof.fdata.139439.fdata /tmp/.tmpw9OQlk/prof.fdata.139455.fdata /tmp/.tmpw9OQlk/prof.fdata.139459.fdata /tmp/.tmpw9OQlk/prof.fdata.139467.fdata /tmp/.tmpw9OQlk/prof.fdata.139476.fdata /tmp/.tmpw9OQlk/prof.fdata.139486.fdata /tmp/.tmpw9OQlk/prof.fdata.139490.fdata /tmp/.tmpw9OQlk/prof.fdata.139494.fdata /tmp/.tmpw9OQlk/prof.fdata.139498.fdata /tmp/.tmpw9OQlk/prof.fdata.139502.fdata /tmp/.tmpw9OQlk/prof.fdata.139511.fdata /tmp/.tmpw9OQlk/prof.fdata.139513.fdata /tmp/.tmpw9OQlk/prof.fdata.139519.fdata /tmp/.tmpw9OQlk/prof.fdata.139520.fdata /tmp/.tmpw9OQlk/prof.fdata.139524.fdata /tmp/.tmpw9OQlk/prof.fdata.139535.fdata /tmp/.tmpw9OQlk/prof.fdata.139536.fdata /tmp/.tmpw9OQlk/prof.fdata.139541.fdata /tmp/.tmpw9OQlk/prof.fdata.139557.fdata /tmp/.tmpw9OQlk/prof.fdata.139562.fdata /tmp/.tmpw9OQlk/prof.fdata.139566.fdata /tmp/.tmpw9OQlk/prof.fdata.139573.fdata /tmp/.tmpw9OQlk/prof.fdata.139582.fdata /tmp/.tmpw9OQlk/prof.fdata.139587.fdata /tmp/.tmpw9OQlk/prof.fdata.139592.fdata /tmp/.tmpw9OQlk/prof.fdata.139605.fdata /tmp/.tmpw9OQlk/prof.fdata.139615.fdata /tmp/.tmpw9OQlk/prof.fdata.139627.fdata /tmp/.tmpw9OQlk/prof.fdata.139639.fdata /tmp/.tmpw9OQlk/prof.fdata.139643.fdata /tmp/.tmpw9OQlk/prof.fdata.139649.fdata /tmp/.tmpw9OQlk/prof.fdata.139656.fdata /tmp/.tmpw9OQlk/prof.fdata.139667.fdata /tmp/.tmpw9OQlk/prof.fdata.139673.fdata /tmp/.tmpw9OQlk/prof.fdata.139681.fdata /tmp/.tmpw9OQlk/prof.fdata.139689.fdata /tmp/.tmpw9OQlk/prof.fdata.139694.fdata /tmp/.tmpw9OQlk/prof.fdata.139702.fdata /tmp/.tmpw9OQlk/prof.fdata.139706.fdata /tmp/.tmpw9OQlk/prof.fdata.139715.fdata /tmp/.tmpw9OQlk/prof.fdata.139716.fdata /tmp/.tmpw9OQlk/prof.fdata.139735.fdata /tmp/.tmpw9OQlk/prof.fdata.139740.fdata /tmp/.tmpw9OQlk/prof.fdata.139744.fdata /tmp/.tmpw9OQlk/prof.fdata.139749.fdata /tmp/.tmpw9OQlk/prof.fdata.139753.fdata /tmp/.tmpw9OQlk/prof.fdata.139772.fdata /tmp/.tmpw9OQlk/prof.fdata.139777.fdata /tmp/.tmpw9OQlk/prof.fdata.139788.fdata /tmp/.tmpw9OQlk/prof.fdata.139820.fdata /tmp/.tmpw9OQlk/prof.fdata.139825.fdata /tmp/.tmpw9OQlk/prof.fdata.139864.fdata /tmp/.tmpw9OQlk/prof.fdata.139870.fdata /tmp/.tmpw9OQlk/prof.fdata.139877.fdata /tmp/.tmpw9OQlk/prof.fdata.139884.fdata /tmp/.tmpw9OQlk/prof.fdata.139904.fdata /tmp/.tmpw9OQlk/prof.fdata.139922.fdata /tmp/.tmpw9OQlk/prof.fdata.139923.fdata /tmp/.tmpw9OQlk/prof.fdata.139926.fdata /tmp/.tmpw9OQlk/prof.fdata.139927.fdata /tmp/.tmpw9OQlk/prof.fdata.139932.fdata /tmp/.tmpw9OQlk/prof.fdata.139933.fdata /tmp/.tmpw9OQlk/prof.fdata.139938.fdata /tmp/.tmpw9OQlk/prof.fdata.139939.fdata /tmp/.tmpw9OQlk/prof.fdata.139946.fdata /tmp/.tmpw9OQlk/prof.fdata.139947.fdata /tmp/.tmpw9OQlk/prof.fdata.139966.fdata /tmp/.tmpw9OQlk/prof.fdata.139970.fdata /tmp/.tmpw9OQlk/prof.fdata.139985.fdata /tmp/.tmpw9OQlk/prof.fdata.140000.fdata /tmp/.tmpw9OQlk/prof.fdata.140015.fdata /tmp/.tmpw9OQlk/prof.fdata.140016.fdata /tmp/.tmpw9OQlk/prof.fdata.140019.fdata /tmp/.tmpw9OQlk/prof.fdata.140020.fdata /tmp/.tmpw9OQlk/prof.fdata.140025.fdata /tmp/.tmpw9OQlk/prof.fdata.140026.fdata /tmp/.tmpw9OQlk/prof.fdata.140031.fdata /tmp/.tmpw9OQlk/prof.fdata.140032.fdata /tmp/.tmpw9OQlk/prof.fdata.140043.fdata /tmp/.tmpw9OQlk/prof.fdata.140044.fdata /tmp/.tmpw9OQlk/prof.fdata.140045.fdata /tmp/.tmpw9OQlk/prof.fdata.140046.fdata /tmp/.tmpw9OQlk/prof.fdata.140047.fdata /tmp/.tmpw9OQlk/prof.fdata.140048.fdata /tmp/.tmpw9OQlk/prof.fdata.140102.fdata /tmp/.tmpw9OQlk/prof.fdata.140106.fdata /tmp/.tmpw9OQlk/prof.fdata.140109.fdata /tmp/.tmpw9OQlk/prof.fdata.140114.fdata /tmp/.tmpw9OQlk/prof.fdata.140117.fdata /tmp/.tmpw9OQlk/prof.fdata.140121.fdata /tmp/.tmpw9OQlk/prof.fdata.140125.fdata /tmp/.tmpw9OQlk/prof.fdata.140130.fdata /tmp/.tmpw9OQlk/prof.fdata.140186.fdata /tmp/.tmpw9OQlk/prof.fdata.140216.fdata > "/tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata" [at /checkout/obj]`
Profile from 750 files merged.
[2024-06-15T03:23:38.369Z INFO  opt_dist::training] LLVM BOLT statistics
[2024-06-15T03:23:38.369Z INFO  opt_dist::training] /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata: 146.60 MiB
##[endgroup]
---
[2024-06-15T03:26:42Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:26:42Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:26:42Z DEBUG collector::compile::execute] cd "/tmp/.tmp1MOWmA" && 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/.tmp1MOWmA#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:26:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:26:45Z DEBUG collector::compile::execute] cd "/tmp/.tmp1MOWmA" && 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/.tmp1MOWmA#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp1MOWmA/incremental-state"
[2024-06-15T03:26:47Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:26:47Z DEBUG collector::compile::execute] cd "/tmp/.tmp1MOWmA" && 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/.tmp1MOWmA#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp1MOWmA/incremental-state"
[2024-06-15T03:26:49Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmp1MOWmA"
[2024-06-15T03:26:49Z 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-15T03:26:49Z 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-15T03:26:49Z DEBUG collector::compile::execute] cd "/tmp/.tmp1MOWmA" && 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/.tmp1MOWmA#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp1MOWmA/incremental-state"
[2024-06-15T03:26:51Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:26:51Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:26:51Z DEBUG collector::compile::execute] cd "/tmp/.tmpU5dglZ" && 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/.tmpU5dglZ#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:26:53Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-06-15T03:27:00Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:27:00Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:27:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpyXYIHU" && 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/.tmpyXYIHU#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:27:03Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:27:03Z DEBUG collector::compile::execute] cd "/tmp/.tmpyXYIHU" && 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/.tmpyXYIHU#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpyXYIHU/incremental-state"
[2024-06-15T03:27:06Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:27:06Z DEBUG collector::compile::execute] cd "/tmp/.tmpyXYIHU" && 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/.tmpyXYIHU#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpyXYIHU/incremental-state"
[2024-06-15T03:27:07Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpyXYIHU"
[2024-06-15T03:27:07Z 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-15T03:27:07Z 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-15T03:27:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpyXYIHU" && 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/.tmpyXYIHU#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpyXYIHU/incremental-state"
Executing benchmark cargo-0.60.0 (2/8)
Preparing cargo-0.60.0
[2024-06-15T03:27:10Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:27:10Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-06-15T03:30:06Z DEBUG collector::compile::execute] cd "/tmp/.tmpBeP7e2" && 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/.tmpBeP7e2#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpBeP7e2/incremental-state"
Running cargo-0.60.0: Opt + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2024-06-15T03:30:13Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:30:13Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:30:13Z DEBUG collector::compile::execute] cd "/tmp/.tmptwQyzv" && 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/.tmptwQyzv#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:30:40Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:30:40Z DEBUG collector::compile::execute] cd "/tmp/.tmptwQyzv" && 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/.tmptwQyzv#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmptwQyzv/incremental-state"
[2024-06-15T03:31:07Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:31:07Z DEBUG collector::compile::execute] cd "/tmp/.tmptwQyzv" && 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/.tmptwQyzv#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmptwQyzv/incremental-state"
[2024-06-15T03:31:12Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmptwQyzv"
[2024-06-15T03:31:12Z 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-15T03:31:12Z 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-15T03:31:12Z DEBUG collector::compile::execute] cd "/tmp/.tmptwQyzv" && 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/.tmptwQyzv#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmptwQyzv/incremental-state"
Executing benchmark ctfe-stress-5 (3/8)
Preparing ctfe-stress-5
[2024-06-15T03:31:20Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:31:20Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:31:20Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:31:20Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:31:20Z DEBUG collector::compile::execute] cd "/tmp/.tmpJjW6GN" && 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/.tmpJjW6GN#ctfe-stress-5@0.1.0" "--" "--skip-this-rustc"
[2024-06-15T03:31:20Z DEBUG collector::compile::execute] cd "/tmp/.tmp6daDMA" && 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/.tmp6daDMA#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2024-06-15T03:31:20Z DEBUG collector::compile::execute] cd "/tmp/.tmpcDArOJ" && 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/.tmpcDArOJ#ctfe-stress-5@0.1.0" "--release" "--" "--skip-this-rustc"
[2024-06-15T03:31:21Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:31:21Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:31:21Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:31:21Z DEBUG collector::compile::execute] cd "/tmp/.tmpWIbQoW" && 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/.tmpWIbQoW#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:31:25Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:31:25Z DEBUG collector::compile::execute] cd "/tmp/.tmpWIbQoW" && 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/.tmpWIbQoW#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpWIbQoW/incremental-state"
[2024-06-15T03:31:30Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:31:30Z DEBUG collector::compile::execute] cd "/tmp/.tmpWIbQoW" && 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/.tmpWIbQoW#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpWIbQoW/incremental-state"
[2024-06-15T03:31:31Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:31:31Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:31:31Z DEBUG collector::compile::execute] cd "/tmp/.tmp9UhUoG" && 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/.tmp9UhUoG#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:31:36Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-06-15T03:31:42Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:31:42Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:31:42Z DEBUG collector::compile::execute] cd "/tmp/.tmp1dGfPL" && 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/.tmp1dGfPL#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:31:47Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:31:47Z DEBUG collector::compile::execute] cd "/tmp/.tmp1dGfPL" && 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/.tmp1dGfPL#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp1dGfPL/incremental-state"
[2024-06-15T03:31:52Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:31:52Z DEBUG collector::compile::execute] cd "/tmp/.tmp1dGfPL" && 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/.tmp1dGfPL#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp1dGfPL/incremental-state"
Executing benchmark diesel-1.4.8 (4/8)
Preparing diesel-1.4.8
[2024-06-15T03:31:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:31:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-06-15T03:32:24Z DEBUG collector::compile::execute] cd "/tmp/.tmpi3au1E" && 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/.tmpi3au1E#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpi3au1E/incremental-state"
Running diesel-1.4.8: Debug + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2024-06-15T03:32:28Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:32:28Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:32:28Z DEBUG collector::compile::execute] cd "/tmp/.tmpJmCao2" && 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/.tmpJmCao2#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:32:35Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:32:35Z DEBUG collector::compile::execute] cd "/tmp/.tmpJmCao2" && 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/.tmpJmCao2#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpJmCao2/incremental-state"
[2024-06-15T03:32:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:32:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpJmCao2" && 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/.tmpJmCao2#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpJmCao2/incremental-state"
[2024-06-15T03:32:48Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpJmCao2"
[2024-06-15T03:32:48Z 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-15T03:32:48Z 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-15T03:32:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpJmCao2" && 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/.tmpJmCao2#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpJmCao2/incremental-state"
[2024-06-15T03:32:52Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:32:52Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:32:52Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:32:52Z DEBUG collector::compile::execute] cd "/tmp/.tmpcdqXql" && 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/.tmpcdqXql#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:33:00Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpcdqXql" && 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/.tmpcdqXql#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpcdqXql/incremental-state"
[2024-06-15T03:33:09Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:09Z DEBUG collector::compile::execute] cd "/tmp/.tmpcdqXql" && 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/.tmpcdqXql#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpcdqXql/incremental-state"
[2024-06-15T03:33:13Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpcdqXql"
[2024-06-15T03:33:13Z 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-15T03:33:13Z 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-15T03:33:13Z DEBUG collector::compile::execute] cd "/tmp/.tmpcdqXql" && 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/.tmpcdqXql#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpcdqXql/incremental-state"
Executing benchmark externs (5/8)
Preparing externs
[2024-06-15T03:33:17Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:33:17Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-06-15T03:33:27Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:33:27Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:27Z DEBUG collector::compile::execute] cd "/tmp/.tmpGynNXc" && 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/.tmpGynNXc#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:33:30Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:30Z DEBUG collector::compile::execute] cd "/tmp/.tmpGynNXc" && 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/.tmpGynNXc#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpGynNXc/incremental-state"
[2024-06-15T03:33:32Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:32Z DEBUG collector::compile::execute] cd "/tmp/.tmpGynNXc" && 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/.tmpGynNXc#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpGynNXc/incremental-state"
[2024-06-15T03:33:34Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:33:34Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpfUcNdh" && 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/.tmpfUcNdh#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:33:36Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:36Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:36Z DEBUG collector::compile::execute] cd "/tmp/.tmpfUcNdh" && 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/.tmpfUcNdh#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfUcNdh/incremental-state"
[2024-06-15T03:33:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpfUcNdh" && 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/.tmpfUcNdh#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfUcNdh/incremental-state"
[2024-06-15T03:33:41Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:33:41Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:41Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:41Z DEBUG collector::compile::execute] cd "/tmp/.tmpXVpNGE" && 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/.tmpXVpNGE#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:33:43Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpXVpNGE" && 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/.tmpXVpNGE#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpXVpNGE/incremental-state"
[2024-06-15T03:33:46Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:46Z DEBUG collector::compile::execute] cd "/tmp/.tmpXVpNGE" && 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/.tmpXVpNGE#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpXVpNGE/incremental-state"
Executing benchmark token-stream-stress (7/8)
Preparing token-stream-stress
[2024-06-15T03:33:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:33:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:33:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:33:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:33:48Z DEBUG collector::compile::execute] cd "/tmp/.tmp9isjuZ" && 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/.tmp9isjuZ#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2024-06-15T03:33:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpMlbEiR" && 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/.tmpMlbEiR#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2024-06-15T03:33:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpE2Mmfj" && 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/.tmpE2Mmfj#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
Running token-stream-stress: Check + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2024-06-15T03:33:51Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:33:51Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:51Z DEBUG collector::compile::execute] cd "/tmp/.tmpXLKsCy" && 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/.tmpXLKsCy#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:33:51Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:51Z DEBUG collector::compile::execute] cd "/tmp/.tmpXLKsCy" && 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/.tmpXLKsCy#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpXLKsCy/incremental-state"
[2024-06-15T03:33:52Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:52Z DEBUG collector::compile::execute] cd "/tmp/.tmpXLKsCy" && 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/.tmpXLKsCy#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpXLKsCy/incremental-state"
[2024-06-15T03:33:53Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:33:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:33:53Z DEBUG collector::compile::execute] cd "/tmp/.tmpMdpuS4" && 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/.tmpMdpuS4#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:33:54Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
Preparing tuple-stress
[2024-06-15T03:34:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:34:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:34:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-06-15T03:34:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpBfG2Sb" && 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/.tmpBfG2Sb#tuple-stress@0.1.0" "--release" "--" "--skip-this-rustc"
[2024-06-15T03:34:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpQmvwoh" && 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/.tmpQmvwoh#tuple-stress@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2024-06-15T03:34:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpSLX3vZ" && 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/.tmpSLX3vZ#tuple-stress@0.1.0" "--" "--skip-this-rustc"
[2024-06-15T03:34:01Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:34:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:34:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:34:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpMAQvIo" && 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/.tmpMAQvIo#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:34:04Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:34:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpMAQvIo" && 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/.tmpMAQvIo#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpMAQvIo/incremental-state"
[2024-06-15T03:34:08Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:34:08Z DEBUG collector::compile::execute] cd "/tmp/.tmpMAQvIo" && 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/.tmpMAQvIo#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpMAQvIo/incremental-state"
[2024-06-15T03:34:09Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpMAQvIo"
[2024-06-15T03:34:09Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-06-15T03:34:09Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-06-15T03:34:09Z DEBUG collector::compile::execute] cd "/tmp/.tmpMAQvIo" && 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/.tmpMAQvIo#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpMAQvIo/incremental-state"
[2024-06-15T03:34:12Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:34:12Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:34:12Z DEBUG collector::compile::execute] cd "/tmp/.tmp7yR9oW" && 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/.tmp7yR9oW#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:34:16Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-06-15T03:34:25Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-06-15T03:34:25Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:34:25Z DEBUG collector::compile::execute] cd "/tmp/.tmpbdEsvw" && 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/.tmpbdEsvw#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-06-15T03:34:28Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:34:28Z DEBUG collector::compile::execute] cd "/tmp/.tmpbdEsvw" && 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/.tmpbdEsvw#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpbdEsvw/incremental-state"
[2024-06-15T03:34:31Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-06-15T03:34:32Z DEBUG collector::compile::execute] cd "/tmp/.tmpbdEsvw" && 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/.tmpbdEsvw#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpbdEsvw/incremental-state"
[2024-06-15T03:34:33Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpbdEsvw"
[2024-06-15T03:34:33Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-06-15T03:34:33Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-06-15T03:34:33Z DEBUG collector::compile::execute] cd "/tmp/.tmpbdEsvw" && 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/.tmpbdEsvw#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpbdEsvw/incremental-state"
##[endgroup]
[2024-06-15T03:34:37.389Z INFO  opt_dist::training] Merging rustc BOLT profiles from /tmp/.tmpoZ1p8T/prof.fdata to /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata
##[group]Merging BOLT profiles
##[group]Merging BOLT profiles
[2024-06-15T03:34:37.390Z INFO  opt_dist::exec] Executing `merge-fdata /tmp/.tmpoZ1p8T/prof.fdata.140309.fdata /tmp/.tmpoZ1p8T/prof.fdata.140324.fdata /tmp/.tmpoZ1p8T/prof.fdata.140325.fdata /tmp/.tmpoZ1p8T/prof.fdata.140326.fdata /tmp/.tmpoZ1p8T/prof.fdata.140330.fdata /tmp/.tmpoZ1p8T/prof.fdata.140331.fdata /tmp/.tmpoZ1p8T/prof.fdata.140332.fdata /tmp/.tmpoZ1p8T/prof.fdata.140339.fdata /tmp/.tmpoZ1p8T/prof.fdata.140340.fdata /tmp/.tmpoZ1p8T/prof.fdata.140341.fdata /tmp/.tmpoZ1p8T/prof.fdata.140348.fdata /tmp/.tmpoZ1p8T/prof.fdata.140349.fdata /tmp/.tmpoZ1p8T/prof.fdata.140350.fdata /tmp/.tmpoZ1p8T/prof.fdata.140369.fdata /tmp/.tmpoZ1p8T/prof.fdata.140379.fdata /tmp/.tmpoZ1p8T/prof.fdata.140389.fdata /tmp/.tmpoZ1p8T/prof.fdata.140400.fdata /tmp/.tmpoZ1p8T/prof.fdata.140411.fdata /tmp/.tmpoZ1p8T/prof.fdata.140422.fdata /tmp/.tmpoZ1p8T/prof.fdata.140465.fdata /tmp/.tmpoZ1p8T/prof.fdata.140509.fdata /tmp/.tmpoZ1p8T/prof.fdata.140553.fdata /tmp/.tmpoZ1p8T/prof.fdata.140567.fdata /tmp/.tmpoZ1p8T/prof.fdata.140591.fdata /tmp/.tmpoZ1p8T/prof.fdata.140609.fdata /tmp/.tmpoZ1p8T/prof.fdata.140633.fdata /tmp/.tmpoZ1p8T/prof.fdata.140634.fdata /tmp/.tmpoZ1p8T/prof.fdata.140635.fdata /tmp/.tmpoZ1p8T/prof.fdata.140639.fdata /tmp/.tmpoZ1p8T/prof.fdata.140640.fdata /tmp/.tmpoZ1p8T/prof.fdata.140641.fdata /tmp/.tmpoZ1p8T/prof.fdata.140648.fdata /tmp/.tmpoZ1p8T/prof.fdata.140649.fdata /tmp/.tmpoZ1p8T/prof.fdata.140650.fdata /tmp/.tmpoZ1p8T/prof.fdata.140657.fdata /tmp/.tmpoZ1p8T/prof.fdata.140658.fdata /tmp/.tmpoZ1p8T/prof.fdata.140659.fdata /tmp/.tmpoZ1p8T/prof.fdata.140670.fdata /tmp/.tmpoZ1p8T/prof.fdata.140672.fdata /tmp/.tmpoZ1p8T/prof.fdata.140674.fdata /tmp/.tmpoZ1p8T/prof.fdata.140675.fdata /tmp/.tmpoZ1p8T/prof.fdata.140677.fdata /tmp/.tmpoZ1p8T/prof.fdata.140680.fdata /tmp/.tmpoZ1p8T/prof.fdata.140681.fdata /tmp/.tmpoZ1p8T/prof.fdata.140682.fdata /tmp/.tmpoZ1p8T/prof.fdata.140685.fdata /tmp/.tmpoZ1p8T/prof.fdata.140687.fdata /tmp/.tmpoZ1p8T/prof.fdata.140691.fdata /tmp/.tmpoZ1p8T/prof.fdata.140692.fdata /tmp/.tmpoZ1p8T/prof.fdata.140694.fdata /tmp/.tmpoZ1p8T/prof.fdata.140695.fdata /tmp/.tmpoZ1p8T/prof.fdata.140696.fdata /tmp/.tmpoZ1p8T/prof.fdata.140697.fdata /tmp/.tmpoZ1p8T/prof.fdata.140702.fdata /tmp/.tmpoZ1p8T/prof.fdata.140713.fdata /tmp/.tmpoZ1p8T/prof.fdata.140725.fdata /tmp/.tmpoZ1p8T/prof.fdata.140849.fdata /tmp/.tmpoZ1p8T/prof.fdata.140853.fdata /tmp/.tmpoZ1p8T/prof.fdata.140857.fdata /tmp/.tmpoZ1p8T/prof.fdata.140861.fdata /tmp/.tmpoZ1p8T/prof.fdata.140888.fdata /tmp/.tmpoZ1p8T/prof.fdata.140890.fdata /tmp/.tmpoZ1p8T/prof.fdata.140901.fdata /tmp/.tmpoZ1p8T/prof.fdata.140903.fdata /tmp/.tmpoZ1p8T/prof.fdata.140912.fdata /tmp/.tmpoZ1p8T/prof.fdata.140917.fdata /tmp/.tmpoZ1p8T/prof.fdata.140923.fdata /tmp/.tmpoZ1p8T/prof.fdata.140929.fdata /tmp/.tmpoZ1p8T/prof.fdata.140932.fdata /tmp/.tmpoZ1p8T/prof.fdata.140936.fdata /tmp/.tmpoZ1p8T/prof.fdata.140941.fdata /tmp/.tmpoZ1p8T/prof.fdata.140946.fdata /tmp/.tmpoZ1p8T/prof.fdata.140952.fdata /tmp/.tmpoZ1p8T/prof.fdata.140961.fdata /tmp/.tmpoZ1p8T/prof.fdata.140962.fdata /tmp/.tmpoZ1p8T/prof.fdata.140969.fdata /tmp/.tmpoZ1p8T/prof.fdata.140980.fdata /tmp/.tmpoZ1p8T/prof.fdata.140985.fdata /tmp/.tmpoZ1p8T/prof.fdata.140992.fdata /tmp/.tmpoZ1p8T/prof.fdata.140998.fdata /tmp/.tmpoZ1p8T/prof.fdata.141002.fdata /tmp/.tmpoZ1p8T/prof.fdata.141008.fdata /tmp/.tmpoZ1p8T/prof.fdata.141015.fdata /tmp/.tmpoZ1p8T/prof.fdata.141045.fdata /tmp/.tmpoZ1p8T/prof.fdata.141064.fdata /tmp/.tmpoZ1p8T/prof.fdata.141073.fdata /tmp/.tmpoZ1p8T/prof.fdata.141083.fdata /tmp/.tmpoZ1p8T/prof.fdata.141088.fdata /tmp/.tmpoZ1p8T/prof.fdata.141105.fdata /tmp/.tmpoZ1p8T/prof.fdata.141106.fdata /tmp/.tmpoZ1p8T/prof.fdata.141130.fdata /tmp/.tmpoZ1p8T/prof.fdata.141140.fdata /tmp/.tmpoZ1p8T/prof.fdata.141154.fdata /tmp/.tmpoZ1p8T/prof.fdata.141160.fdata /tmp/.tmpoZ1p8T/prof.fdata.141169.fdata /tmp/.tmpoZ1p8T/prof.fdata.141173.fdata /tmp/.tmpoZ1p8T/prof.fdata.141188.fdata /tmp/.tmpoZ1p8T/prof.fdata.141193.fdata /tmp/.tmpoZ1p8T/prof.fdata.141196.fdata /tmp/.tmpoZ1p8T/prof.fdata.141200.fdata /tmp/.tmpoZ1p8T/prof.fdata.141209.fdata /tmp/.tmpoZ1p8T/prof.fdata.141212.fdata /tmp/.tmpoZ1p8T/prof.fdata.141223.fdata /tmp/.tmpoZ1p8T/prof.fdata.141243.fdata /tmp/.tmpoZ1p8T/prof.fdata.141249.fdata /tmp/.tmpoZ1p8T/prof.fdata.141253.fdata /tmp/.tmpoZ1p8T/prof.fdata.141261.fdata /tmp/.tmpoZ1p8T/prof.fdata.141278.fdata /tmp/.tmpoZ1p8T/prof.fdata.141302.fdata /tmp/.tmpoZ1p8T/prof.fdata.141309.fdata /tmp/.tmpoZ1p8T/prof.fdata.141330.fdata /tmp/.tmpoZ1p8T/prof.fdata.141338.fdata /tmp/.tmpoZ1p8T/prof.fdata.141349.fdata /tmp/.tmpoZ1p8T/prof.fdata.141364.fdata /tmp/.tmpoZ1p8T/prof.fdata.141376.fdata /tmp/.tmpoZ1p8T/prof.fdata.141389.fdata /tmp/.tmpoZ1p8T/prof.fdata.141393.fdata /tmp/.tmpoZ1p8T/prof.fdata.141399.fdata /tmp/.tmpoZ1p8T/prof.fdata.141408.fdata /tmp/.tmpoZ1p8T/prof.fdata.141412.fdata /tmp/.tmpoZ1p8T/prof.fdata.141426.fdata /tmp/.tmpoZ1p8T/prof.fdata.141442.fdata /tmp/.tmpoZ1p8T/prof.fdata.141449.fdata /tmp/.tmpoZ1p8T/prof.fdata.141471.fdata /tmp/.tmpoZ1p8T/prof.fdata.141484.fdata /tmp/.tmpoZ1p8T/prof.fdata.141494.fdata /tmp/.tmpoZ1p8T/prof.fdata.141518.fdata /tmp/.tmpoZ1p8T/prof.fdata.141524.fdata /tmp/.tmpoZ1p8T/prof.fdata.141538.fdata /tmp/.tmpoZ1p8T/prof.fdata.141547.fdata /tmp/.tmpoZ1p8T/prof.fdata.141551.fdata /tmp/.tmpoZ1p8T/prof.fdata.141557.fdata /tmp/.tmpoZ1p8T/prof.fdata.141564.fdata /tmp/.tmpoZ1p8T/prof.fdata.141572.fdata /tmp/.tmpoZ1p8T/prof.fdata.141576.fdata /tmp/.tmpoZ1p8T/prof.fdata.141603.fdata /tmp/.tmpoZ1p8T/prof.fdata.141633.fdata /tmp/.tmpoZ1p8T/prof.fdata.141663.fdata /tmp/.tmpoZ1p8T/prof.fdata.141757.fdata /tmp/.tmpoZ1p8T/prof.fdata.141773.fdata /tmp/.tmpoZ1p8T/prof.fdata.141784.fdata /tmp/.tmpoZ1p8T/prof.fdata.141887.fdata /tmp/.tmpoZ1p8T/prof.fdata.142041.fdata /tmp/.tmpoZ1p8T/prof.fdata.142258.fdata /tmp/.tmpoZ1p8T/prof.fdata.142284.fdata /tmp/.tmpoZ1p8T/prof.fdata.142341.fdata /tmp/.tmpoZ1p8T/prof.fdata.142376.fdata /tmp/.tmpoZ1p8T/prof.fdata.142403.fdata /tmp/.tmpoZ1p8T/prof.fdata.142480.fdata /tmp/.tmpoZ1p8T/prof.fdata.142712.fdata /tmp/.tmpoZ1p8T/prof.fdata.142727.fdata /tmp/.tmpoZ1p8T/prof.fdata.142750.fdata /tmp/.tmpoZ1p8T/prof.fdata.142756.fdata /tmp/.tmpoZ1p8T/prof.fdata.142759.fdata /tmp/.tmpoZ1p8T/prof.fdata.142764.fdata /tmp/.tmpoZ1p8T/prof.fdata.142772.fdata /tmp/.tmpoZ1p8T/prof.fdata.142776.fdata /tmp/.tmpoZ1p8T/prof.fdata.142782.fdata /tmp/.tmpoZ1p8T/prof.fdata.142790.fdata /tmp/.tmpoZ1p8T/prof.fdata.142814.fdata /tmp/.tmpoZ1p8T/prof.fdata.142818.fdata /tmp/.tmpoZ1p8T/prof.fdata.142823.fdata /tmp/.tmpoZ1p8T/prof.fdata.142843.fdata /tmp/.tmpoZ1p8T/prof.fdata.142847.fdata /tmp/.tmpoZ1p8T/prof.fdata.142860.fdata /tmp/.tmpoZ1p8T/prof.fdata.142866.fdata /tmp/.tmpoZ1p8T/prof.fdata.142872.fdata /tmp/.tmpoZ1p8T/prof.fdata.142885.fdata /tmp/.tmpoZ1p8T/prof.fdata.142893.fdata /tmp/.tmpoZ1p8T/prof.fdata.142905.fdata /tmp/.tmpoZ1p8T/prof.fdata.142910.fdata /tmp/.tmpoZ1p8T/prof.fdata.142918.fdata /tmp/.tmpoZ1p8T/prof.fdata.142922.fdata /tmp/.tmpoZ1p8T/prof.fdata.142930.fdata /tmp/.tmpoZ1p8T/prof.fdata.142934.fdata /tmp/.tmpoZ1p8T/prof.fdata.142941.fdata /tmp/.tmpoZ1p8T/prof.fdata.142955.fdata /tmp/.tmpoZ1p8T/prof.fdata.142958.fdata /tmp/.tmpoZ1p8T/prof.fdata.142962.fdata /tmp/.tmpoZ1p8T/prof.fdata.142964.fdata /tmp/.tmpoZ1p8T/prof.fdata.142973.fdata /tmp/.tmpoZ1p8T/prof.fdata.143008.fdata /tmp/.tmpoZ1p8T/prof.fdata.143010.fdata /tmp/.tmpoZ1p8T/prof.fdata.143016.fdata /tmp/.tmpoZ1p8T/prof.fdata.143034.fdata /tmp/.tmpoZ1p8T/prof.fdata.143052.fdata /tmp/.tmpoZ1p8T/prof.fdata.143062.fdata /tmp/.tmpoZ1p8T/prof.fdata.143077.fdata /tmp/.tmpoZ1p8T/prof.fdata.143091.fdata /tmp/.tmpoZ1p8T/prof.fdata.143097.fdata /tmp/.tmpoZ1p8T/prof.fdata.143111.fdata /tmp/.tmpoZ1p8T/prof.fdata.143119.fdata /tmp/.tmpoZ1p8T/prof.fdata.143123.fdata /tmp/.tmpoZ1p8T/prof.fdata.143143.fdata /tmp/.tmpoZ1p8T/prof.fdata.143160.fdata /tmp/.tmpoZ1p8T/prof.fdata.143165.fdata /tmp/.tmpoZ1p8T/prof.fdata.143169.fdata /tmp/.tmpoZ1p8T/prof.fdata.143175.fdata /tmp/.tmpoZ1p8T/prof.fdata.143179.fdata /tmp/.tmpoZ1p8T/prof.fdata.143185.fdata /tmp/.tmpoZ1p8T/prof.fdata.143206.fdata /tmp/.tmpoZ1p8T/prof.fdata.143215.fdata /tmp/.tmpoZ1p8T/prof.fdata.143217.fdata /tmp/.tmpoZ1p8T/prof.fdata.143223.fdata /tmp/.tmpoZ1p8T/prof.fdata.143240.fdata /tmp/.tmpoZ1p8T/prof.fdata.143262.fdata /tmp/.tmpoZ1p8T/prof.fdata.143266.fdata /tmp/.tmpoZ1p8T/prof.fdata.143288.fdata /tmp/.tmpoZ1p8T/prof.fdata.143294.fdata /tmp/.tmpoZ1p8T/prof.fdata.143304.fdata /tmp/.tmpoZ1p8T/prof.fdata.143313.fdata /tmp/.tmpoZ1p8T/prof.fdata.143322.fdata /tmp/.tmpoZ1p8T/prof.fdata.143323.fdata /tmp/.tmpoZ1p8T/prof.fdata.143339.fdata /tmp/.tmpoZ1p8T/prof.fdata.143351.fdata /tmp/.tmpoZ1p8T/prof.fdata.143372.fdata /tmp/.tmpoZ1p8T/prof.fdata.143374.fdata /tmp/.tmpoZ1p8T/prof.fdata.143382.fdata /tmp/.tmpoZ1p8T/prof.fdata.143401.fdata /tmp/.tmpoZ1p8T/prof.fdata.143414.fdata /tmp/.tmpoZ1p8T/prof.fdata.143423.fdata /tmp/.tmpoZ1p8T/prof.fdata.143430.fdata /tmp/.tmpoZ1p8T/prof.fdata.143436.fdata /tmp/.tmpoZ1p8T/prof.fdata.143442.fdata /tmp/.tmpoZ1p8T/prof.fdata.143464.fdata /tmp/.tmpoZ1p8T/prof.fdata.143466.fdata /tmp/.tmpoZ1p8T/prof.fdata.143491.fdata /tmp/.tmpoZ1p8T/prof.fdata.143494.fdata /tmp/.tmpoZ1p8T/prof.fdata.143502.fdata /tmp/.tmpoZ1p8T/prof.fdata.143514.fdata /tmp/.tmpoZ1p8T/prof.fdata.143523.fdata /tmp/.tmpoZ1p8T/prof.fdata.143532.fdata /tmp/.tmpoZ1p8T/prof.fdata.143539.fdata /tmp/.tmpoZ1p8T/prof.fdata.143540.fdata /tmp/.tmpoZ1p8T/prof.fdata.143542.fdata /tmp/.tmpoZ1p8T/prof.fdata.143561.fdata /tmp/.tmpoZ1p8T/prof.fdata.143569.fdata /tmp/.tmpoZ1p8T/prof.fdata.143572.fdata /tmp/.tmpoZ1p8T/prof.fdata.143582.fdata /tmp/.tmpoZ1p8T/prof.fdata.143584.fdata /tmp/.tmpoZ1p8T/prof.fdata.143591.fdata /tmp/.tmpoZ1p8T/prof.fdata.143604.fdata /tmp/.tmpoZ1p8T/prof.fdata.143608.fdata /tmp/.tmpoZ1p8T/prof.fdata.143612.fdata /tmp/.tmpoZ1p8T/prof.fdata.143622.fdata /tmp/.tmpoZ1p8T/prof.fdata.143631.fdata /tmp/.tmpoZ1p8T/prof.fdata.143637.fdata /tmp/.tmpoZ1p8T/prof.fdata.143648.fdata /tmp/.tmpoZ1p8T/prof.fdata.143649.fdata /tmp/.tmpoZ1p8T/prof.fdata.143656.fdata /tmp/.tmpoZ1p8T/prof.fdata.143664.fdata /tmp/.tmpoZ1p8T/prof.fdata.143683.fdata /tmp/.tmpoZ1p8T/prof.fdata.143766.fdata /tmp/.tmpoZ1p8T/prof.fdata.143775.fdata /tmp/.tmpoZ1p8T/prof.fdata.143783.fdata /tmp/.tmpoZ1p8T/prof.fdata.143796.fdata /tmp/.tmpoZ1p8T/prof.fdata.143800.fdata /tmp/.tmpoZ1p8T/prof.fdata.143879.fdata /tmp/.tmpoZ1p8T/prof.fdata.143892.fdata /tmp/.tmpoZ1p8T/prof.fdata.143894.fdata /tmp/.tmpoZ1p8T/prof.fdata.143907.fdata /tmp/.tmpoZ1p8T/prof.fdata.143932.fdata /tmp/.tmpoZ1p8T/prof.fdata.144008.fdata /tmp/.tmpoZ1p8T/prof.fdata.144044.fdata /tmp/.tmpoZ1p8T/prof.fdata.144209.fdata /tmp/.tmpoZ1p8T/prof.fdata.144263.fdata /tmp/.tmpoZ1p8T/prof.fdata.144305.fdata /tmp/.tmpoZ1p8T/prof.fdata.144394.fdata /tmp/.tmpoZ1p8T/prof.fdata.144413.fdata /tmp/.tmpoZ1p8T/prof.fdata.144415.fdata /tmp/.tmpoZ1p8T/prof.fdata.144542.fdata /tmp/.tmpoZ1p8T/prof.fdata.144583.fdata /tmp/.tmpoZ1p8T/prof.fdata.144584.fdata /tmp/.tmpoZ1p8T/prof.fdata.144669.fdata /tmp/.tmpoZ1p8T/prof.fdata.144725.fdata /tmp/.tmpoZ1p8T/prof.fdata.144733.fdata /tmp/.tmpoZ1p8T/prof.fdata.144744.fdata /tmp/.tmpoZ1p8T/prof.fdata.144751.fdata /tmp/.tmpoZ1p8T/prof.fdata.144759.fdata /tmp/.tmpoZ1p8T/prof.fdata.144765.fdata /tmp/.tmpoZ1p8T/prof.fdata.144857.fdata /tmp/.tmpoZ1p8T/prof.fdata.145033.fdata /tmp/.tmpoZ1p8T/prof.fdata.145034.fdata /tmp/.tmpoZ1p8T/prof.fdata.145057.fdata /tmp/.tmpoZ1p8T/prof.fdata.145096.fdata /tmp/.tmpoZ1p8T/prof.fdata.145220.fdata /tmp/.tmpoZ1p8T/prof.fdata.145243.fdata /tmp/.tmpoZ1p8T/prof.fdata.145456.fdata /tmp/.tmpoZ1p8T/prof.fdata.145531.fdata /tmp/.tmpoZ1p8T/prof.fdata.145580.fdata /tmp/.tmpoZ1p8T/prof.fdata.145584.fdata /tmp/.tmpoZ1p8T/prof.fdata.145619.fdata /tmp/.tmpoZ1p8T/prof.fdata.145739.fdata /tmp/.tmpoZ1p8T/prof.fdata.145765.fdata /tmp/.tmpoZ1p8T/prof.fdata.145829.fdata /tmp/.tmpoZ1p8T/prof.fdata.145868.fdata /tmp/.tmpoZ1p8T/prof.fdata.145916.fdata /tmp/.tmpoZ1p8T/prof.fdata.145933.fdata /tmp/.tmpoZ1p8T/prof.fdata.146012.fdata /tmp/.tmpoZ1p8T/prof.fdata.146120.fdata /tmp/.tmpoZ1p8T/prof.fdata.146136.fdata /tmp/.tmpoZ1p8T/prof.fdata.146138.fdata /tmp/.tmpoZ1p8T/prof.fdata.146152.fdata /tmp/.tmpoZ1p8T/prof.fdata.146171.fdata /tmp/.tmpoZ1p8T/prof.fdata.146172.fdata /tmp/.tmpoZ1p8T/prof.fdata.146174.fdata /tmp/.tmpoZ1p8T/prof.fdata.146190.fdata /tmp/.tmpoZ1p8T/prof.fdata.146196.fdata /tmp/.tmpoZ1p8T/prof.fdata.146207.fdata /tmp/.tmpoZ1p8T/prof.fdata.146225.fdata /tmp/.tmpoZ1p8T/prof.fdata.146239.fdata /tmp/.tmpoZ1p8T/prof.fdata.146243.fdata /tmp/.tmpoZ1p8T/prof.fdata.146252.fdata /tmp/.tmpoZ1p8T/prof.fdata.146259.fdata /tmp/.tmpoZ1p8T/prof.fdata.146266.fdata /tmp/.tmpoZ1p8T/prof.fdata.146278.fdata /tmp/.tmpoZ1p8T/prof.fdata.146285.fdata /tmp/.tmpoZ1p8T/prof.fdata.146297.fdata /tmp/.tmpoZ1p8T/prof.fdata.146302.fdata /tmp/.tmpoZ1p8T/prof.fdata.146308.fdata /tmp/.tmpoZ1p8T/prof.fdata.146312.fdata /tmp/.tmpoZ1p8T/prof.fdata.146319.fdata /tmp/.tmpoZ1p8T/prof.fdata.146328.fdata /tmp/.tmpoZ1p8T/prof.fdata.146344.fdata /tmp/.tmpoZ1p8T/prof.fdata.146345.fdata /tmp/.tmpoZ1p8T/prof.fdata.146351.fdata /tmp/.tmpoZ1p8T/prof.fdata.146354.fdata /tmp/.tmpoZ1p8T/prof.fdata.146366.fdata /tmp/.tmpoZ1p8T/prof.fdata.146373.fdata /tmp/.tmpoZ1p8T/prof.fdata.146378.fdata /tmp/.tmpoZ1p8T/prof.fdata.146381.fdata /tmp/.tmpoZ1p8T/prof.fdata.146395.fdata /tmp/.tmpoZ1p8T/prof.fdata.146403.fdata /tmp/.tmpoZ1p8T/prof.fdata.146409.fdata /tmp/.tmpoZ1p8T/prof.fdata.146416.fdata /tmp/.tmpoZ1p8T/prof.fdata.146436.fdata /tmp/.tmpoZ1p8T/prof.fdata.146442.fdata /tmp/.tmpoZ1p8T/prof.fdata.146447.fdata /tmp/.tmpoZ1p8T/prof.fdata.146451.fdata /tmp/.tmpoZ1p8T/prof.fdata.146457.fdata /tmp/.tmpoZ1p8T/prof.fdata.146480.fdata /tmp/.tmpoZ1p8T/prof.fdata.146486.fdata /tmp/.tmpoZ1p8T/prof.fdata.146496.fdata /tmp/.tmpoZ1p8T/prof.fdata.146503.fdata /tmp/.tmpoZ1p8T/prof.fdata.146516.fdata /tmp/.tmpoZ1p8T/prof.fdata.146523.fdata /tmp/.tmpoZ1p8T/prof.fdata.146533.fdata /tmp/.tmpoZ1p8T/prof.fdata.146539.fdata /tmp/.tmpoZ1p8T/prof.fdata.146551.fdata /tmp/.tmpoZ1p8T/prof.fdata.146567.fdata /tmp/.tmpoZ1p8T/prof.fdata.146574.fdata /tmp/.tmpoZ1p8T/prof.fdata.146590.fdata /tmp/.tmpoZ1p8T/prof.fdata.146599.fdata /tmp/.tmpoZ1p8T/prof.fdata.146619.fdata /tmp/.tmpoZ1p8T/prof.fdata.146627.fdata /tmp/.tmpoZ1p8T/prof.fdata.146649.fdata /tmp/.tmpoZ1p8T/prof.fdata.146653.fdata /tmp/.tmpoZ1p8T/prof.fdata.146659.fdata /tmp/.tmpoZ1p8T/prof.fdata.146660.fdata /tmp/.tmpoZ1p8T/prof.fdata.146679.fdata /tmp/.tmpoZ1p8T/prof.fdata.146685.fdata /tmp/.tmpoZ1p8T/prof.fdata.146703.fdata /tmp/.tmpoZ1p8T/prof.fdata.146711.fdata /tmp/.tmpoZ1p8T/prof.fdata.146726.fdata /tmp/.tmpoZ1p8T/prof.fdata.146730.fdata /tmp/.tmpoZ1p8T/prof.fdata.146735.fdata /tmp/.tmpoZ1p8T/prof.fdata.146741.fdata /tmp/.tmpoZ1p8T/prof.fdata.146752.fdata /tmp/.tmpoZ1p8T/prof.fdata.146762.fdata /tmp/.tmpoZ1p8T/prof.fdata.146771.fdata /tmp/.tmpoZ1p8T/prof.fdata.146790.fdata /tmp/.tmpoZ1p8T/prof.fdata.146805.fdata /tmp/.tmpoZ1p8T/prof.fdata.146810.fdata /tmp/.tmpoZ1p8T/prof.fdata.146824.fdata /tmp/.tmpoZ1p8T/prof.fdata.146827.fdata /tmp/.tmpoZ1p8T/prof.fdata.146833.fdata /tmp/.tmpoZ1p8T/prof.fdata.146859.fdata /tmp/.tmpoZ1p8T/prof.fdata.146861.fdata /tmp/.tmpoZ1p8T/prof.fdata.146873.fdata /tmp/.tmpoZ1p8T/prof.fdata.146889.fdata /tmp/.tmpoZ1p8T/prof.fdata.146902.fdata /tmp/.tmpoZ1p8T/prof.fdata.146910.fdata /tmp/.tmpoZ1p8T/prof.fdata.146914.fdata /tmp/.tmpoZ1p8T/prof.fdata.146923.fdata /tmp/.tmpoZ1p8T/prof.fdata.146928.fdata /tmp/.tmpoZ1p8T/prof.fdata.146933.fdata /tmp/.tmpoZ1p8T/prof.fdata.146940.fdata /tmp/.tmpoZ1p8T/prof.fdata.146953.fdata /tmp/.tmpoZ1p8T/prof.fdata.146959.fdata /tmp/.tmpoZ1p8T/prof.fdata.146967.fdata /tmp/.tmpoZ1p8T/prof.fdata.146974.fdata /tmp/.tmpoZ1p8T/prof.fdata.146981.fdata /tmp/.tmpoZ1p8T/prof.fdata.146987.fdata /tmp/.tmpoZ1p8T/prof.fdata.146992.fdata /tmp/.tmpoZ1p8T/prof.fdata.147003.fdata /tmp/.tmpoZ1p8T/prof.fdata.147005.fdata /tmp/.tmpoZ1p8T/prof.fdata.147017.fdata /tmp/.tmpoZ1p8T/prof.fdata.147021.fdata /tmp/.tmpoZ1p8T/prof.fdata.147029.fdata /tmp/.tmpoZ1p8T/prof.fdata.147042.fdata /tmp/.tmpoZ1p8T/prof.fdata.147043.fdata /tmp/.tmpoZ1p8T/prof.fdata.147047.fdata /tmp/.tmpoZ1p8T/prof.fdata.147053.fdata /tmp/.tmpoZ1p8T/prof.fdata.147065.fdata /tmp/.tmpoZ1p8T/prof.fdata.147078.fdata /tmp/.tmpoZ1p8T/prof.fdata.147093.fdata /tmp/.tmpoZ1p8T/prof.fdata.147099.fdata /tmp/.tmpoZ1p8T/prof.fdata.147118.fdata /tmp/.tmpoZ1p8T/prof.fdata.147120.fdata /tmp/.tmpoZ1p8T/prof.fdata.147127.fdata /tmp/.tmpoZ1p8T/prof.fdata.147131.fdata /tmp/.tmpoZ1p8T/prof.fdata.147134.fdata /tmp/.tmpoZ1p8T/prof.fdata.147150.fdata /tmp/.tmpoZ1p8T/prof.fdata.147156.fdata /tmp/.tmpoZ1p8T/prof.fdata.147163.fdata /tmp/.tmpoZ1p8T/prof.fdata.147171.fdata /tmp/.tmpoZ1p8T/prof.fdata.147192.fdata /tmp/.tmpoZ1p8T/prof.fdata.147197.fdata /tmp/.tmpoZ1p8T/prof.fdata.147199.fdata /tmp/.tmpoZ1p8T/prof.fdata.147208.fdata /tmp/.tmpoZ1p8T/prof.fdata.147213.fdata /tmp/.tmpoZ1p8T/prof.fdata.147225.fdata /tmp/.tmpoZ1p8T/prof.fdata.147233.fdata /tmp/.tmpoZ1p8T/prof.fdata.147251.fdata /tmp/.tmpoZ1p8T/prof.fdata.147255.fdata /tmp/.tmpoZ1p8T/prof.fdata.147260.fdata /tmp/.tmpoZ1p8T/prof.fdata.147261.fdata /tmp/.tmpoZ1p8T/prof.fdata.147267.fdata /tmp/.tmpoZ1p8T/prof.fdata.147277.fdata /tmp/.tmpoZ1p8T/prof.fdata.147281.fdata /tmp/.tmpoZ1p8T/prof.fdata.147293.fdata /tmp/.tmpoZ1p8T/prof.fdata.147294.fdata /tmp/.tmpoZ1p8T/prof.fdata.147303.fdata /tmp/.tmpoZ1p8T/prof.fdata.147320.fdata /tmp/.tmpoZ1p8T/prof.fdata.147339.fdata /tmp/.tmpoZ1p8T/prof.fdata.147351.fdata /tmp/.tmpoZ1p8T/prof.fdata.147361.fdata /tmp/.tmpoZ1p8T/prof.fdata.147374.fdata /tmp/.tmpoZ1p8T/prof.fdata.147379.fdata /tmp/.tmpoZ1p8T/prof.fdata.147387.fdata /tmp/.tmpoZ1p8T/prof.fdata.147394.fdata /tmp/.tmpoZ1p8T/prof.fdata.147398.fdata /tmp/.tmpoZ1p8T/prof.fdata.147402.fdata /tmp/.tmpoZ1p8T/prof.fdata.147408.fdata /tmp/.tmpoZ1p8T/prof.fdata.147418.fdata /tmp/.tmpoZ1p8T/prof.fdata.147436.fdata /tmp/.tmpoZ1p8T/prof.fdata.147451.fdata /tmp/.tmpoZ1p8T/prof.fdata.147464.fdata /tmp/.tmpoZ1p8T/prof.fdata.147472.fdata /tmp/.tmpoZ1p8T/prof.fdata.147479.fdata /tmp/.tmpoZ1p8T/prof.fdata.147480.fdata /tmp/.tmpoZ1p8T/prof.fdata.147497.fdata /tmp/.tmpoZ1p8T/prof.fdata.147517.fdata /tmp/.tmpoZ1p8T/prof.fdata.147519.fdata /tmp/.tmpoZ1p8T/prof.fdata.147528.fdata /tmp/.tmpoZ1p8T/prof.fdata.147536.fdata /tmp/.tmpoZ1p8T/prof.fdata.147550.fdata /tmp/.tmpoZ1p8T/prof.fdata.147555.fdata /tmp/.tmpoZ1p8T/prof.fdata.147564.fdata /tmp/.tmpoZ1p8T/prof.fdata.147571.fdata /tmp/.tmpoZ1p8T/prof.fdata.147576.fdata /tmp/.tmpoZ1p8T/prof.fdata.147589.fdata /tmp/.tmpoZ1p8T/prof.fdata.147596.fdata /tmp/.tmpoZ1p8T/prof.fdata.147610.fdata /tmp/.tmpoZ1p8T/prof.fdata.147614.fdata /tmp/.tmpoZ1p8T/prof.fdata.147621.fdata /tmp/.tmpoZ1p8T/prof.fdata.147631.fdata /tmp/.tmpoZ1p8T/prof.fdata.147637.fdata /tmp/.tmpoZ1p8T/prof.fdata.147646.fdata /tmp/.tmpoZ1p8T/prof.fdata.147649.fdata /tmp/.tmpoZ1p8T/prof.fdata.147664.fdata /tmp/.tmpoZ1p8T/prof.fdata.147705.fdata /tmp/.tmpoZ1p8T/prof.fdata.147713.fdata /tmp/.tmpoZ1p8T/prof.fdata.147737.fdata /tmp/.tmpoZ1p8T/prof.fdata.147768.fdata /tmp/.tmpoZ1p8T/prof.fdata.147774.fdata /tmp/.tmpoZ1p8T/prof.fdata.147785.fdata /tmp/.tmpoZ1p8T/prof.fdata.147790.fdata /tmp/.tmpoZ1p8T/prof.fdata.147820.fdata /tmp/.tmpoZ1p8T/prof.fdata.147863.fdata /tmp/.tmpoZ1p8T/prof.fdata.147879.fdata /tmp/.tmpoZ1p8T/prof.fdata.147896.fdata /tmp/.tmpoZ1p8T/prof.fdata.147938.fdata /tmp/.tmpoZ1p8T/prof.fdata.147941.fdata /tmp/.tmpoZ1p8T/prof.fdata.147942.fdata /tmp/.tmpoZ1p8T/prof.fdata.147949.fdata /tmp/.tmpoZ1p8T/prof.fdata.147970.fdata /tmp/.tmpoZ1p8T/prof.fdata.147988.fdata /tmp/.tmpoZ1p8T/prof.fdata.148069.fdata /tmp/.tmpoZ1p8T/prof.fdata.148079.fdata /tmp/.tmpoZ1p8T/prof.fdata.148089.fdata /tmp/.tmpoZ1p8T/prof.fdata.148100.fdata /tmp/.tmpoZ1p8T/prof.fdata.148111.fdata /tmp/.tmpoZ1p8T/prof.fdata.148137.fdata /tmp/.tmpoZ1p8T/prof.fdata.148403.fdata /tmp/.tmpoZ1p8T/prof.fdata.148670.fdata /tmp/.tmpoZ1p8T/prof.fdata.148937.fdata /tmp/.tmpoZ1p8T/prof.fdata.148979.fdata /tmp/.tmpoZ1p8T/prof.fdata.149501.fdata /tmp/.tmpoZ1p8T/prof.fdata.149768.fdata /tmp/.tmpoZ1p8T/prof.fdata.150042.fdata /tmp/.tmpoZ1p8T/prof.fdata.150043.fdata /tmp/.tmpoZ1p8T/prof.fdata.150044.fdata /tmp/.tmpoZ1p8T/prof.fdata.150048.fdata /tmp/.tmpoZ1p8T/prof.fdata.150049.fdata /tmp/.tmpoZ1p8T/prof.fdata.150050.fdata /tmp/.tmpoZ1p8T/prof.fdata.150057.fdata /tmp/.tmpoZ1p8T/prof.fdata.150058.fdata /tmp/.tmpoZ1p8T/prof.fdata.150059.fdata /tmp/.tmpoZ1p8T/prof.fdata.150066.fdata /tmp/.tmpoZ1p8T/prof.fdata.150067.fdata /tmp/.tmpoZ1p8T/prof.fdata.150068.fdata /tmp/.tmpoZ1p8T/prof.fdata.150087.fdata /tmp/.tmpoZ1p8T/prof.fdata.150097.fdata /tmp/.tmpoZ1p8T/prof.fdata.150107.fdata /tmp/.tmpoZ1p8T/prof.fdata.150118.fdata /tmp/.tmpoZ1p8T/prof.fdata.150129.fdata /tmp/.tmpoZ1p8T/prof.fdata.150140.fdata /tmp/.tmpoZ1p8T/prof.fdata.150152.fdata /tmp/.tmpoZ1p8T/prof.fdata.150164.fdata /tmp/.tmpoZ1p8T/prof.fdata.150176.fdata /tmp/.tmpoZ1p8T/prof.fdata.150194.fdata /tmp/.tmpoZ1p8T/prof.fdata.150195.fdata /tmp/.tmpoZ1p8T/prof.fdata.150196.fdata /tmp/.tmpoZ1p8T/prof.fdata.150200.fdata /tmp/.tmpoZ1p8T/prof.fdata.150201.fdata /tmp/.tmpoZ1p8T/prof.fdata.150202.fdata /tmp/.tmpoZ1p8T/prof.fdata.150209.fdata /tmp/.tmpoZ1p8T/prof.fdata.150210.fdata /tmp/.tmpoZ1p8T/prof.fdata.150211.fdata /tmp/.tmpoZ1p8T/prof.fdata.150218.fdata /tmp/.tmpoZ1p8T/prof.fdata.150219.fdata /tmp/.tmpoZ1p8T/prof.fdata.150220.fdata /tmp/.tmpoZ1p8T/prof.fdata.150239.fdata /tmp/.tmpoZ1p8T/prof.fdata.150240.fdata /tmp/.tmpoZ1p8T/prof.fdata.150241.fdata /tmp/.tmpoZ1p8T/prof.fdata.150242.fdata /tmp/.tmpoZ1p8T/prof.fdata.150243.fdata /tmp/.tmpoZ1p8T/prof.fdata.150244.fdata /tmp/.tmpoZ1p8T/prof.fdata.150245.fdata /tmp/.tmpoZ1p8T/prof.fdata.150246.fdata /tmp/.tmpoZ1p8T/prof.fdata.150247.fdata /tmp/.tmpoZ1p8T/prof.fdata.150248.fdata /tmp/.tmpoZ1p8T/prof.fdata.150249.fdata /tmp/.tmpoZ1p8T/prof.fdata.150250.fdata /tmp/.tmpoZ1p8T/prof.fdata.150343.fdata /tmp/.tmpoZ1p8T/prof.fdata.150347.fdata /tmp/.tmpoZ1p8T/prof.fdata.150351.fdata /tmp/.tmpoZ1p8T/prof.fdata.150354.fdata /tmp/.tmpoZ1p8T/prof.fdata.150358.fdata /tmp/.tmpoZ1p8T/prof.fdata.150363.fdata /tmp/.tmpoZ1p8T/prof.fdata.150371.fdata /tmp/.tmpoZ1p8T/prof.fdata.150382.fdata /tmp/.tmpoZ1p8T/prof.fdata.150386.fdata /tmp/.tmpoZ1p8T/prof.fdata.150405.fdata /tmp/.tmpoZ1p8T/prof.fdata.150407.fdata /tmp/.tmpoZ1p8T/prof.fdata.150413.fdata /tmp/.tmpoZ1p8T/prof.fdata.150420.fdata /tmp/.tmpoZ1p8T/prof.fdata.150425.fdata /tmp/.tmpoZ1p8T/prof.fdata.150440.fdata /tmp/.tmpoZ1p8T/prof.fdata.150501.fdata /tmp/.tmpoZ1p8T/prof.fdata.150505.fdata /tmp/.tmpoZ1p8T/prof.fdata.150509.fdata /tmp/.tmpoZ1p8T/prof.fdata.150587.fdata /tmp/.tmpoZ1p8T/prof.fdata.150597.fdata /tmp/.tmpoZ1p8T/prof.fdata.150607.fdata /tmp/.tmpoZ1p8T/prof.fdata.150618.fdata /tmp/.tmpoZ1p8T/prof.fdata.150629.fdata /tmp/.tmpoZ1p8T/prof.fdata.150640.fdata /tmp/.tmpoZ1p8T/prof.fdata.150696.fdata /tmp/.tmpoZ1p8T/prof.fdata.150753.fdata /tmp/.tmpoZ1p8T/prof.fdata.150810.fdata /tmp/.tmpoZ1p8T/prof.fdata.150822.fdata /tmp/.tmpoZ1p8T/prof.fdata.150884.fdata /tmp/.tmpoZ1p8T/prof.fdata.150921.fdata /tmp/.tmpoZ1p8T/prof.fdata.150964.fdata /tmp/.tmpoZ1p8T/prof.fdata.150965.fdata /tmp/.tmpoZ1p8T/prof.fdata.150966.fdata /tmp/.tmpoZ1p8T/prof.fdata.150970.fdata /tmp/.tmpoZ1p8T/prof.fdata.150971.fdata /tmp/.tmpoZ1p8T/prof.fdata.150972.fdata /tmp/.tmpoZ1p8T/prof.fdata.150979.fdata /tmp/.tmpoZ1p8T/prof.fdata.150980.fdata /tmp/.tmpoZ1p8T/prof.fdata.150981.fdata /tmp/.tmpoZ1p8T/prof.fdata.150988.fdata /tmp/.tmpoZ1p8T/prof.fdata.150989.fdata /tmp/.tmpoZ1p8T/prof.fdata.150990.fdata /tmp/.tmpoZ1p8T/prof.fdata.151009.fdata /tmp/.tmpoZ1p8T/prof.fdata.151019.fdata /tmp/.tmpoZ1p8T/prof.fdata.151029.fdata /tmp/.tmpoZ1p8T/prof.fdata.151040.fdata /tmp/.tmpoZ1p8T/prof.fdata.151051.fdata /tmp/.tmpoZ1p8T/prof.fdata.151062.fdata /tmp/.tmpoZ1p8T/prof.fdata.151074.fdata /tmp/.tmpoZ1p8T/prof.fdata.151086.fdata /tmp/.tmpoZ1p8T/prof.fdata.151098.fdata /tmp/.tmpoZ1p8T/prof.fdata.151116.fdata /tmp/.tmpoZ1p8T/prof.fdata.151117.fdata /tmp/.tmpoZ1p8T/prof.fdata.151118.fdata /tmp/.tmpoZ1p8T/prof.fdata.151122.fdata /tmp/.tmpoZ1p8T/prof.fdata.151123.fdata /tmp/.tmpoZ1p8T/prof.fdata.151124.fdata /tmp/.tmpoZ1p8T/prof.fdata.151131.fdata /tmp/.tmpoZ1p8T/prof.fdata.151132.fdata /tmp/.tmpoZ1p8T/prof.fdata.151133.fdata /tmp/.tmpoZ1p8T/prof.fdata.151140.fdata /tmp/.tmpoZ1p8T/prof.fdata.151141.fdata /tmp/.tmpoZ1p8T/prof.fdata.151142.fdata /tmp/.tmpoZ1p8T/prof.fdata.151161.fdata /tmp/.tmpoZ1p8T/prof.fdata.151171.fdata /tmp/.tmpoZ1p8T/prof.fdata.151181.fdata /tmp/.tmpoZ1p8T/prof.fdata.151192.fdata /tmp/.tmpoZ1p8T/prof.fdata.151203.fdata /tmp/.tmpoZ1p8T/prof.fdata.151216.fdata /tmp/.tmpoZ1p8T/prof.fdata.151230.fdata /tmp/.tmpoZ1p8T/prof.fdata.151242.fdata /tmp/.tmpoZ1p8T/prof.fdata.151258.fdata /tmp/.tmpoZ1p8T/prof.fdata.151278.fdata /tmp/.tmpoZ1p8T/prof.fdata.151279.fdata /tmp/.tmpoZ1p8T/prof.fdata.151280.fdata /tmp/.tmpoZ1p8T/prof.fdata.151284.fdata /tmp/.tmpoZ1p8T/prof.fdata.151285.fdata /tmp/.tmpoZ1p8T/prof.fdata.151286.fdata /tmp/.tmpoZ1p8T/prof.fdata.151293.fdata /tmp/.tmpoZ1p8T/prof.fdata.151294.fdata /tmp/.tmpoZ1p8T/prof.fdata.151295.fdata /tmp/.tmpoZ1p8T/prof.fdata.151302.fdata /tmp/.tmpoZ1p8T/prof.fdata.151303.fdata /tmp/.tmpoZ1p8T/prof.fdata.151304.fdata /tmp/.tmpoZ1p8T/prof.fdata.151310.fdata /tmp/.tmpoZ1p8T/prof.fdata.151313.fdata /tmp/.tmpoZ1p8T/prof.fdata.151316.fdata /tmp/.tmpoZ1p8T/prof.fdata.151353.fdata /tmp/.tmpoZ1p8T/prof.fdata.151363.fdata /tmp/.tmpoZ1p8T/prof.fdata.151373.fdata /tmp/.tmpoZ1p8T/prof.fdata.151384.fdata /tmp/.tmpoZ1p8T/prof.fdata.151398.fdata /tmp/.tmpoZ1p8T/prof.fdata.151416.fdata /tmp/.tmpoZ1p8T/prof.fdata.151435.fdata /tmp/.tmpoZ1p8T/prof.fdata.151450.fdata /tmp/.tmpoZ1p8T/prof.fdata.151469.fdata /tmp/.tmpoZ1p8T/prof.fdata.151492.fdata /tmp/.tmpoZ1p8T/prof.fdata.151493.fdata /tmp/.tmpoZ1p8T/prof.fdata.151494.fdata /tmp/.tmpoZ1p8T/prof.fdata.151498.fdata /tmp/.tmpoZ1p8T/prof.fdata.151499.fdata /tmp/.tmpoZ1p8T/prof.fdata.151500.fdata /tmp/.tmpoZ1p8T/prof.fdata.151507.fdata /tmp/.tmpoZ1p8T/prof.fdata.151508.fdata /tmp/.tmpoZ1p8T/prof.fdata.151509.fdata /tmp/.tmpoZ1p8T/prof.fdata.151516.fdata /tmp/.tmpoZ1p8T/prof.fdata.151517.fdata /tmp/.tmpoZ1p8T/prof.fdata.151518.fdata /tmp/.tmpoZ1p8T/prof.fdata.151537.fdata /tmp/.tmpoZ1p8T/prof.fdata.151547.fdata /tmp/.tmpoZ1p8T/prof.fdata.151557.fdata /tmp/.tmpoZ1p8T/prof.fdata.151568.fdata /tmp/.tmpoZ1p8T/prof.fdata.151579.fdata /tmp/.tmpoZ1p8T/prof.fdata.151593.fdata /tmp/.tmpoZ1p8T/prof.fdata.151611.fdata /tmp/.tmpoZ1p8T/prof.fdata.151630.fdata /tmp/.tmpoZ1p8T/prof.fdata.151649.fdata /tmp/.tmpoZ1p8T/prof.fdata.151664.fdata /tmp/.tmpoZ1p8T/prof.fdata.151683.fdata /tmp/.tmpoZ1p8T/prof.fdata.151700.fdata > "/tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata" [at /checkout/obj]`
Profile from 665 files merged.
##[endgroup]
[2024-06-15T03:34:48.361Z INFO  opt_dist::training] rustc BOLT statistics
[2024-06-15T03:34:48.361Z INFO  opt_dist::training] /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata: 167.96 MiB
---
    0: Cannot execute tests
    1: Command COMPILETEST_FORCE_STAGE0=1 python3 /checkout/x.py test --build x86_64-unknown-linux-gnu --stage 0 tests/assembly tests/codegen tests/codegen-units tests/incremental tests/mir-opt tests/pretty tests/run-pass-valgrind tests/ui tests/crashes --set build.rustc=/checkout/obj/build/unpacked-dist/rustc-nightly-x86_64-unknown-linux-gnu/rustc/bin/rustc --set build.cargo=/checkout/obj/build/unpacked-dist/cargo-nightly-x86_64-unknown-linux-gnu/cargo/bin/cargo --set target.x86_64-unknown-linux-gnu.llvm-config=/checkout/obj/build/x86_64-unknown-linux-gnu/llvm/bin/llvm-config --skip tests/ui/process/nofile-limit.rs [at /checkout/obj] has failed with exit code Some(1)

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/75f541e4a1e9e7458b3e752859517a038ea30faf/src/tools/opt-dist/src/exec.rs:78:17
             at /rustc/75f541e4a1e9e7458b3e752859517a038ea30faf/src/tools/opt-dist/src/tests.rs:101:5
   3: opt_dist::execute_pipeline::{closure#5}
             at /rustc/75f541e4a1e9e7458b3e752859517a038ea30faf/src/tools/opt-dist/src/main.rs:350:40
             at /rustc/75f541e4a1e9e7458b3e752859517a038ea30faf/src/tools/opt-dist/src/main.rs:350:40
   4: <opt_dist::timer::TimerSection>::section::<opt_dist::execute_pipeline::{closure#5}, ()>
             at /rustc/75f541e4a1e9e7458b3e752859517a038ea30faf/src/tools/opt-dist/src/timer.rs:111:22
             at /rustc/75f541e4a1e9e7458b3e752859517a038ea30faf/src/tools/opt-dist/src/main.rs:350:9
   6: opt_dist::main
             at /rustc/75f541e4a1e9e7458b3e752859517a038ea30faf/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/75ac3b6331873133c4f7a10f2252afd6f3906c6a/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/75ac3b6331873133c4f7a10f2252afd6f3906c6a/library/std/src/sys_common/backtrace.rs:155:18
   9: std::rt::lang_start::<core::result::Result<(), anyhow::Error>>::{closure#0}
             at /rustc/75ac3b6331873133c4f7a10f2252afd6f3906c6a/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/75ac3b6331873133c4f7a10f2252afd6f3906c6a/library/std/src/panicking.rs:559:40
  12: std::panicking::try
             at /rustc/75ac3b6331873133c4f7a10f2252afd6f3906c6a/library/std/src/panicking.rs:523:19

@bors
Copy link
Contributor

bors commented Jun 15, 2024

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Jun 15, 2024
@matthiaskrgr matthiaskrgr deleted the rollup-nwvz24q branch September 1, 2024 17:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-testsuite Area: The testsuite used to check the correctness of rustc rollup A PR which is a rollup 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) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-infra Relevant to the infrastructure team, which will review and decide on the PR/issue. WG-trait-system-refactor The Rustc Trait System Refactor Initiative (-Znext-solver)
Projects
None yet
Development

Successfully merging this pull request may close these issues.