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

Implement RFC 3127 sysroot path handling changes #118149

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

Conversation

cbeuw
Copy link
Contributor

@cbeuw cbeuw commented Nov 21, 2023

Fix #105907
Fix #85463

Implement parts of #111540

Right now, backtraces into sysroot always shows /rustc/$hash in diagnostics, e.g.

thread 'main' panicked at 'hello world', map-panic.rs:2:50
stack backtrace:
   0: std::panicking::begin_panic
             at /rustc/a55dd71d5fb0ec5a6a3a9e8c27b2127ba491ce52/library/std/src/panicking.rs:616:12
   1: map_panic::main::{{closure}}
             at ./map-panic.rs:2:50
   2: core::option::Option<T>::map
             at /rustc/a55dd71d5fb0ec5a6a3a9e8c27b2127ba491ce52/library/core/src/option.rs:929:29
   3: map_panic::main
             at ./map-panic.rs:2:30
   4: core::ops::function::FnOnce::call_once
             at /rustc/a55dd71d5fb0ec5a6a3a9e8c27b2127ba491ce52/library/core/src/ops/function.rs:248:5
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

RFC 3127 said

We want to change this behaviour such that, when rust-src source files can be discovered, the virtual path is discarded and therefore the local path will be embedded, unless there is a --remap-path-prefix that causes this local path to be remapped in the usual way.

This PR implements this behaviour. When rust-src is present at compile time, rustc replaces /rustc/$hash with a real path into local rust-src with best effort. To sanitise this, users must explicitly supply --remap-path-prefix=<path to rust-src>=foo.

@rustbot
Copy link
Collaborator

rustbot commented Nov 21, 2023

r? @b-naber

(rustbot has picked a reviewer for you, use r? to override)

@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. labels Nov 21, 2023
@rust-log-analyzer

This comment has been minimized.

Comment on lines 814 to 819
if value.contains(RUST_SRC_BASE) {
let src = config.sysroot_base.join("lib/rustlib/src/rust");
let canonical = canonicalize(&src).unwrap();
value = value.replace(RUST_SRC_BASE, &canonical.to_string_lossy());
}

Copy link
Contributor Author

Choose a reason for hiding this comment

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

This is required, rather than just having a {{sysroot-base}} template, because /home/me/rust/build/<target>/stage1/lib/rustlib/src/rust is a symlink to /home/me/rust/. When /rust/$hash is mapped back to a real path, we resolve symlink by one step:

let real_rust_source_base_dir = {
// This is the location used by the `rust-src` `rustup` component.
let mut candidate = sysroot.join("lib/rustlib/src/rust");
if let Ok(metadata) = candidate.symlink_metadata() {
// Replace the symlink rustbuild creates, with its destination.
// We could try to use `fs::canonicalize` instead, but that might
// produce unnecessarily verbose path.
if metadata.file_type().is_symlink() {
if let Ok(symlink_dest) = std::fs::read_link(&candidate) {
candidate = symlink_dest;
}
}
}
, so it becomes /home/me/rust/.../foo.rs. If we were to have a --remap-path-prefix={{sysroot-base}}=remapped in the test header, nothing will get remapped because it becomes --remap-path-prefix=/home/me/rust/build/<target>/stage1/=remapped, which doesn't match /home/me/rust/

@rust-log-analyzer

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

compiler/rustc_metadata/src/rmeta/decoder.rs Outdated Show resolved Hide resolved
virtual_name.display(),
new_path.display(),
);
let new_name = rustc_span::RealFileName::LocalPath(new_path);
Copy link
Contributor

Choose a reason for hiding this comment

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

I don't understand this. The part of the RFC you quote says that the virtual path should only be replaced with the real path if rust-src is found. It's not obvious to me how this check is implemented here. Can you elaborate, please?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

rust-src needs to be found here

let real_rust_source_base_dir = {
// This is the location used by the `rust-src` `rustup` component.
let mut candidate = sysroot.join("lib/rustlib/src/rust");
if let Ok(metadata) = candidate.symlink_metadata() {
// Replace the symlink rustbuild creates, with its destination.
// We could try to use `fs::canonicalize` instead, but that might
// produce unnecessarily verbose path.
if metadata.file_type().is_symlink() {
if let Ok(symlink_dest) = std::fs::read_link(&candidate) {
candidate = symlink_dest;
}
}
}
// Only use this directory if it has a file we can expect to always find.
candidate.join("library/std/src/lib.rs").is_file().then_some(candidate)
};

for real_rust_source_base_dir to be Some, then checked by if let Some(real_dir) = &sess.opts.real_rust_source_base_dir above.

tests/ui/errors/remap-path-prefix-sysroot.rs Outdated Show resolved Hide resolved
@cbeuw cbeuw force-pushed the rfc3127-sysroot branch 2 times, most recently from a306c76 to 100af45 Compare December 11, 2023 22:46
@rust-log-analyzer

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

@b-naber
Copy link
Contributor

b-naber commented Dec 13, 2023

Looks good to me now. Thanks for the PR!

@bors r+

bors added a commit to rust-lang-ci/rust that referenced this pull request Dec 16, 2023
Implement RFC 3127 sysroot path handling changes

Fix rust-lang#105907
Fix rust-lang#85463

Implement parts of rust-lang#111540

Right now, backtraces into sysroot always shows /rustc/$hash in diagnostics, e.g.

```
thread 'main' panicked at 'hello world', map-panic.rs:2:50
stack backtrace:
   0: std::panicking::begin_panic
             at /rustc/a55dd71d5fb0ec5a6a3a9e8c27b2127ba491ce52/library/std/src/panicking.rs:616:12
   1: map_panic::main::{{closure}}
             at ./map-panic.rs:2:50
   2: core::option::Option<T>::map
             at /rustc/a55dd71d5fb0ec5a6a3a9e8c27b2127ba491ce52/library/core/src/option.rs:929:29
   3: map_panic::main
             at ./map-panic.rs:2:30
   4: core::ops::function::FnOnce::call_once
             at /rustc/a55dd71d5fb0ec5a6a3a9e8c27b2127ba491ce52/library/core/src/ops/function.rs:248:5
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
```

[RFC 3127 said](https://rust-lang.github.io/rfcs/3127-trim-paths.html#changing-handling-of-sysroot-path-in-rustc)

> We want to change this behaviour such that, when rust-src source files can be discovered, the virtual path is discarded and therefore the local path will be embedded, unless there is a --remap-path-prefix that causes this local path to be remapped in the usual way.

This PR implements this behaviour. When `rust-src` is present at compile time, rustc replaces /rustc/$hash with a real path into local rust-src with best effort. To sanitise this, users must explicitly supply `--remap-path-prefix=<path to rust-src>=foo`.
@bors
Copy link
Contributor

bors commented Dec 16, 2023

💔 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 Dec 16, 2023
@rust-log-analyzer

This comment has been minimized.

@workingjubilee
Copy link
Contributor

Looks like some legitimate issues.
@rustbot author

@rustbot rustbot added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Dec 16, 2023
@cbeuw
Copy link
Contributor Author

cbeuw commented Dec 16, 2023

Ughhh test suite normalisation shennenigans. On Windows, besides resolving links, \\?\ gets added in front of canonicalised paths.

@cbeuw
Copy link
Contributor Author

cbeuw commented Dec 16, 2023

Should be fixed now

@b-naber
Copy link
Contributor

b-naber commented Dec 16, 2023

Can you change this yaml file to include the machine, which failed in the bors run, in CI so that we can make sure this is really fixed before starting a new bors run?

I think all you have to do is add this:

          - name: x86_64-msvc
            env:
              RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
              SCRIPT: make ci-msvc
            <<: *job-windows-8c

to the pr jobs here. Could be wrong though, haven't done this in a while.

@rustbot rustbot added the T-infra Relevant to the infrastructure team, which will review and decide on the PR/issue. label Dec 16, 2023
@cbeuw
Copy link
Contributor Author

cbeuw commented Dec 16, 2023

Don't think I can change the CI jobs:
image

With on: pull_request_target as trigger, secrets can be accessed, but the workflow of the base branch is used (so the version trusted by you). Any changes done to .github/workflows/ by the PR are ignored, which should prevent malicious users from leaking secrets. Note that also the code of the base branch is used unless you explicitly checkout the PR code

https://github.com/orgs/community/discussions/27084#discussioncomment-3254544

I have tested this on my local MSVC environment anyway

@b-naber
Copy link
Contributor

b-naber commented Dec 16, 2023

hm I know for a fact that I have added test runs to CI in the past without having any special privileges on this repo, but anyway if you have tested it locally it should be good enough.

@bors r+ rollup=iffy

@bors
Copy link
Contributor

bors commented Dec 16, 2023

📌 Commit 0cba7c8 has been approved by b-naber

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-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Dec 16, 2023
@bors
Copy link
Contributor

bors commented Dec 16, 2023

⌛ Testing commit 0cba7c8 with merge a05bc27...

bors added a commit to rust-lang-ci/rust that referenced this pull request Dec 16, 2023
Implement RFC 3127 sysroot path handling changes

Fix rust-lang#105907
Fix rust-lang#85463

Implement parts of rust-lang#111540

Right now, backtraces into sysroot always shows /rustc/$hash in diagnostics, e.g.

```
thread 'main' panicked at 'hello world', map-panic.rs:2:50
stack backtrace:
   0: std::panicking::begin_panic
             at /rustc/a55dd71d5fb0ec5a6a3a9e8c27b2127ba491ce52/library/std/src/panicking.rs:616:12
   1: map_panic::main::{{closure}}
             at ./map-panic.rs:2:50
   2: core::option::Option<T>::map
             at /rustc/a55dd71d5fb0ec5a6a3a9e8c27b2127ba491ce52/library/core/src/option.rs:929:29
   3: map_panic::main
             at ./map-panic.rs:2:30
   4: core::ops::function::FnOnce::call_once
             at /rustc/a55dd71d5fb0ec5a6a3a9e8c27b2127ba491ce52/library/core/src/ops/function.rs:248:5
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
```

[RFC 3127 said](https://rust-lang.github.io/rfcs/3127-trim-paths.html#changing-handling-of-sysroot-path-in-rustc)

> We want to change this behaviour such that, when rust-src source files can be discovered, the virtual path is discarded and therefore the local path will be embedded, unless there is a --remap-path-prefix that causes this local path to be remapped in the usual way.

This PR implements this behaviour. When `rust-src` is present at compile time, rustc replaces /rustc/$hash with a real path into local rust-src with best effort. To sanitise this, users must explicitly supply `--remap-path-prefix=<path to rust-src>=foo`.
@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)
Preparing bitmaps-3.1.0
[2023-12-16T17:07:43Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-12-16T17:07:43Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T17:07:43Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T17:07:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpnEVwYi" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpnEVwYi#bitmaps@3.1.0" "--" "--skip-this-rustc"
[2023-12-16T17:07:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpIfHoKU" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpIfHoKU#bitmaps@3.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2023-12-16T17:07:43Z DEBUG collector::compile::execute] cd "/tmp/.tmp1PbB5B" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp1PbB5B#bitmaps@3.1.0" "--release" "--" "--skip-this-rustc"
[2023-12-16T17:07:44Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:07:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-12-16T17:07:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-12-16T17:07:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpkjvujp" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpkjvujp#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:07:44Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-12-16T17:07:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpkjvujp" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpkjvujp#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpkjvujp/incremental-state"
[2023-12-16T17:07:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:07:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpkjvujp" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpkjvujp#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpkjvujp/incremental-state"
[2023-12-16T17:07:45Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpkjvujp"
[2023-12-16T17:07:45Z 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" })
[2023-12-16T17:07:45Z 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" })
[2023-12-16T17:07:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpkjvujp" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpkjvujp#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpkjvujp/incremental-state"
[2023-12-16T17:07:46Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:07:46Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:07:46Z DEBUG collector::compile::execute] cd "/tmp/.tmpvzLC49" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpvzLC49#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:07:47Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
---
[2023-12-16T17:09:51Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:09:51Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T17:09:51Z DEBUG collector::compile::execute] cd "/tmp/.tmpasZwsh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpasZwsh#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:10:27Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-12-16T17:10:27Z DEBUG collector::compile::execute] cd "/tmp/.tmpasZwsh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpasZwsh#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpasZwsh/incremental-state"
[2023-12-16T17:11:00Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:11:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpasZwsh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpasZwsh#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpasZwsh/incremental-state"
[2023-12-16T17:11:04Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpasZwsh"
[2023-12-16T17:11:04Z 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" })
[2023-12-16T17:11:04Z 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" })
[2023-12-16T17:11:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpasZwsh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpasZwsh#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpasZwsh/incremental-state"
Executing benchmark ctfe-stress-5 (3/8)
Preparing ctfe-stress-5
[2023-12-16T17:11:13Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T17:11:13Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
---
Preparing diesel-1.4.8
[2023-12-16T17:11:42Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-12-16T17:11:42Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T17:11:42Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T17:11:42Z DEBUG collector::compile::execute] cd "/tmp/.tmpDugRQU" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpDugRQU#diesel@1.4.8" "--release" "--" "--skip-this-rustc"
[2023-12-16T17:11:42Z DEBUG collector::compile::execute] cd "/tmp/.tmpjKp3gy" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpjKp3gy#diesel@1.4.8" "--" "--skip-this-rustc"
Running diesel-1.4.8: Check + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2023-12-16T17:11:51Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:11:51Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-12-16T17:11:51Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-12-16T17:11:51Z DEBUG collector::compile::execute] cd "/tmp/.tmpqvHCDz" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpqvHCDz#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:11:56Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-12-16T17:11:56Z DEBUG collector::compile::execute] cd "/tmp/.tmpqvHCDz" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpqvHCDz#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpqvHCDz/incremental-state"
[2023-12-16T17:12:02Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:12:02Z DEBUG collector::compile::execute] cd "/tmp/.tmpqvHCDz" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpqvHCDz#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpqvHCDz/incremental-state"
[2023-12-16T17:12:04Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpqvHCDz"
[2023-12-16T17:12:04Z 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" })
[2023-12-16T17:12:04Z 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" })
[2023-12-16T17:12:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpqvHCDz" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpqvHCDz#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpqvHCDz/incremental-state"
[2023-12-16T17:12:05Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:12:05Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:12:05Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:12:05Z DEBUG collector::compile::execute] cd "/tmp/.tmpQYKdGa" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpQYKdGa#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:12:11Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:11Z DEBUG collector::compile::execute] cd "/tmp/.tmpQYKdGa" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpQYKdGa#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpQYKdGa/incremental-state"
[2023-12-16T17:12:19Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:12:19Z DEBUG collector::compile::execute] cd "/tmp/.tmpQYKdGa" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpQYKdGa#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpQYKdGa/incremental-state"
[2023-12-16T17:12:20Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpQYKdGa"
[2023-12-16T17:12:20Z 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" })
[2023-12-16T17:12:20Z 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" })
[2023-12-16T17:12:20Z DEBUG collector::compile::execute] cd "/tmp/.tmpQYKdGa" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpQYKdGa#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpQYKdGa/incremental-state"
[2023-12-16T17:12:22Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:12:22Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T17:12:22Z DEBUG collector::compile::execute] cd "/tmp/.tmpTfdKrE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpTfdKrE#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:12:29Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:29Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:29Z DEBUG collector::compile::execute] cd "/tmp/.tmpTfdKrE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpTfdKrE#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpTfdKrE/incremental-state"
[2023-12-16T17:12:36Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:12:36Z DEBUG collector::compile::execute] cd "/tmp/.tmpTfdKrE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpTfdKrE#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpTfdKrE/incremental-state"
[2023-12-16T17:12:38Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpTfdKrE"
[2023-12-16T17:12:38Z 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" })
[2023-12-16T17:12:38Z 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" })
[2023-12-16T17:12:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpTfdKrE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpTfdKrE#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpTfdKrE/incremental-state"
Executing benchmark externs (5/8)
Preparing externs
[2023-12-16T17:12:39Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T17:12:39Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-12-16T17:12:39Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-12-16T17:12:39Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T17:12:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpMlldbq" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpMlldbq#externs@0.1.0" "--" "--skip-this-rustc"
[2023-12-16T17:12:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpNWBTeU" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpNWBTeU#externs@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2023-12-16T17:12:39Z DEBUG collector::compile::execute] cd "/tmp/.tmp3kaYyR" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp3kaYyR#externs@0.1.0" "--release" "--" "--skip-this-rustc"
[2023-12-16T17:12:40Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:12:40Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-12-16T17:12:40Z DEBUG collector::compile::execute] cd "/tmp/.tmpoTwIlV" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpoTwIlV#externs@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:12:40Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:40Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:40Z DEBUG collector::compile::execute] cd "/tmp/.tmpoTwIlV" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpoTwIlV#externs@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpoTwIlV/incremental-state"
[2023-12-16T17:12:40Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:12:40Z DEBUG collector::compile::execute] cd "/tmp/.tmpoTwIlV" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpoTwIlV#externs@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpoTwIlV/incremental-state"
[2023-12-16T17:12:40Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:12:40Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:12:40Z DEBUG collector::compile::execute] cd "/tmp/.tmplsnIHh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmplsnIHh#externs@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:12:40Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:40Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:41Z DEBUG collector::compile::execute] cd "/tmp/.tmplsnIHh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmplsnIHh#externs@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmplsnIHh/incremental-state"
[2023-12-16T17:12:41Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:12:41Z DEBUG collector::compile::execute] cd "/tmp/.tmplsnIHh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmplsnIHh#externs@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmplsnIHh/incremental-state"
[2023-12-16T17:12:41Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:12:41Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T17:12:41Z DEBUG collector::compile::execute] cd "/tmp/.tmpSTkpRY" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpSTkpRY#externs@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:12:41Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:41Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:41Z DEBUG collector::compile::execute] cd "/tmp/.tmpSTkpRY" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpSTkpRY#externs@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpSTkpRY/incremental-state"
[2023-12-16T17:12:42Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:12:42Z DEBUG collector::compile::execute] cd "/tmp/.tmpSTkpRY" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpSTkpRY#externs@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpSTkpRY/incremental-state"
Executing benchmark match-stress (6/8)
Preparing match-stress
[2023-12-16T17:12:42Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T17:12:42Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
---
[2023-12-16T17:12:42Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:12:42Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-12-16T17:12:42Z DEBUG collector::compile::execute] cd "/tmp/.tmpEgg6Yh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpEgg6Yh#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:12:43Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpEgg6Yh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpEgg6Yh#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpEgg6Yh/incremental-state"
[2023-12-16T17:12:44Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:12:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpEgg6Yh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpEgg6Yh#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpEgg6Yh/incremental-state"
[2023-12-16T17:12:45Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:12:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:12:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:12:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpRDgMox" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpRDgMox#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:12:46Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:46Z DEBUG collector::compile::execute] cd "/tmp/.tmpRDgMox" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpRDgMox#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpRDgMox/incremental-state"
[2023-12-16T17:12:47Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:12:47Z DEBUG collector::compile::execute] cd "/tmp/.tmpRDgMox" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpRDgMox#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpRDgMox/incremental-state"
[2023-12-16T17:12:47Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:12:47Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T17:12:47Z DEBUG collector::compile::execute] cd "/tmp/.tmpbEbbJU" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpbEbbJU#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:12:48Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:48Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpbEbbJU" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpbEbbJU#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpbEbbJU/incremental-state"
[2023-12-16T17:12:49Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:12:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpbEbbJU" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpbEbbJU#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpbEbbJU/incremental-state"
Executing benchmark token-stream-stress (7/8)
Preparing token-stream-stress
[2023-12-16T17:12:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-12-16T17:12:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
---
[2023-12-16T17:12:50Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:12:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-12-16T17:12:50Z DEBUG collector::compile::execute] cd "/tmp/.tmpcyntAb" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpcyntAb#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:12:50Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-12-16T17:12:50Z DEBUG collector::compile::execute] cd "/tmp/.tmpcyntAb" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpcyntAb#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpcyntAb/incremental-state"
[2023-12-16T17:12:50Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:12:50Z DEBUG collector::compile::execute] cd "/tmp/.tmpcyntAb" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpcyntAb#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpcyntAb/incremental-state"
[2023-12-16T17:12:50Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:12:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:12:50Z DEBUG collector::compile::execute] cd "/tmp/.tmp0javTs" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp0javTs#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:12:50Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
---
[2023-12-16T17:13:04Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:13:04Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T17:13:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpfBilAt" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpfBilAt#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:13:06Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-12-16T17:13:06Z DEBUG collector::compile::execute] cd "/tmp/.tmpfBilAt" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpfBilAt#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfBilAt/incremental-state"
[2023-12-16T17:13:08Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:13:08Z DEBUG collector::compile::execute] cd "/tmp/.tmpfBilAt" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpfBilAt#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfBilAt/incremental-state"
[2023-12-16T17:13:09Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpfBilAt"
[2023-12-16T17:13:09Z 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" })
[2023-12-16T17:13:09Z 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" })
[2023-12-16T17:13:09Z DEBUG collector::compile::execute] cd "/tmp/.tmpfBilAt" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpfBilAt#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfBilAt/incremental-state"
[2023-12-16T17:13:11.503Z INFO  opt_dist::training] Merging Rustc PGO profiles to /tmp/tmp-multistage/opt-artifacts/rustc-pgo.profdata
[2023-12-16T17:13:11.503Z 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]
[2023-12-16T17:13:24.160Z INFO  opt_dist::training] Rustc PGO statistics
---
[2023-12-16T17:28:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpyw4UsH" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpyw4UsH#clap@3.1.6" "--" "--wrap-rustc-with" "Eprintln"
Running clap-3.1.6: Opt + [Full]
[2023-12-16T17:28:45Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:28:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T17:28:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpvKYDLY" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpvKYDLY#clap@3.1.6" "--release" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark hyper-0.14.18 (3/8)
Preparing hyper-0.14.18
[2023-12-16T17:28:51Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T17:28:51Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
---
Executing benchmark regex-1.5.5 (4/8)
Preparing regex-1.5.5
[2023-12-16T17:29:17Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T17:29:17Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T17:29:17Z DEBUG collector::compile::execute] cd "/tmp/.tmp83ZCGj" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp83ZCGj#regex@1.5.5" "--" "--skip-this-rustc"
[2023-12-16T17:29:17Z DEBUG collector::compile::execute] cd "/tmp/.tmpdqLxni" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpdqLxni#regex@1.5.5" "--release" "--" "--skip-this-rustc"
[2023-12-16T17:29:22Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:29:22Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:29:22Z DEBUG collector::compile::execute] cd "/tmp/.tmpQG9gaU" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpQG9gaU#regex@1.5.5" "--" "--wrap-rustc-with" "Eprintln"
Running regex-1.5.5: Opt + [Full]
---
Finished benchmark ripgrep-13.0.0 (5/8)
Executing benchmark ripgrep-13.0.0-tiny (6/8)
Preparing ripgrep-13.0.0-tiny
[2023-12-16T17:30:02Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T17:30:02Z DEBUG collector::compile::execute] cd "/tmp/.tmpICUTWp" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpICUTWp#ripgrep@13.0.0" "--release" "--" "--skip-this-rustc"
[2023-12-16T17:30:10Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:30:10Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T17:30:10Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T17:30:10Z DEBUG collector::compile::execute] cd "/tmp/.tmpYcnqgo" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpYcnqgo#ripgrep@13.0.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark serde-1.0.136 (7/8)
Preparing serde-1.0.136
[2023-12-16T17:30:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T17:30:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T17:30:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T17:30:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpvCf2zG" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpvCf2zG#serde@1.0.136" "--release" "--" "--skip-this-rustc"
[2023-12-16T17:30:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpDwDbv7" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpDwDbv7#serde@1.0.136" "--" "--skip-this-rustc"
Running serde-1.0.136: Debug + [Full]
[2023-12-16T17:30:45Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:30:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:30:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpOrpbyP" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpOrpbyP#serde@1.0.136" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:30:47Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:30:47Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T17:30:47Z DEBUG collector::compile::execute] cd "/tmp/.tmp3mRFm2" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp3mRFm2#serde@1.0.136" "--release" "--" "--wrap-rustc-with" "Eprintln"
Finished benchmark serde-1.0.136 (7/8)
Finished benchmark serde-1.0.136 (7/8)
Executing benchmark syn-1.0.89 (8/8)
Preparing syn-1.0.89
[2023-12-16T17:30:49Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T17:30:49Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T17:30:49Z DEBUG collector::compile::execute] cd "/tmp/.tmp1K3yvV" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp1K3yvV#syn@1.0.89" "--" "--skip-this-rustc"
[2023-12-16T17:30:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpUvJGpx" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpUvJGpx#syn@1.0.89" "--release" "--" "--skip-this-rustc"
[2023-12-16T17:30:51Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:30:52Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:30:52Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:30:52Z DEBUG collector::compile::execute] cd "/tmp/.tmpbNKHCK" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpbNKHCK#syn@1.0.89" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:30:53Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:30:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T17:30:53Z DEBUG collector::compile::execute] cd "/tmp/.tmpNo4K4M" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpNo4K4M#syn@1.0.89" "--release" "--" "--wrap-rustc-with" "Eprintln"
Finished benchmark syn-1.0.89 (8/8)
---
    ..bootstrap::core::build_steps::compile::StdLink                     0.00s
    
[2023-12-16T17:50:01.982Z INFO  opt_dist::timer] Section `Stage 3 (BOLT) > Build PGO optimized LLVM` ended: OK (1126.74s)`
[2023-12-16T17:50:01.982Z INFO  opt_dist] Optimizing /checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/libLLVM-17-rust-1.76.0-nightly.so with BOLT
[2023-12-16T17:50:01.982Z INFO  opt_dist::utils::io] Copying file /checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/libLLVM-17-rust-1.76.0-nightly.so to /tmp/.tmplJCTYx
[2023-12-16T17:50:02.080Z INFO  opt_dist::exec] Executing `llvm-bolt -instrument /checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/libLLVM-17-rust-1.76.0-nightly.so --instrumentation-file=/tmp/.tmpfV5xxc/prof.fdata --instrumentation-file-append-pid -o /tmp/.tmpjKdyJJ [at /checkout/obj]`
BOLT-INFO: Target architecture: x86_64
BOLT-INFO: BOLT version: <unknown>
BOLT-INFO: first alloc address is 0x0
BOLT-INFO: creating new program header table at address 0x5c00000, offset 0x5c00000
---
Executing benchmark cargo-0.60.0 (1/8)
Preparing cargo-0.60.0
[2023-12-16T17:51:00Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T17:51:00Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T17:51:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpBKlStc" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpBKlStc#cargo@0.60.0" "--lib" "--" "--skip-this-rustc"
[2023-12-16T17:51:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpa8REL5" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpa8REL5#cargo@0.60.0" "--release" "--lib" "--" "--skip-this-rustc"
[2023-12-16T17:51:58Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:51:59Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:51:59Z DEBUG collector::compile::execute] cd "/tmp/.tmpAUuIP7" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpAUuIP7#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln"
Running cargo-0.60.0: Opt + [Full]
---
Executing benchmark clap-3.1.6 (2/8)
Preparing clap-3.1.6
[2023-12-16T17:52:58Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T17:52:58Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T17:52:58Z DEBUG collector::compile::execute] cd "/tmp/.tmpogzjnj" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpogzjnj#clap@3.1.6" "--release" "--" "--skip-this-rustc"
[2023-12-16T17:52:58Z DEBUG collector::compile::execute] cd "/tmp/.tmp3X2Rry" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp3X2Rry#clap@3.1.6" "--" "--skip-this-rustc"
[2023-12-16T17:53:03Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:53:03Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:53:03Z DEBUG collector::compile::execute] cd "/tmp/.tmpDy7UyX" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpDy7UyX#clap@3.1.6" "--" "--wrap-rustc-with" "Eprintln"
Running clap-3.1.6: Opt + [Full]
---
Finished benchmark syn-1.0.89 (8/8)
[2023-12-16T17:55:55.808Z INFO  opt_dist::training] Merging LLVM BOLT profiles from /tmp/.tmpfV5xxc/prof.fdata to /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata
##[endgroup]
##[group]Merging BOLT profiles
[2023-12-16T17:55:55.809Z INFO  opt_dist::exec] Executing `merge-fdata /tmp/.tmpfV5xxc/prof.fdata.121744.fdata /tmp/.tmpfV5xxc/prof.fdata.121754.fdata /tmp/.tmpfV5xxc/prof.fdata.121755.fdata /tmp/.tmpfV5xxc/prof.fdata.121756.fdata /tmp/.tmpfV5xxc/prof.fdata.121757.fdata /tmp/.tmpfV5xxc/prof.fdata.121760.fdata /tmp/.tmpfV5xxc/prof.fdata.121761.fdata /tmp/.tmpfV5xxc/prof.fdata.121768.fdata /tmp/.tmpfV5xxc/prof.fdata.121772.fdata /tmp/.tmpfV5xxc/prof.fdata.121773.fdata /tmp/.tmpfV5xxc/prof.fdata.121774.fdata /tmp/.tmpfV5xxc/prof.fdata.121775.fdata /tmp/.tmpfV5xxc/prof.fdata.121777.fdata /tmp/.tmpfV5xxc/prof.fdata.121778.fdata /tmp/.tmpfV5xxc/prof.fdata.121780.fdata /tmp/.tmpfV5xxc/prof.fdata.121784.fdata /tmp/.tmpfV5xxc/prof.fdata.121785.fdata /tmp/.tmpfV5xxc/prof.fdata.121787.fdata /tmp/.tmpfV5xxc/prof.fdata.121789.fdata /tmp/.tmpfV5xxc/prof.fdata.121791.fdata /tmp/.tmpfV5xxc/prof.fdata.121792.fdata /tmp/.tmpfV5xxc/prof.fdata.121796.fdata /tmp/.tmpfV5xxc/prof.fdata.121797.fdata /tmp/.tmpfV5xxc/prof.fdata.121798.fdata /tmp/.tmpfV5xxc/prof.fdata.121799.fdata /tmp/.tmpfV5xxc/prof.fdata.121915.fdata /tmp/.tmpfV5xxc/prof.fdata.121917.fdata /tmp/.tmpfV5xxc/prof.fdata.121918.fdata /tmp/.tmpfV5xxc/prof.fdata.121928.fdata /tmp/.tmpfV5xxc/prof.fdata.121951.fdata /tmp/.tmpfV5xxc/prof.fdata.121958.fdata /tmp/.tmpfV5xxc/prof.fdata.121967.fdata /tmp/.tmpfV5xxc/prof.fdata.121977.fdata /tmp/.tmpfV5xxc/prof.fdata.121980.fdata /tmp/.tmpfV5xxc/prof.fdata.121983.fdata /tmp/.tmpfV5xxc/prof.fdata.121987.fdata /tmp/.tmpfV5xxc/prof.fdata.121991.fdata /tmp/.tmpfV5xxc/prof.fdata.121993.fdata /tmp/.tmpfV5xxc/prof.fdata.121997.fdata /tmp/.tmpfV5xxc/prof.fdata.121998.fdata /tmp/.tmpfV5xxc/prof.fdata.122002.fdata /tmp/.tmpfV5xxc/prof.fdata.122007.fdata /tmp/.tmpfV5xxc/prof.fdata.122016.fdata /tmp/.tmpfV5xxc/prof.fdata.122017.fdata /tmp/.tmpfV5xxc/prof.fdata.122021.fdata /tmp/.tmpfV5xxc/prof.fdata.122027.fdata /tmp/.tmpfV5xxc/prof.fdata.122033.fdata /tmp/.tmpfV5xxc/prof.fdata.122038.fdata /tmp/.tmpfV5xxc/prof.fdata.122049.fdata /tmp/.tmpfV5xxc/prof.fdata.122053.fdata /tmp/.tmpfV5xxc/prof.fdata.122060.fdata /tmp/.tmpfV5xxc/prof.fdata.122069.fdata /tmp/.tmpfV5xxc/prof.fdata.122071.fdata /tmp/.tmpfV5xxc/prof.fdata.122073.fdata /tmp/.tmpfV5xxc/prof.fdata.122081.fdata /tmp/.tmpfV5xxc/prof.fdata.122095.fdata /tmp/.tmpfV5xxc/prof.fdata.122100.fdata /tmp/.tmpfV5xxc/prof.fdata.122109.fdata /tmp/.tmpfV5xxc/prof.fdata.122116.fdata /tmp/.tmpfV5xxc/prof.fdata.122126.fdata /tmp/.tmpfV5xxc/prof.fdata.122141.fdata /tmp/.tmpfV5xxc/prof.fdata.122146.fdata /tmp/.tmpfV5xxc/prof.fdata.122147.fdata /tmp/.tmpfV5xxc/prof.fdata.122158.fdata /tmp/.tmpfV5xxc/prof.fdata.122162.fdata /tmp/.tmpfV5xxc/prof.fdata.122179.fdata /tmp/.tmpfV5xxc/prof.fdata.122180.fdata /tmp/.tmpfV5xxc/prof.fdata.122198.fdata /tmp/.tmpfV5xxc/prof.fdata.122206.fdata /tmp/.tmpfV5xxc/prof.fdata.122223.fdata /tmp/.tmpfV5xxc/prof.fdata.122229.fdata /tmp/.tmpfV5xxc/prof.fdata.122241.fdata /tmp/.tmpfV5xxc/prof.fdata.122262.fdata /tmp/.tmpfV5xxc/prof.fdata.122269.fdata /tmp/.tmpfV5xxc/prof.fdata.122272.fdata /tmp/.tmpfV5xxc/prof.fdata.122276.fdata /tmp/.tmpfV5xxc/prof.fdata.122310.fdata /tmp/.tmpfV5xxc/prof.fdata.122311.fdata /tmp/.tmpfV5xxc/prof.fdata.122316.fdata /tmp/.tmpfV5xxc/prof.fdata.122319.fdata /tmp/.tmpfV5xxc/prof.fdata.122322.fdata /tmp/.tmpfV5xxc/prof.fdata.122350.fdata /tmp/.tmpfV5xxc/prof.fdata.122353.fdata /tmp/.tmpfV5xxc/prof.fdata.122371.fdata /tmp/.tmpfV5xxc/prof.fdata.122385.fdata /tmp/.tmpfV5xxc/prof.fdata.122389.fdata /tmp/.tmpfV5xxc/prof.fdata.122395.fdata /tmp/.tmpfV5xxc/prof.fdata.122399.fdata /tmp/.tmpfV5xxc/prof.fdata.122400.fdata /tmp/.tmpfV5xxc/prof.fdata.122404.fdata /tmp/.tmpfV5xxc/prof.fdata.122433.fdata /tmp/.tmpfV5xxc/prof.fdata.122436.fdata /tmp/.tmpfV5xxc/prof.fdata.122449.fdata /tmp/.tmpfV5xxc/prof.fdata.122466.fdata /tmp/.tmpfV5xxc/prof.fdata.122500.fdata /tmp/.tmpfV5xxc/prof.fdata.122502.fdata /tmp/.tmpfV5xxc/prof.fdata.122512.fdata /tmp/.tmpfV5xxc/prof.fdata.122516.fdata /tmp/.tmpfV5xxc/prof.fdata.122525.fdata /tmp/.tmpfV5xxc/prof.fdata.122534.fdata /tmp/.tmpfV5xxc/prof.fdata.122541.fdata /tmp/.tmpfV5xxc/prof.fdata.122543.fdata /tmp/.tmpfV5xxc/prof.fdata.122545.fdata /tmp/.tmpfV5xxc/prof.fdata.122552.fdata /tmp/.tmpfV5xxc/prof.fdata.122560.fdata /tmp/.tmpfV5xxc/prof.fdata.122562.fdata /tmp/.tmpfV5xxc/prof.fdata.122570.fdata /tmp/.tmpfV5xxc/prof.fdata.122572.fdata /tmp/.tmpfV5xxc/prof.fdata.122578.fdata /tmp/.tmpfV5xxc/prof.fdata.122583.fdata /tmp/.tmpfV5xxc/prof.fdata.122585.fdata /tmp/.tmpfV5xxc/prof.fdata.122588.fdata /tmp/.tmpfV5xxc/prof.fdata.122595.fdata /tmp/.tmpfV5xxc/prof.fdata.122600.fdata /tmp/.tmpfV5xxc/prof.fdata.122609.fdata /tmp/.tmpfV5xxc/prof.fdata.122615.fdata /tmp/.tmpfV5xxc/prof.fdata.122616.fdata /tmp/.tmpfV5xxc/prof.fdata.122618.fdata /tmp/.tmpfV5xxc/prof.fdata.122633.fdata /tmp/.tmpfV5xxc/prof.fdata.122673.fdata /tmp/.tmpfV5xxc/prof.fdata.122711.fdata /tmp/.tmpfV5xxc/prof.fdata.122719.fdata /tmp/.tmpfV5xxc/prof.fdata.122728.fdata /tmp/.tmpfV5xxc/prof.fdata.122736.fdata /tmp/.tmpfV5xxc/prof.fdata.122740.fdata /tmp/.tmpfV5xxc/prof.fdata.122747.fdata /tmp/.tmpfV5xxc/prof.fdata.122750.fdata /tmp/.tmpfV5xxc/prof.fdata.122753.fdata /tmp/.tmpfV5xxc/prof.fdata.122756.fdata /tmp/.tmpfV5xxc/prof.fdata.122766.fdata /tmp/.tmpfV5xxc/prof.fdata.122769.fdata /tmp/.tmpfV5xxc/prof.fdata.122783.fdata /tmp/.tmpfV5xxc/prof.fdata.122786.fdata /tmp/.tmpfV5xxc/prof.fdata.122799.fdata /tmp/.tmpfV5xxc/prof.fdata.122800.fdata /tmp/.tmpfV5xxc/prof.fdata.122804.fdata /tmp/.tmpfV5xxc/prof.fdata.122815.fdata /tmp/.tmpfV5xxc/prof.fdata.122818.fdata /tmp/.tmpfV5xxc/prof.fdata.122837.fdata /tmp/.tmpfV5xxc/prof.fdata.122843.fdata /tmp/.tmpfV5xxc/prof.fdata.122846.fdata /tmp/.tmpfV5xxc/prof.fdata.122863.fdata /tmp/.tmpfV5xxc/prof.fdata.122876.fdata /tmp/.tmpfV5xxc/prof.fdata.122888.fdata /tmp/.tmpfV5xxc/prof.fdata.122909.fdata /tmp/.tmpfV5xxc/prof.fdata.122922.fdata /tmp/.tmpfV5xxc/prof.fdata.122959.fdata /tmp/.tmpfV5xxc/prof.fdata.122983.fdata /tmp/.tmpfV5xxc/prof.fdata.122999.fdata /tmp/.tmpfV5xxc/prof.fdata.123014.fdata /tmp/.tmpfV5xxc/prof.fdata.123039.fdata /tmp/.tmpfV5xxc/prof.fdata.123054.fdata /tmp/.tmpfV5xxc/prof.fdata.123058.fdata /tmp/.tmpfV5xxc/prof.fdata.123079.fdata /tmp/.tmpfV5xxc/prof.fdata.123098.fdata /tmp/.tmpfV5xxc/prof.fdata.123113.fdata /tmp/.tmpfV5xxc/prof.fdata.123118.fdata /tmp/.tmpfV5xxc/prof.fdata.123122.fdata /tmp/.tmpfV5xxc/prof.fdata.123136.fdata /tmp/.tmpfV5xxc/prof.fdata.123141.fdata /tmp/.tmpfV5xxc/prof.fdata.123168.fdata /tmp/.tmpfV5xxc/prof.fdata.123169.fdata /tmp/.tmpfV5xxc/prof.fdata.123178.fdata /tmp/.tmpfV5xxc/prof.fdata.123191.fdata /tmp/.tmpfV5xxc/prof.fdata.123206.fdata /tmp/.tmpfV5xxc/prof.fdata.123208.fdata /tmp/.tmpfV5xxc/prof.fdata.123210.fdata /tmp/.tmpfV5xxc/prof.fdata.123225.fdata /tmp/.tmpfV5xxc/prof.fdata.123235.fdata /tmp/.tmpfV5xxc/prof.fdata.123242.fdata /tmp/.tmpfV5xxc/prof.fdata.123251.fdata /tmp/.tmpfV5xxc/prof.fdata.123253.fdata /tmp/.tmpfV5xxc/prof.fdata.123258.fdata /tmp/.tmpfV5xxc/prof.fdata.123276.fdata /tmp/.tmpfV5xxc/prof.fdata.123279.fdata /tmp/.tmpfV5xxc/prof.fdata.123302.fdata /tmp/.tmpfV5xxc/prof.fdata.123305.fdata /tmp/.tmpfV5xxc/prof.fdata.123307.fdata /tmp/.tmpfV5xxc/prof.fdata.123314.fdata /tmp/.tmpfV5xxc/prof.fdata.123316.fdata /tmp/.tmpfV5xxc/prof.fdata.123331.fdata /tmp/.tmpfV5xxc/prof.fdata.123342.fdata /tmp/.tmpfV5xxc/prof.fdata.123352.fdata /tmp/.tmpfV5xxc/prof.fdata.123365.fdata /tmp/.tmpfV5xxc/prof.fdata.123374.fdata /tmp/.tmpfV5xxc/prof.fdata.123378.fdata /tmp/.tmpfV5xxc/prof.fdata.123380.fdata /tmp/.tmpfV5xxc/prof.fdata.123391.fdata /tmp/.tmpfV5xxc/prof.fdata.123413.fdata /tmp/.tmpfV5xxc/prof.fdata.123415.fdata /tmp/.tmpfV5xxc/prof.fdata.123427.fdata /tmp/.tmpfV5xxc/prof.fdata.123431.fdata /tmp/.tmpfV5xxc/prof.fdata.123455.fdata /tmp/.tmpfV5xxc/prof.fdata.123468.fdata /tmp/.tmpfV5xxc/prof.fdata.123483.fdata /tmp/.tmpfV5xxc/prof.fdata.123497.fdata /tmp/.tmpfV5xxc/prof.fdata.123515.fdata /tmp/.tmpfV5xxc/prof.fdata.123528.fdata /tmp/.tmpfV5xxc/prof.fdata.123535.fdata /tmp/.tmpfV5xxc/prof.fdata.123562.fdata /tmp/.tmpfV5xxc/prof.fdata.123583.fdata /tmp/.tmpfV5xxc/prof.fdata.123596.fdata /tmp/.tmpfV5xxc/prof.fdata.123600.fdata /tmp/.tmpfV5xxc/prof.fdata.123603.fdata /tmp/.tmpfV5xxc/prof.fdata.123609.fdata /tmp/.tmpfV5xxc/prof.fdata.123613.fdata /tmp/.tmpfV5xxc/prof.fdata.123621.fdata /tmp/.tmpfV5xxc/prof.fdata.123636.fdata /tmp/.tmpfV5xxc/prof.fdata.123650.fdata /tmp/.tmpfV5xxc/prof.fdata.123662.fdata /tmp/.tmpfV5xxc/prof.fdata.123673.fdata /tmp/.tmpfV5xxc/prof.fdata.123683.fdata /tmp/.tmpfV5xxc/prof.fdata.123698.fdata /tmp/.tmpfV5xxc/prof.fdata.123712.fdata /tmp/.tmpfV5xxc/prof.fdata.123716.fdata /tmp/.tmpfV5xxc/prof.fdata.123719.fdata /tmp/.tmpfV5xxc/prof.fdata.123744.fdata /tmp/.tmpfV5xxc/prof.fdata.123747.fdata /tmp/.tmpfV5xxc/prof.fdata.123767.fdata /tmp/.tmpfV5xxc/prof.fdata.123778.fdata /tmp/.tmpfV5xxc/prof.fdata.123781.fdata /tmp/.tmpfV5xxc/prof.fdata.123787.fdata /tmp/.tmpfV5xxc/prof.fdata.123802.fdata /tmp/.tmpfV5xxc/prof.fdata.123825.fdata /tmp/.tmpfV5xxc/prof.fdata.123837.fdata /tmp/.tmpfV5xxc/prof.fdata.123848.fdata /tmp/.tmpfV5xxc/prof.fdata.123855.fdata /tmp/.tmpfV5xxc/prof.fdata.123882.fdata /tmp/.tmpfV5xxc/prof.fdata.123891.fdata /tmp/.tmpfV5xxc/prof.fdata.123904.fdata /tmp/.tmpfV5xxc/prof.fdata.123909.fdata /tmp/.tmpfV5xxc/prof.fdata.123914.fdata /tmp/.tmpfV5xxc/prof.fdata.123927.fdata /tmp/.tmpfV5xxc/prof.fdata.123929.fdata /tmp/.tmpfV5xxc/prof.fdata.123943.fdata /tmp/.tmpfV5xxc/prof.fdata.123951.fdata /tmp/.tmpfV5xxc/prof.fdata.123955.fdata /tmp/.tmpfV5xxc/prof.fdata.123959.fdata /tmp/.tmpfV5xxc/prof.fdata.123965.fdata /tmp/.tmpfV5xxc/prof.fdata.123972.fdata /tmp/.tmpfV5xxc/prof.fdata.123995.fdata /tmp/.tmpfV5xxc/prof.fdata.123997.fdata /tmp/.tmpfV5xxc/prof.fdata.124008.fdata /tmp/.tmpfV5xxc/prof.fdata.124012.fdata /tmp/.tmpfV5xxc/prof.fdata.124043.fdata /tmp/.tmpfV5xxc/prof.fdata.124048.fdata /tmp/.tmpfV5xxc/prof.fdata.124052.fdata /tmp/.tmpfV5xxc/prof.fdata.124084.fdata /tmp/.tmpfV5xxc/prof.fdata.124091.fdata /tmp/.tmpfV5xxc/prof.fdata.124099.fdata /tmp/.tmpfV5xxc/prof.fdata.124116.fdata /tmp/.tmpfV5xxc/prof.fdata.124120.fdata /tmp/.tmpfV5xxc/prof.fdata.124124.fdata /tmp/.tmpfV5xxc/prof.fdata.124137.fdata /tmp/.tmpfV5xxc/prof.fdata.124145.fdata /tmp/.tmpfV5xxc/prof.fdata.124157.fdata /tmp/.tmpfV5xxc/prof.fdata.124182.fdata /tmp/.tmpfV5xxc/prof.fdata.124203.fdata /tmp/.tmpfV5xxc/prof.fdata.124216.fdata /tmp/.tmpfV5xxc/prof.fdata.124232.fdata /tmp/.tmpfV5xxc/prof.fdata.124242.fdata /tmp/.tmpfV5xxc/prof.fdata.124250.fdata /tmp/.tmpfV5xxc/prof.fdata.124270.fdata /tmp/.tmpfV5xxc/prof.fdata.124297.fdata /tmp/.tmpfV5xxc/prof.fdata.124307.fdata /tmp/.tmpfV5xxc/prof.fdata.124321.fdata /tmp/.tmpfV5xxc/prof.fdata.124331.fdata /tmp/.tmpfV5xxc/prof.fdata.124337.fdata /tmp/.tmpfV5xxc/prof.fdata.124339.fdata /tmp/.tmpfV5xxc/prof.fdata.124347.fdata /tmp/.tmpfV5xxc/prof.fdata.124355.fdata /tmp/.tmpfV5xxc/prof.fdata.124377.fdata /tmp/.tmpfV5xxc/prof.fdata.124405.fdata /tmp/.tmpfV5xxc/prof.fdata.124413.fdata /tmp/.tmpfV5xxc/prof.fdata.124430.fdata /tmp/.tmpfV5xxc/prof.fdata.124438.fdata /tmp/.tmpfV5xxc/prof.fdata.124443.fdata /tmp/.tmpfV5xxc/prof.fdata.124471.fdata /tmp/.tmpfV5xxc/prof.fdata.124534.fdata /tmp/.tmpfV5xxc/prof.fdata.124542.fdata /tmp/.tmpfV5xxc/prof.fdata.124556.fdata /tmp/.tmpfV5xxc/prof.fdata.124580.fdata /tmp/.tmpfV5xxc/prof.fdata.124597.fdata /tmp/.tmpfV5xxc/prof.fdata.124621.fdata /tmp/.tmpfV5xxc/prof.fdata.124623.fdata /tmp/.tmpfV5xxc/prof.fdata.124638.fdata /tmp/.tmpfV5xxc/prof.fdata.124671.fdata /tmp/.tmpfV5xxc/prof.fdata.124690.fdata /tmp/.tmpfV5xxc/prof.fdata.124701.fdata /tmp/.tmpfV5xxc/prof.fdata.124711.fdata /tmp/.tmpfV5xxc/prof.fdata.124851.fdata /tmp/.tmpfV5xxc/prof.fdata.124877.fdata /tmp/.tmpfV5xxc/prof.fdata.125125.fdata /tmp/.tmpfV5xxc/prof.fdata.125155.fdata /tmp/.tmpfV5xxc/prof.fdata.125888.fdata /tmp/.tmpfV5xxc/prof.fdata.125923.fdata /tmp/.tmpfV5xxc/prof.fdata.126075.fdata /tmp/.tmpfV5xxc/prof.fdata.126227.fdata /tmp/.tmpfV5xxc/prof.fdata.126269.fdata /tmp/.tmpfV5xxc/prof.fdata.126420.fdata /tmp/.tmpfV5xxc/prof.fdata.126728.fdata /tmp/.tmpfV5xxc/prof.fdata.126733.fdata /tmp/.tmpfV5xxc/prof.fdata.126750.fdata /tmp/.tmpfV5xxc/prof.fdata.126784.fdata /tmp/.tmpfV5xxc/prof.fdata.126788.fdata /tmp/.tmpfV5xxc/prof.fdata.126795.fdata /tmp/.tmpfV5xxc/prof.fdata.126853.fdata /tmp/.tmpfV5xxc/prof.fdata.126879.fdata /tmp/.tmpfV5xxc/prof.fdata.126923.fdata /tmp/.tmpfV5xxc/prof.fdata.126924.fdata /tmp/.tmpfV5xxc/prof.fdata.126925.fdata /tmp/.tmpfV5xxc/prof.fdata.126926.fdata /tmp/.tmpfV5xxc/prof.fdata.126929.fdata /tmp/.tmpfV5xxc/prof.fdata.126930.fdata /tmp/.tmpfV5xxc/prof.fdata.126942.fdata /tmp/.tmpfV5xxc/prof.fdata.126943.fdata /tmp/.tmpfV5xxc/prof.fdata.126945.fdata /tmp/.tmpfV5xxc/prof.fdata.126947.fdata /tmp/.tmpfV5xxc/prof.fdata.126948.fdata /tmp/.tmpfV5xxc/prof.fdata.126949.fdata /tmp/.tmpfV5xxc/prof.fdata.126950.fdata /tmp/.tmpfV5xxc/prof.fdata.126952.fdata /tmp/.tmpfV5xxc/prof.fdata.126953.fdata /tmp/.tmpfV5xxc/prof.fdata.126954.fdata /tmp/.tmpfV5xxc/prof.fdata.126957.fdata /tmp/.tmpfV5xxc/prof.fdata.126959.fdata /tmp/.tmpfV5xxc/prof.fdata.126960.fdata /tmp/.tmpfV5xxc/prof.fdata.126962.fdata /tmp/.tmpfV5xxc/prof.fdata.126963.fdata /tmp/.tmpfV5xxc/prof.fdata.126964.fdata /tmp/.tmpfV5xxc/prof.fdata.127096.fdata /tmp/.tmpfV5xxc/prof.fdata.127100.fdata /tmp/.tmpfV5xxc/prof.fdata.127104.fdata /tmp/.tmpfV5xxc/prof.fdata.127107.fdata /tmp/.tmpfV5xxc/prof.fdata.127112.fdata /tmp/.tmpfV5xxc/prof.fdata.127115.fdata /tmp/.tmpfV5xxc/prof.fdata.127124.fdata /tmp/.tmpfV5xxc/prof.fdata.127128.fdata /tmp/.tmpfV5xxc/prof.fdata.127133.fdata /tmp/.tmpfV5xxc/prof.fdata.127150.fdata /tmp/.tmpfV5xxc/prof.fdata.127156.fdata /tmp/.tmpfV5xxc/prof.fdata.127178.fdata /tmp/.tmpfV5xxc/prof.fdata.127195.fdata /tmp/.tmpfV5xxc/prof.fdata.127200.fdata /tmp/.tmpfV5xxc/prof.fdata.127219.fdata /tmp/.tmpfV5xxc/prof.fdata.127245.fdata /tmp/.tmpfV5xxc/prof.fdata.127289.fdata /tmp/.tmpfV5xxc/prof.fdata.127290.fdata /tmp/.tmpfV5xxc/prof.fdata.127291.fdata /tmp/.tmpfV5xxc/prof.fdata.127292.fdata /tmp/.tmpfV5xxc/prof.fdata.127295.fdata /tmp/.tmpfV5xxc/prof.fdata.127296.fdata /tmp/.tmpfV5xxc/prof.fdata.127305.fdata /tmp/.tmpfV5xxc/prof.fdata.127306.fdata /tmp/.tmpfV5xxc/prof.fdata.127308.fdata /tmp/.tmpfV5xxc/prof.fdata.127311.fdata /tmp/.tmpfV5xxc/prof.fdata.127312.fdata /tmp/.tmpfV5xxc/prof.fdata.127314.fdata /tmp/.tmpfV5xxc/prof.fdata.127316.fdata /tmp/.tmpfV5xxc/prof.fdata.127317.fdata /tmp/.tmpfV5xxc/prof.fdata.127318.fdata /tmp/.tmpfV5xxc/prof.fdata.127320.fdata /tmp/.tmpfV5xxc/prof.fdata.127321.fdata /tmp/.tmpfV5xxc/prof.fdata.127323.fdata /tmp/.tmpfV5xxc/prof.fdata.127326.fdata /tmp/.tmpfV5xxc/prof.fdata.127327.fdata /tmp/.tmpfV5xxc/prof.fdata.127329.fdata /tmp/.tmpfV5xxc/prof.fdata.127332.fdata /tmp/.tmpfV5xxc/prof.fdata.127333.fdata /tmp/.tmpfV5xxc/prof.fdata.127340.fdata /tmp/.tmpfV5xxc/prof.fdata.127444.fdata /tmp/.tmpfV5xxc/prof.fdata.127446.fdata /tmp/.tmpfV5xxc/prof.fdata.127450.fdata /tmp/.tmpfV5xxc/prof.fdata.127452.fdata /tmp/.tmpfV5xxc/prof.fdata.127458.fdata /tmp/.tmpfV5xxc/prof.fdata.127477.fdata /tmp/.tmpfV5xxc/prof.fdata.127480.fdata /tmp/.tmpfV5xxc/prof.fdata.127484.fdata /tmp/.tmpfV5xxc/prof.fdata.127500.fdata /tmp/.tmpfV5xxc/prof.fdata.127510.fdata /tmp/.tmpfV5xxc/prof.fdata.127512.fdata /tmp/.tmpfV5xxc/prof.fdata.127514.fdata /tmp/.tmpfV5xxc/prof.fdata.127531.fdata /tmp/.tmpfV5xxc/prof.fdata.127533.fdata /tmp/.tmpfV5xxc/prof.fdata.127538.fdata /tmp/.tmpfV5xxc/prof.fdata.127543.fdata /tmp/.tmpfV5xxc/prof.fdata.127544.fdata /tmp/.tmpfV5xxc/prof.fdata.127548.fdata /tmp/.tmpfV5xxc/prof.fdata.127551.fdata /tmp/.tmpfV5xxc/prof.fdata.127554.fdata /tmp/.tmpfV5xxc/prof.fdata.127556.fdata /tmp/.tmpfV5xxc/prof.fdata.127558.fdata /tmp/.tmpfV5xxc/prof.fdata.127565.fdata /tmp/.tmpfV5xxc/prof.fdata.127576.fdata /tmp/.tmpfV5xxc/prof.fdata.127595.fdata /tmp/.tmpfV5xxc/prof.fdata.127601.fdata /tmp/.tmpfV5xxc/prof.fdata.127612.fdata /tmp/.tmpfV5xxc/prof.fdata.127624.fdata /tmp/.tmpfV5xxc/prof.fdata.127627.fdata /tmp/.tmpfV5xxc/prof.fdata.127630.fdata /tmp/.tmpfV5xxc/prof.fdata.127638.fdata /tmp/.tmpfV5xxc/prof.fdata.127658.fdata /tmp/.tmpfV5xxc/prof.fdata.127666.fdata /tmp/.tmpfV5xxc/prof.fdata.127674.fdata /tmp/.tmpfV5xxc/prof.fdata.127684.fdata /tmp/.tmpfV5xxc/prof.fdata.127688.fdata /tmp/.tmpfV5xxc/prof.fdata.127694.fdata /tmp/.tmpfV5xxc/prof.fdata.127709.fdata /tmp/.tmpfV5xxc/prof.fdata.127712.fdata /tmp/.tmpfV5xxc/prof.fdata.127721.fdata /tmp/.tmpfV5xxc/prof.fdata.127727.fdata /tmp/.tmpfV5xxc/prof.fdata.127741.fdata /tmp/.tmpfV5xxc/prof.fdata.127753.fdata /tmp/.tmpfV5xxc/prof.fdata.127756.fdata /tmp/.tmpfV5xxc/prof.fdata.127762.fdata /tmp/.tmpfV5xxc/prof.fdata.127768.fdata /tmp/.tmpfV5xxc/prof.fdata.127778.fdata /tmp/.tmpfV5xxc/prof.fdata.127785.fdata /tmp/.tmpfV5xxc/prof.fdata.127796.fdata /tmp/.tmpfV5xxc/prof.fdata.127797.fdata /tmp/.tmpfV5xxc/prof.fdata.127802.fdata /tmp/.tmpfV5xxc/prof.fdata.127812.fdata /tmp/.tmpfV5xxc/prof.fdata.127814.fdata /tmp/.tmpfV5xxc/prof.fdata.127821.fdata /tmp/.tmpfV5xxc/prof.fdata.127824.fdata /tmp/.tmpfV5xxc/prof.fdata.127835.fdata /tmp/.tmpfV5xxc/prof.fdata.127837.fdata /tmp/.tmpfV5xxc/prof.fdata.127846.fdata /tmp/.tmpfV5xxc/prof.fdata.127858.fdata /tmp/.tmpfV5xxc/prof.fdata.127867.fdata /tmp/.tmpfV5xxc/prof.fdata.127871.fdata /tmp/.tmpfV5xxc/prof.fdata.127877.fdata /tmp/.tmpfV5xxc/prof.fdata.127887.fdata /tmp/.tmpfV5xxc/prof.fdata.127891.fdata /tmp/.tmpfV5xxc/prof.fdata.127902.fdata /tmp/.tmpfV5xxc/prof.fdata.127909.fdata /tmp/.tmpfV5xxc/prof.fdata.127925.fdata /tmp/.tmpfV5xxc/prof.fdata.127929.fdata /tmp/.tmpfV5xxc/prof.fdata.127948.fdata /tmp/.tmpfV5xxc/prof.fdata.127954.fdata /tmp/.tmpfV5xxc/prof.fdata.127957.fdata /tmp/.tmpfV5xxc/prof.fdata.127968.fdata /tmp/.tmpfV5xxc/prof.fdata.127989.fdata /tmp/.tmpfV5xxc/prof.fdata.127996.fdata /tmp/.tmpfV5xxc/prof.fdata.128025.fdata /tmp/.tmpfV5xxc/prof.fdata.128026.fdata /tmp/.tmpfV5xxc/prof.fdata.128065.fdata /tmp/.tmpfV5xxc/prof.fdata.128066.fdata /tmp/.tmpfV5xxc/prof.fdata.128094.fdata /tmp/.tmpfV5xxc/prof.fdata.128107.fdata /tmp/.tmpfV5xxc/prof.fdata.128113.fdata /tmp/.tmpfV5xxc/prof.fdata.128116.fdata /tmp/.tmpfV5xxc/prof.fdata.128122.fdata /tmp/.tmpfV5xxc/prof.fdata.128128.fdata /tmp/.tmpfV5xxc/prof.fdata.128134.fdata /tmp/.tmpfV5xxc/prof.fdata.128146.fdata /tmp/.tmpfV5xxc/prof.fdata.128192.fdata /tmp/.tmpfV5xxc/prof.fdata.128218.fdata /tmp/.tmpfV5xxc/prof.fdata.128231.fdata /tmp/.tmpfV5xxc/prof.fdata.128232.fdata /tmp/.tmpfV5xxc/prof.fdata.128233.fdata /tmp/.tmpfV5xxc/prof.fdata.128234.fdata /tmp/.tmpfV5xxc/prof.fdata.128237.fdata /tmp/.tmpfV5xxc/prof.fdata.128238.fdata /tmp/.tmpfV5xxc/prof.fdata.128245.fdata /tmp/.tmpfV5xxc/prof.fdata.128246.fdata /tmp/.tmpfV5xxc/prof.fdata.128247.fdata /tmp/.tmpfV5xxc/prof.fdata.128248.fdata /tmp/.tmpfV5xxc/prof.fdata.128270.fdata /tmp/.tmpfV5xxc/prof.fdata.128275.fdata /tmp/.tmpfV5xxc/prof.fdata.128292.fdata /tmp/.tmpfV5xxc/prof.fdata.128316.fdata /tmp/.tmpfV5xxc/prof.fdata.128402.fdata /tmp/.tmpfV5xxc/prof.fdata.128428.fdata /tmp/.tmpfV5xxc/prof.fdata.128472.fdata /tmp/.tmpfV5xxc/prof.fdata.128473.fdata /tmp/.tmpfV5xxc/prof.fdata.128474.fdata /tmp/.tmpfV5xxc/prof.fdata.128475.fdata /tmp/.tmpfV5xxc/prof.fdata.128478.fdata /tmp/.tmpfV5xxc/prof.fdata.128479.fdata /tmp/.tmpfV5xxc/prof.fdata.128486.fdata /tmp/.tmpfV5xxc/prof.fdata.128489.fdata /tmp/.tmpfV5xxc/prof.fdata.128491.fdata /tmp/.tmpfV5xxc/prof.fdata.128492.fdata /tmp/.tmpfV5xxc/prof.fdata.128494.fdata /tmp/.tmpfV5xxc/prof.fdata.128496.fdata /tmp/.tmpfV5xxc/prof.fdata.128497.fdata /tmp/.tmpfV5xxc/prof.fdata.128498.fdata /tmp/.tmpfV5xxc/prof.fdata.128500.fdata /tmp/.tmpfV5xxc/prof.fdata.128501.fdata /tmp/.tmpfV5xxc/prof.fdata.128508.fdata /tmp/.tmpfV5xxc/prof.fdata.128509.fdata /tmp/.tmpfV5xxc/prof.fdata.128510.fdata /tmp/.tmpfV5xxc/prof.fdata.128513.fdata /tmp/.tmpfV5xxc/prof.fdata.128514.fdata /tmp/.tmpfV5xxc/prof.fdata.128515.fdata /tmp/.tmpfV5xxc/prof.fdata.128516.fdata /tmp/.tmpfV5xxc/prof.fdata.128517.fdata /tmp/.tmpfV5xxc/prof.fdata.128628.fdata /tmp/.tmpfV5xxc/prof.fdata.128630.fdata /tmp/.tmpfV5xxc/prof.fdata.128633.fdata /tmp/.tmpfV5xxc/prof.fdata.128636.fdata /tmp/.tmpfV5xxc/prof.fdata.128657.fdata /tmp/.tmpfV5xxc/prof.fdata.128662.fdata /tmp/.tmpfV5xxc/prof.fdata.128670.fdata /tmp/.tmpfV5xxc/prof.fdata.128678.fdata /tmp/.tmpfV5xxc/prof.fdata.128682.fdata /tmp/.tmpfV5xxc/prof.fdata.128685.fdata /tmp/.tmpfV5xxc/prof.fdata.128686.fdata /tmp/.tmpfV5xxc/prof.fdata.128690.fdata /tmp/.tmpfV5xxc/prof.fdata.128696.fdata /tmp/.tmpfV5xxc/prof.fdata.128701.fdata /tmp/.tmpfV5xxc/prof.fdata.128706.fdata /tmp/.tmpfV5xxc/prof.fdata.128709.fdata /tmp/.tmpfV5xxc/prof.fdata.128714.fdata /tmp/.tmpfV5xxc/prof.fdata.128715.fdata /tmp/.tmpfV5xxc/prof.fdata.128719.fdata /tmp/.tmpfV5xxc/prof.fdata.128732.fdata /tmp/.tmpfV5xxc/prof.fdata.128736.fdata /tmp/.tmpfV5xxc/prof.fdata.128742.fdata /tmp/.tmpfV5xxc/prof.fdata.128745.fdata /tmp/.tmpfV5xxc/prof.fdata.128749.fdata /tmp/.tmpfV5xxc/prof.fdata.128756.fdata /tmp/.tmpfV5xxc/prof.fdata.128760.fdata /tmp/.tmpfV5xxc/prof.fdata.128764.fdata /tmp/.tmpfV5xxc/prof.fdata.128772.fdata /tmp/.tmpfV5xxc/prof.fdata.128774.fdata /tmp/.tmpfV5xxc/prof.fdata.128794.fdata /tmp/.tmpfV5xxc/prof.fdata.128815.fdata /tmp/.tmpfV5xxc/prof.fdata.128841.fdata /tmp/.tmpfV5xxc/prof.fdata.128843.fdata /tmp/.tmpfV5xxc/prof.fdata.128850.fdata /tmp/.tmpfV5xxc/prof.fdata.128866.fdata /tmp/.tmpfV5xxc/prof.fdata.128874.fdata /tmp/.tmpfV5xxc/prof.fdata.128879.fdata /tmp/.tmpfV5xxc/prof.fdata.128896.fdata /tmp/.tmpfV5xxc/prof.fdata.128899.fdata /tmp/.tmpfV5xxc/prof.fdata.128914.fdata /tmp/.tmpfV5xxc/prof.fdata.128926.fdata /tmp/.tmpfV5xxc/prof.fdata.128931.fdata /tmp/.tmpfV5xxc/prof.fdata.128934.fdata /tmp/.tmpfV5xxc/prof.fdata.128938.fdata /tmp/.tmpfV5xxc/prof.fdata.128954.fdata /tmp/.tmpfV5xxc/prof.fdata.128969.fdata /tmp/.tmpfV5xxc/prof.fdata.128992.fdata /tmp/.tmpfV5xxc/prof.fdata.128997.fdata /tmp/.tmpfV5xxc/prof.fdata.129051.fdata /tmp/.tmpfV5xxc/prof.fdata.129071.fdata /tmp/.tmpfV5xxc/prof.fdata.129082.fdata /tmp/.tmpfV5xxc/prof.fdata.129089.fdata /tmp/.tmpfV5xxc/prof.fdata.129103.fdata /tmp/.tmpfV5xxc/prof.fdata.129107.fdata /tmp/.tmpfV5xxc/prof.fdata.129114.fdata /tmp/.tmpfV5xxc/prof.fdata.129118.fdata /tmp/.tmpfV5xxc/prof.fdata.129125.fdata /tmp/.tmpfV5xxc/prof.fdata.129135.fdata /tmp/.tmpfV5xxc/prof.fdata.129152.fdata /tmp/.tmpfV5xxc/prof.fdata.129156.fdata /tmp/.tmpfV5xxc/prof.fdata.129164.fdata /tmp/.tmpfV5xxc/prof.fdata.129178.fdata /tmp/.tmpfV5xxc/prof.fdata.129191.fdata /tmp/.tmpfV5xxc/prof.fdata.129195.fdata /tmp/.tmpfV5xxc/prof.fdata.129206.fdata /tmp/.tmpfV5xxc/prof.fdata.129208.fdata /tmp/.tmpfV5xxc/prof.fdata.129220.fdata /tmp/.tmpfV5xxc/prof.fdata.129233.fdata /tmp/.tmpfV5xxc/prof.fdata.129256.fdata /tmp/.tmpfV5xxc/prof.fdata.129259.fdata /tmp/.tmpfV5xxc/prof.fdata.129262.fdata /tmp/.tmpfV5xxc/prof.fdata.129267.fdata /tmp/.tmpfV5xxc/prof.fdata.129269.fdata /tmp/.tmpfV5xxc/prof.fdata.129272.fdata /tmp/.tmpfV5xxc/prof.fdata.129278.fdata /tmp/.tmpfV5xxc/prof.fdata.129287.fdata /tmp/.tmpfV5xxc/prof.fdata.129301.fdata /tmp/.tmpfV5xxc/prof.fdata.129312.fdata /tmp/.tmpfV5xxc/prof.fdata.129316.fdata /tmp/.tmpfV5xxc/prof.fdata.129319.fdata /tmp/.tmpfV5xxc/prof.fdata.129325.fdata /tmp/.tmpfV5xxc/prof.fdata.129334.fdata /tmp/.tmpfV5xxc/prof.fdata.129337.fdata /tmp/.tmpfV5xxc/prof.fdata.129346.fdata /tmp/.tmpfV5xxc/prof.fdata.129355.fdata /tmp/.tmpfV5xxc/prof.fdata.129358.fdata /tmp/.tmpfV5xxc/prof.fdata.129366.fdata /tmp/.tmpfV5xxc/prof.fdata.129371.fdata /tmp/.tmpfV5xxc/prof.fdata.129373.fdata /tmp/.tmpfV5xxc/prof.fdata.129386.fdata /tmp/.tmpfV5xxc/prof.fdata.129403.fdata /tmp/.tmpfV5xxc/prof.fdata.129418.fdata /tmp/.tmpfV5xxc/prof.fdata.129437.fdata /tmp/.tmpfV5xxc/prof.fdata.129470.fdata /tmp/.tmpfV5xxc/prof.fdata.129473.fdata /tmp/.tmpfV5xxc/prof.fdata.129486.fdata /tmp/.tmpfV5xxc/prof.fdata.129489.fdata /tmp/.tmpfV5xxc/prof.fdata.129498.fdata /tmp/.tmpfV5xxc/prof.fdata.129526.fdata /tmp/.tmpfV5xxc/prof.fdata.129541.fdata /tmp/.tmpfV5xxc/prof.fdata.129548.fdata /tmp/.tmpfV5xxc/prof.fdata.129555.fdata /tmp/.tmpfV5xxc/prof.fdata.129570.fdata /tmp/.tmpfV5xxc/prof.fdata.129577.fdata /tmp/.tmpfV5xxc/prof.fdata.129585.fdata /tmp/.tmpfV5xxc/prof.fdata.129589.fdata /tmp/.tmpfV5xxc/prof.fdata.129605.fdata /tmp/.tmpfV5xxc/prof.fdata.129610.fdata /tmp/.tmpfV5xxc/prof.fdata.129618.fdata /tmp/.tmpfV5xxc/prof.fdata.129626.fdata /tmp/.tmpfV5xxc/prof.fdata.129632.fdata /tmp/.tmpfV5xxc/prof.fdata.129646.fdata /tmp/.tmpfV5xxc/prof.fdata.129657.fdata /tmp/.tmpfV5xxc/prof.fdata.129735.fdata /tmp/.tmpfV5xxc/prof.fdata.129737.fdata /tmp/.tmpfV5xxc/prof.fdata.129824.fdata /tmp/.tmpfV5xxc/prof.fdata.129872.fdata /tmp/.tmpfV5xxc/prof.fdata.129882.fdata /tmp/.tmpfV5xxc/prof.fdata.129928.fdata /tmp/.tmpfV5xxc/prof.fdata.129937.fdata /tmp/.tmpfV5xxc/prof.fdata.130002.fdata /tmp/.tmpfV5xxc/prof.fdata.130005.fdata /tmp/.tmpfV5xxc/prof.fdata.130021.fdata /tmp/.tmpfV5xxc/prof.fdata.130061.fdata /tmp/.tmpfV5xxc/prof.fdata.130095.fdata /tmp/.tmpfV5xxc/prof.fdata.130138.fdata /tmp/.tmpfV5xxc/prof.fdata.130139.fdata /tmp/.tmpfV5xxc/prof.fdata.130141.fdata /tmp/.tmpfV5xxc/prof.fdata.130148.fdata /tmp/.tmpfV5xxc/prof.fdata.130150.fdata /tmp/.tmpfV5xxc/prof.fdata.130152.fdata /tmp/.tmpfV5xxc/prof.fdata.130153.fdata /tmp/.tmpfV5xxc/prof.fdata.130156.fdata /tmp/.tmpfV5xxc/prof.fdata.130157.fdata /tmp/.tmpfV5xxc/prof.fdata.130159.fdata /tmp/.tmpfV5xxc/prof.fdata.130160.fdata /tmp/.tmpfV5xxc/prof.fdata.130161.fdata /tmp/.tmpfV5xxc/prof.fdata.130164.fdata /tmp/.tmpfV5xxc/prof.fdata.130166.fdata /tmp/.tmpfV5xxc/prof.fdata.130170.fdata /tmp/.tmpfV5xxc/prof.fdata.130171.fdata /tmp/.tmpfV5xxc/prof.fdata.130172.fdata /tmp/.tmpfV5xxc/prof.fdata.130174.fdata /tmp/.tmpfV5xxc/prof.fdata.130175.fdata /tmp/.tmpfV5xxc/prof.fdata.130176.fdata /tmp/.tmpfV5xxc/prof.fdata.130279.fdata /tmp/.tmpfV5xxc/prof.fdata.130282.fdata /tmp/.tmpfV5xxc/prof.fdata.130284.fdata /tmp/.tmpfV5xxc/prof.fdata.130286.fdata /tmp/.tmpfV5xxc/prof.fdata.130308.fdata /tmp/.tmpfV5xxc/prof.fdata.130313.fdata /tmp/.tmpfV5xxc/prof.fdata.130321.fdata /tmp/.tmpfV5xxc/prof.fdata.130328.fdata /tmp/.tmpfV5xxc/prof.fdata.130331.fdata /tmp/.tmpfV5xxc/prof.fdata.130335.fdata /tmp/.tmpfV5xxc/prof.fdata.130337.fdata /tmp/.tmpfV5xxc/prof.fdata.130340.fdata /tmp/.tmpfV5xxc/prof.fdata.130342.fdata /tmp/.tmpfV5xxc/prof.fdata.130345.fdata /tmp/.tmpfV5xxc/prof.fdata.130351.fdata /tmp/.tmpfV5xxc/prof.fdata.130356.fdata /tmp/.tmpfV5xxc/prof.fdata.130361.fdata /tmp/.tmpfV5xxc/prof.fdata.130364.fdata /tmp/.tmpfV5xxc/prof.fdata.130376.fdata /tmp/.tmpfV5xxc/prof.fdata.130380.fdata /tmp/.tmpfV5xxc/prof.fdata.130390.fdata /tmp/.tmpfV5xxc/prof.fdata.130395.fdata /tmp/.tmpfV5xxc/prof.fdata.130397.fdata /tmp/.tmpfV5xxc/prof.fdata.130399.fdata /tmp/.tmpfV5xxc/prof.fdata.130402.fdata /tmp/.tmpfV5xxc/prof.fdata.130404.fdata /tmp/.tmpfV5xxc/prof.fdata.130418.fdata /tmp/.tmpfV5xxc/prof.fdata.130422.fdata /tmp/.tmpfV5xxc/prof.fdata.130427.fdata /tmp/.tmpfV5xxc/prof.fdata.130441.fdata /tmp/.tmpfV5xxc/prof.fdata.130461.fdata /tmp/.tmpfV5xxc/prof.fdata.130465.fdata /tmp/.tmpfV5xxc/prof.fdata.130468.fdata /tmp/.tmpfV5xxc/prof.fdata.130470.fdata /tmp/.tmpfV5xxc/prof.fdata.130479.fdata /tmp/.tmpfV5xxc/prof.fdata.130488.fdata /tmp/.tmpfV5xxc/prof.fdata.130495.fdata /tmp/.tmpfV5xxc/prof.fdata.130504.fdata /tmp/.tmpfV5xxc/prof.fdata.130506.fdata /tmp/.tmpfV5xxc/prof.fdata.130511.fdata /tmp/.tmpfV5xxc/prof.fdata.130517.fdata /tmp/.tmpfV5xxc/prof.fdata.130523.fdata /tmp/.tmpfV5xxc/prof.fdata.130531.fdata /tmp/.tmpfV5xxc/prof.fdata.130534.fdata /tmp/.tmpfV5xxc/prof.fdata.130538.fdata /tmp/.tmpfV5xxc/prof.fdata.130550.fdata /tmp/.tmpfV5xxc/prof.fdata.130555.fdata /tmp/.tmpfV5xxc/prof.fdata.130564.fdata /tmp/.tmpfV5xxc/prof.fdata.130565.fdata /tmp/.tmpfV5xxc/prof.fdata.130596.fdata /tmp/.tmpfV5xxc/prof.fdata.130602.fdata /tmp/.tmpfV5xxc/prof.fdata.130617.fdata /tmp/.tmpfV5xxc/prof.fdata.130623.fdata /tmp/.tmpfV5xxc/prof.fdata.130661.fdata /tmp/.tmpfV5xxc/prof.fdata.130666.fdata /tmp/.tmpfV5xxc/prof.fdata.130672.fdata /tmp/.tmpfV5xxc/prof.fdata.130678.fdata /tmp/.tmpfV5xxc/prof.fdata.130697.fdata /tmp/.tmpfV5xxc/prof.fdata.130714.fdata /tmp/.tmpfV5xxc/prof.fdata.130715.fdata /tmp/.tmpfV5xxc/prof.fdata.130716.fdata /tmp/.tmpfV5xxc/prof.fdata.130717.fdata /tmp/.tmpfV5xxc/prof.fdata.130720.fdata /tmp/.tmpfV5xxc/prof.fdata.130721.fdata /tmp/.tmpfV5xxc/prof.fdata.130726.fdata /tmp/.tmpfV5xxc/prof.fdata.130727.fdata /tmp/.tmpfV5xxc/prof.fdata.130746.fdata /tmp/.tmpfV5xxc/prof.fdata.130747.fdata /tmp/.tmpfV5xxc/prof.fdata.130761.fdata /tmp/.tmpfV5xxc/prof.fdata.130775.fdata /tmp/.tmpfV5xxc/prof.fdata.130789.fdata /tmp/.tmpfV5xxc/prof.fdata.130790.fdata /tmp/.tmpfV5xxc/prof.fdata.130791.fdata /tmp/.tmpfV5xxc/prof.fdata.130792.fdata /tmp/.tmpfV5xxc/prof.fdata.130795.fdata /tmp/.tmpfV5xxc/prof.fdata.130796.fdata /tmp/.tmpfV5xxc/prof.fdata.130805.fdata /tmp/.tmpfV5xxc/prof.fdata.130806.fdata /tmp/.tmpfV5xxc/prof.fdata.130807.fdata /tmp/.tmpfV5xxc/prof.fdata.130808.fdata /tmp/.tmpfV5xxc/prof.fdata.130809.fdata /tmp/.tmpfV5xxc/prof.fdata.130810.fdata /tmp/.tmpfV5xxc/prof.fdata.130858.fdata /tmp/.tmpfV5xxc/prof.fdata.130861.fdata /tmp/.tmpfV5xxc/prof.fdata.130864.fdata /tmp/.tmpfV5xxc/prof.fdata.130867.fdata /tmp/.tmpfV5xxc/prof.fdata.130869.fdata /tmp/.tmpfV5xxc/prof.fdata.130871.fdata /tmp/.tmpfV5xxc/prof.fdata.130877.fdata /tmp/.tmpfV5xxc/prof.fdata.130882.fdata /tmp/.tmpfV5xxc/prof.fdata.130936.fdata /tmp/.tmpfV5xxc/prof.fdata.130965.fdata > "/tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata" [at /checkout/obj]`
Profile from 735 files merged.
[2023-12-16T17:56:05.161Z INFO  opt_dist::training] LLVM BOLT statistics
[2023-12-16T17:56:05.161Z INFO  opt_dist::training] /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata: 147.66 MiB
##[endgroup]
---
BOLT-INFO: setting __hot_start to 0x5e00000
BOLT-INFO: setting __hot_end to 0x69ab819
[2023-12-16T17:56:34.716Z INFO  opt_dist] Optimizing /checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/librustc_driver-a64975a2f6af413b.so with BOLT
[2023-12-16T17:56:34.717Z INFO  opt_dist::utils::io] Copying file /checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/librustc_driver-a64975a2f6af413b.so to /tmp/.tmp9lQBf7
[2023-12-16T17:56:34.811Z INFO  opt_dist::exec] Executing `llvm-bolt -instrument /checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/librustc_driver-a64975a2f6af413b.so --instrumentation-file=/tmp/.tmpnF4n3R/prof.fdata --instrumentation-file-append-pid -o /tmp/.tmpBgecDV [at /checkout/obj]`
BOLT-INFO: Target architecture: x86_64
BOLT-INFO: BOLT version: <unknown>
BOLT-INFO: first alloc address is 0x0
BOLT-INFO: creating new program header table at address 0x3e00000, offset 0x3e00000
---
[2023-12-16T17:57:34Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:57:34Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:57:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpWoITab" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpWoITab#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:57:37Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-12-16T17:57:37Z DEBUG collector::compile::execute] cd "/tmp/.tmpWoITab" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpWoITab#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpWoITab/incremental-state"
[2023-12-16T17:57:40Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T17:57:40Z DEBUG collector::compile::execute] cd "/tmp/.tmpWoITab" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpWoITab#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpWoITab/incremental-state"
[2023-12-16T17:57:41Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpWoITab"
[2023-12-16T17:57:41Z 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" })
[2023-12-16T17:57:41Z 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" })
[2023-12-16T17:57:41Z DEBUG collector::compile::execute] cd "/tmp/.tmpWoITab" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpWoITab#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpWoITab/incremental-state"
[2023-12-16T17:57:44Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:57:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T17:57:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpb43sPQ" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpb43sPQ#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T17:57:46Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
[2023-12-16T17:59:51Z DEBUG collector::compile::execute] cd "/tmp/.tmpRFM5pp" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpRFM5pp#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpRFM5pp/incremental-state"
Running cargo-0.60.0: Debug + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2023-12-16T17:59:55Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T17:59:55Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T17:59:55Z DEBUG collector::compile::execute] cd "/tmp/.tmpi3DVIV" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpi3DVIV#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:00:16Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-12-16T18:00:16Z DEBUG collector::compile::execute] cd "/tmp/.tmpi3DVIV" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpi3DVIV#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpi3DVIV/incremental-state"
[2023-12-16T18:00:40Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T18:00:40Z DEBUG collector::compile::execute] cd "/tmp/.tmpi3DVIV" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpi3DVIV#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpi3DVIV/incremental-state"
[2023-12-16T18:00:46Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpi3DVIV"
[2023-12-16T18:00:46Z 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" })
[2023-12-16T18:00:46Z 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" })
[2023-12-16T18:00:46Z DEBUG collector::compile::execute] cd "/tmp/.tmpi3DVIV" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpi3DVIV#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpi3DVIV/incremental-state"
[2023-12-16T18:00:53Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:00:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T18:00:53Z DEBUG collector::compile::execute] cd "/tmp/.tmpkmegIN" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpkmegIN#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:01:23Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-12-16T18:01:23Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-12-16T18:01:23Z DEBUG collector::compile::execute] cd "/tmp/.tmpkmegIN" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpkmegIN#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpkmegIN/incremental-state"
[2023-12-16T18:01:52Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T18:01:52Z DEBUG collector::compile::execute] cd "/tmp/.tmpkmegIN" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpkmegIN#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpkmegIN/incremental-state"
[2023-12-16T18:01:57Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpkmegIN"
[2023-12-16T18:01:57Z 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" })
[2023-12-16T18:01:57Z 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" })
[2023-12-16T18:01:57Z DEBUG collector::compile::execute] cd "/tmp/.tmpkmegIN" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpkmegIN#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpkmegIN/incremental-state"
Executing benchmark ctfe-stress-5 (3/8)
Preparing ctfe-stress-5
[2023-12-16T18:02:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T18:02:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T18:02:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T18:02:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-12-16T18:02:07Z DEBUG collector::compile::execute] cd "/tmp/.tmp5CNFbS" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp5CNFbS#ctfe-stress-5@0.1.0" "--release" "--" "--skip-this-rustc"
[2023-12-16T18:02:07Z DEBUG collector::compile::execute] cd "/tmp/.tmps2gYUH" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmps2gYUH#ctfe-stress-5@0.1.0" "--" "--skip-this-rustc"
[2023-12-16T18:02:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpHAUtcp" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpHAUtcp#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2023-12-16T18:02:07Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:02:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-12-16T18:02:07Z DEBUG collector::compile::execute] cd "/tmp/.tmp4h4PBg" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp4h4PBg#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:02:12Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
---
[2023-12-16T18:02:19Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:02:19Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T18:02:19Z DEBUG collector::compile::execute] cd "/tmp/.tmpaVX6Ys" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpaVX6Ys#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:02:24Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-12-16T18:02:24Z DEBUG collector::compile::execute] cd "/tmp/.tmpaVX6Ys" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpaVX6Ys#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpaVX6Ys/incremental-state"
[2023-12-16T18:02:30Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T18:02:30Z DEBUG collector::compile::execute] cd "/tmp/.tmpaVX6Ys" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpaVX6Ys#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpaVX6Ys/incremental-state"
[2023-12-16T18:02:31Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:02:31Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T18:02:31Z DEBUG collector::compile::execute] cd "/tmp/.tmpIUUqQ8" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpIUUqQ8#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:02:36Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
[2023-12-16T18:02:56Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:02:56Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-12-16T18:02:56Z DEBUG collector::compile::execute] cd "/tmp/.tmpHO3Hpe" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpHO3Hpe#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:03:03Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-12-16T18:03:03Z DEBUG collector::compile::execute] cd "/tmp/.tmpHO3Hpe" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpHO3Hpe#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpHO3Hpe/incremental-state"
[2023-12-16T18:03:11Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T18:03:11Z DEBUG collector::compile::execute] cd "/tmp/.tmpHO3Hpe" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpHO3Hpe#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpHO3Hpe/incremental-state"
[2023-12-16T18:03:14Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpHO3Hpe"
[2023-12-16T18:03:14Z 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" })
[2023-12-16T18:03:14Z 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" })
[2023-12-16T18:03:14Z DEBUG collector::compile::execute] cd "/tmp/.tmpHO3Hpe" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpHO3Hpe#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpHO3Hpe/incremental-state"
[2023-12-16T18:03:17Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:03:17Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T18:03:17Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T18:03:17Z DEBUG collector::compile::execute] cd "/tmp/.tmpHExKTH" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpHExKTH#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:03:25Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-12-16T18:03:25Z DEBUG collector::compile::execute] cd "/tmp/.tmpHExKTH" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpHExKTH#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpHExKTH/incremental-state"
[2023-12-16T18:03:35Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T18:03:35Z DEBUG collector::compile::execute] cd "/tmp/.tmpHExKTH" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpHExKTH#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpHExKTH/incremental-state"
[2023-12-16T18:03:38Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpHExKTH"
[2023-12-16T18:03:38Z 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" })
[2023-12-16T18:03:38Z 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" })
[2023-12-16T18:03:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpHExKTH" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpHExKTH#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpHExKTH/incremental-state"
[2023-12-16T18:03:42Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:03:42Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T18:03:42Z DEBUG collector::compile::execute] cd "/tmp/.tmp00hriy" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp00hriy#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:03:50Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-12-16T18:03:50Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-12-16T18:03:50Z DEBUG collector::compile::execute] cd "/tmp/.tmp00hriy" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp00hriy#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp00hriy/incremental-state"
[2023-12-16T18:04:00Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T18:04:00Z DEBUG collector::compile::execute] cd "/tmp/.tmp00hriy" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp00hriy#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp00hriy/incremental-state"
[2023-12-16T18:04:03Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmp00hriy"
[2023-12-16T18:04:03Z 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" })
[2023-12-16T18:04:03Z 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" })
[2023-12-16T18:04:03Z DEBUG collector::compile::execute] cd "/tmp/.tmp00hriy" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp00hriy#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp00hriy/incremental-state"
Executing benchmark externs (5/8)
Preparing externs
[2023-12-16T18:04:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T18:04:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
---
[2023-12-16T18:04:10Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:04:10Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T18:04:10Z DEBUG collector::compile::execute] cd "/tmp/.tmpL5sgBG" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpL5sgBG#externs@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:04:11Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-12-16T18:04:11Z DEBUG collector::compile::execute] cd "/tmp/.tmpL5sgBG" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpL5sgBG#externs@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpL5sgBG/incremental-state"
[2023-12-16T18:04:12Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T18:04:12Z DEBUG collector::compile::execute] cd "/tmp/.tmpL5sgBG" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpL5sgBG#externs@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpL5sgBG/incremental-state"
[2023-12-16T18:04:13Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:04:13Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T18:04:13Z DEBUG collector::compile::execute] cd "/tmp/.tmpUQS94g" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpUQS94g#externs@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:04:14Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
Preparing match-stress
[2023-12-16T18:04:16Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T18:04:16Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-12-16T18:04:16Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T18:04:16Z DEBUG collector::compile::execute] cd "/tmp/.tmpfSvjMA" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpfSvjMA#match-stress@0.1.0" "--" "--skip-this-rustc"
[2023-12-16T18:04:16Z DEBUG collector::compile::execute] cd "/tmp/.tmprwI11K" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmprwI11K#match-stress@0.1.0" "--release" "--" "--skip-this-rustc"
[2023-12-16T18:04:16Z DEBUG collector::compile::execute] cd "/tmp/.tmpqdVLCq" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpqdVLCq#match-stress@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2023-12-16T18:04:17Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:04:17Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-12-16T18:04:17Z DEBUG collector::compile::execute] cd "/tmp/.tmpLbxHj3" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpLbxHj3#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:04:19Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-12-16T18:04:19Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-12-16T18:04:19Z DEBUG collector::compile::execute] cd "/tmp/.tmpLbxHj3" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpLbxHj3#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpLbxHj3/incremental-state"
[2023-12-16T18:04:21Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T18:04:21Z DEBUG collector::compile::execute] cd "/tmp/.tmpLbxHj3" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpLbxHj3#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpLbxHj3/incremental-state"
[2023-12-16T18:04:23Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:04:23Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T18:04:23Z DEBUG collector::compile::execute] cd "/tmp/.tmpirB5gE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpirB5gE#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:04:25Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-12-16T18:04:25Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-12-16T18:04:25Z DEBUG collector::compile::execute] cd "/tmp/.tmpirB5gE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpirB5gE#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpirB5gE/incremental-state"
[2023-12-16T18:04:28Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T18:04:28Z DEBUG collector::compile::execute] cd "/tmp/.tmpirB5gE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpirB5gE#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpirB5gE/incremental-state"
[2023-12-16T18:04:29Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:04:29Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T18:04:29Z DEBUG collector::compile::execute] cd "/tmp/.tmpKc6y3L" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpKc6y3L#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:04:31Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
Preparing token-stream-stress
[2023-12-16T18:04:36Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-12-16T18:04:36Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-12-16T18:04:36Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-12-16T18:04:36Z DEBUG collector::compile::execute] cd "/tmp/.tmpXVGBgM" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpXVGBgM#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2023-12-16T18:04:36Z DEBUG collector::compile::execute] cd "/tmp/.tmpkkZLmv" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpkkZLmv#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2023-12-16T18:04:36Z DEBUG collector::compile::execute] cd "/tmp/.tmpKdTMFR" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpKdTMFR#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2023-12-16T18:04:38Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:04:38Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-12-16T18:04:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpjOJUPv" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpjOJUPv#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:04:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-12-16T18:04:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-12-16T18:04:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpjOJUPv" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpjOJUPv#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpjOJUPv/incremental-state"
[2023-12-16T18:04:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T18:04:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpjOJUPv" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpjOJUPv#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpjOJUPv/incremental-state"
[2023-12-16T18:04:40Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:04:40Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T18:04:40Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T18:04:40Z DEBUG collector::compile::execute] cd "/tmp/.tmpzulZZB" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpzulZZB#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:04:41Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-12-16T18:04:41Z DEBUG collector::compile::execute] cd "/tmp/.tmpzulZZB" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpzulZZB#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpzulZZB/incremental-state"
[2023-12-16T18:04:42Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T18:04:42Z DEBUG collector::compile::execute] cd "/tmp/.tmpzulZZB" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpzulZZB#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpzulZZB/incremental-state"
[2023-12-16T18:04:43Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:04:43Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-12-16T18:04:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpwAcJ5o" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpwAcJ5o#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:04:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
[2023-12-16T18:04:47Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:04:47Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-12-16T18:04:47Z DEBUG collector::compile::execute] cd "/tmp/.tmpCwzYFg" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpCwzYFg#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:04:50Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-12-16T18:04:50Z DEBUG collector::compile::execute] cd "/tmp/.tmpCwzYFg" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpCwzYFg#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpCwzYFg/incremental-state"
[2023-12-16T18:04:53Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2023-12-16T18:04:53Z DEBUG collector::compile::execute] cd "/tmp/.tmpCwzYFg" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpCwzYFg#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpCwzYFg/incremental-state"
[2023-12-16T18:04:55Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpCwzYFg"
[2023-12-16T18:04:55Z 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" })
[2023-12-16T18:04:55Z 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" })
[2023-12-16T18:04:55Z DEBUG collector::compile::execute] cd "/tmp/.tmpCwzYFg" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpCwzYFg#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpCwzYFg/incremental-state"
[2023-12-16T18:04:58Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2023-12-16T18:04:58Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-12-16T18:04:58Z DEBUG collector::compile::execute] cd "/tmp/.tmpsw9PLi" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpsw9PLi#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2023-12-16T18:05:01Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
---
Finished benchmark tuple-stress (8/8)
[2023-12-16T18:05:22.005Z INFO  opt_dist::training] Merging rustc BOLT profiles from /tmp/.tmpnF4n3R/prof.fdata to /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata
##[endgroup]
##[group]Merging BOLT profiles
[2023-12-16T18:05:22.006Z INFO  opt_dist::exec] Executing `merge-fdata /tmp/.tmpnF4n3R/prof.fdata.131056.fdata /tmp/.tmpnF4n3R/prof.fdata.131070.fdata /tmp/.tmpnF4n3R/prof.fdata.131071.fdata /tmp/.tmpnF4n3R/prof.fdata.131072.fdata /tmp/.tmpnF4n3R/prof.fdata.131073.fdata /tmp/.tmpnF4n3R/prof.fdata.131074.fdata /tmp/.tmpnF4n3R/prof.fdata.131075.fdata /tmp/.tmpnF4n3R/prof.fdata.131079.fdata /tmp/.tmpnF4n3R/prof.fdata.131080.fdata /tmp/.tmpnF4n3R/prof.fdata.131081.fdata /tmp/.tmpnF4n3R/prof.fdata.131097.fdata /tmp/.tmpnF4n3R/prof.fdata.131106.fdata /tmp/.tmpnF4n3R/prof.fdata.131115.fdata /tmp/.tmpnF4n3R/prof.fdata.131125.fdata /tmp/.tmpnF4n3R/prof.fdata.131135.fdata /tmp/.tmpnF4n3R/prof.fdata.131145.fdata /tmp/.tmpnF4n3R/prof.fdata.131181.fdata /tmp/.tmpnF4n3R/prof.fdata.131218.fdata /tmp/.tmpnF4n3R/prof.fdata.131255.fdata /tmp/.tmpnF4n3R/prof.fdata.131268.fdata /tmp/.tmpnF4n3R/prof.fdata.131291.fdata /tmp/.tmpnF4n3R/prof.fdata.131308.fdata /tmp/.tmpnF4n3R/prof.fdata.131331.fdata /tmp/.tmpnF4n3R/prof.fdata.131332.fdata /tmp/.tmpnF4n3R/prof.fdata.131333.fdata /tmp/.tmpnF4n3R/prof.fdata.131334.fdata /tmp/.tmpnF4n3R/prof.fdata.131335.fdata /tmp/.tmpnF4n3R/prof.fdata.131336.fdata /tmp/.tmpnF4n3R/prof.fdata.131340.fdata /tmp/.tmpnF4n3R/prof.fdata.131341.fdata /tmp/.tmpnF4n3R/prof.fdata.131342.fdata /tmp/.tmpnF4n3R/prof.fdata.131354.fdata /tmp/.tmpnF4n3R/prof.fdata.131355.fdata /tmp/.tmpnF4n3R/prof.fdata.131356.fdata /tmp/.tmpnF4n3R/prof.fdata.131357.fdata /tmp/.tmpnF4n3R/prof.fdata.131358.fdata /tmp/.tmpnF4n3R/prof.fdata.131359.fdata /tmp/.tmpnF4n3R/prof.fdata.131361.fdata /tmp/.tmpnF4n3R/prof.fdata.131362.fdata /tmp/.tmpnF4n3R/prof.fdata.131364.fdata /tmp/.tmpnF4n3R/prof.fdata.131368.fdata /tmp/.tmpnF4n3R/prof.fdata.131369.fdata /tmp/.tmpnF4n3R/prof.fdata.131371.fdata /tmp/.tmpnF4n3R/prof.fdata.131372.fdata /tmp/.tmpnF4n3R/prof.fdata.131375.fdata /tmp/.tmpnF4n3R/prof.fdata.131379.fdata /tmp/.tmpnF4n3R/prof.fdata.131380.fdata /tmp/.tmpnF4n3R/prof.fdata.131381.fdata /tmp/.tmpnF4n3R/prof.fdata.131384.fdata /tmp/.tmpnF4n3R/prof.fdata.131394.fdata /tmp/.tmpnF4n3R/prof.fdata.131517.fdata /tmp/.tmpnF4n3R/prof.fdata.131519.fdata /tmp/.tmpnF4n3R/prof.fdata.131523.fdata /tmp/.tmpnF4n3R/prof.fdata.131530.fdata /tmp/.tmpnF4n3R/prof.fdata.131549.fdata /tmp/.tmpnF4n3R/prof.fdata.131554.fdata /tmp/.tmpnF4n3R/prof.fdata.131557.fdata /tmp/.tmpnF4n3R/prof.fdata.131560.fdata /tmp/.tmpnF4n3R/prof.fdata.131565.fdata /tmp/.tmpnF4n3R/prof.fdata.131568.fdata /tmp/.tmpnF4n3R/prof.fdata.131574.fdata /tmp/.tmpnF4n3R/prof.fdata.131578.fdata /tmp/.tmpnF4n3R/prof.fdata.131581.fdata /tmp/.tmpnF4n3R/prof.fdata.131586.fdata /tmp/.tmpnF4n3R/prof.fdata.131590.fdata /tmp/.tmpnF4n3R/prof.fdata.131597.fdata /tmp/.tmpnF4n3R/prof.fdata.131598.fdata /tmp/.tmpnF4n3R/prof.fdata.131603.fdata /tmp/.tmpnF4n3R/prof.fdata.131604.fdata /tmp/.tmpnF4n3R/prof.fdata.131606.fdata /tmp/.tmpnF4n3R/prof.fdata.131612.fdata /tmp/.tmpnF4n3R/prof.fdata.131617.fdata /tmp/.tmpnF4n3R/prof.fdata.131625.fdata /tmp/.tmpnF4n3R/prof.fdata.131628.fdata /tmp/.tmpnF4n3R/prof.fdata.131631.fdata /tmp/.tmpnF4n3R/prof.fdata.131651.fdata /tmp/.tmpnF4n3R/prof.fdata.131658.fdata /tmp/.tmpnF4n3R/prof.fdata.131670.fdata /tmp/.tmpnF4n3R/prof.fdata.131690.fdata /tmp/.tmpnF4n3R/prof.fdata.131703.fdata /tmp/.tmpnF4n3R/prof.fdata.131712.fdata /tmp/.tmpnF4n3R/prof.fdata.131725.fdata /tmp/.tmpnF4n3R/prof.fdata.131731.fdata /tmp/.tmpnF4n3R/prof.fdata.131737.fdata /tmp/.tmpnF4n3R/prof.fdata.131741.fdata /tmp/.tmpnF4n3R/prof.fdata.131750.fdata /tmp/.tmpnF4n3R/prof.fdata.131764.fdata /tmp/.tmpnF4n3R/prof.fdata.131780.fdata /tmp/.tmpnF4n3R/prof.fdata.131786.fdata /tmp/.tmpnF4n3R/prof.fdata.131789.fdata /tmp/.tmpnF4n3R/prof.fdata.131790.fdata /tmp/.tmpnF4n3R/prof.fdata.131793.fdata /tmp/.tmpnF4n3R/prof.fdata.131796.fdata /tmp/.tmpnF4n3R/prof.fdata.131799.fdata /tmp/.tmpnF4n3R/prof.fdata.131802.fdata /tmp/.tmpnF4n3R/prof.fdata.131825.fdata /tmp/.tmpnF4n3R/prof.fdata.131832.fdata /tmp/.tmpnF4n3R/prof.fdata.131839.fdata /tmp/.tmpnF4n3R/prof.fdata.131845.fdata /tmp/.tmpnF4n3R/prof.fdata.131864.fdata /tmp/.tmpnF4n3R/prof.fdata.131880.fdata /tmp/.tmpnF4n3R/prof.fdata.131885.fdata /tmp/.tmpnF4n3R/prof.fdata.131905.fdata /tmp/.tmpnF4n3R/prof.fdata.131909.fdata /tmp/.tmpnF4n3R/prof.fdata.131915.fdata /tmp/.tmpnF4n3R/prof.fdata.131921.fdata /tmp/.tmpnF4n3R/prof.fdata.131925.fdata /tmp/.tmpnF4n3R/prof.fdata.131949.fdata /tmp/.tmpnF4n3R/prof.fdata.131956.fdata /tmp/.tmpnF4n3R/prof.fdata.131965.fdata /tmp/.tmpnF4n3R/prof.fdata.131972.fdata /tmp/.tmpnF4n3R/prof.fdata.131977.fdata /tmp/.tmpnF4n3R/prof.fdata.131987.fdata /tmp/.tmpnF4n3R/prof.fdata.131995.fdata /tmp/.tmpnF4n3R/prof.fdata.131996.fdata /tmp/.tmpnF4n3R/prof.fdata.132036.fdata /tmp/.tmpnF4n3R/prof.fdata.132048.fdata /tmp/.tmpnF4n3R/prof.fdata.132061.fdata /tmp/.tmpnF4n3R/prof.fdata.132070.fdata /tmp/.tmpnF4n3R/prof.fdata.132088.fdata /tmp/.tmpnF4n3R/prof.fdata.132108.fdata /tmp/.tmpnF4n3R/prof.fdata.132121.fdata /tmp/.tmpnF4n3R/prof.fdata.132125.fdata /tmp/.tmpnF4n3R/prof.fdata.132138.fdata /tmp/.tmpnF4n3R/prof.fdata.132141.fdata /tmp/.tmpnF4n3R/prof.fdata.132147.fdata /tmp/.tmpnF4n3R/prof.fdata.132149.fdata /tmp/.tmpnF4n3R/prof.fdata.132155.fdata /tmp/.tmpnF4n3R/prof.fdata.132165.fdata /tmp/.tmpnF4n3R/prof.fdata.132171.fdata /tmp/.tmpnF4n3R/prof.fdata.132179.fdata /tmp/.tmpnF4n3R/prof.fdata.132190.fdata /tmp/.tmpnF4n3R/prof.fdata.132198.fdata /tmp/.tmpnF4n3R/prof.fdata.132207.fdata /tmp/.tmpnF4n3R/prof.fdata.132223.fdata /tmp/.tmpnF4n3R/prof.fdata.132245.fdata /tmp/.tmpnF4n3R/prof.fdata.132249.fdata /tmp/.tmpnF4n3R/prof.fdata.132252.fdata /tmp/.tmpnF4n3R/prof.fdata.132258.fdata /tmp/.tmpnF4n3R/prof.fdata.132262.fdata /tmp/.tmpnF4n3R/prof.fdata.132267.fdata /tmp/.tmpnF4n3R/prof.fdata.132277.fdata /tmp/.tmpnF4n3R/prof.fdata.132287.fdata /tmp/.tmpnF4n3R/prof.fdata.132288.fdata /tmp/.tmpnF4n3R/prof.fdata.132309.fdata /tmp/.tmpnF4n3R/prof.fdata.132314.fdata /tmp/.tmpnF4n3R/prof.fdata.132319.fdata /tmp/.tmpnF4n3R/prof.fdata.132325.fdata /tmp/.tmpnF4n3R/prof.fdata.132343.fdata /tmp/.tmpnF4n3R/prof.fdata.132351.fdata /tmp/.tmpnF4n3R/prof.fdata.132355.fdata /tmp/.tmpnF4n3R/prof.fdata.132363.fdata /tmp/.tmpnF4n3R/prof.fdata.132391.fdata /tmp/.tmpnF4n3R/prof.fdata.132402.fdata /tmp/.tmpnF4n3R/prof.fdata.132421.fdata /tmp/.tmpnF4n3R/prof.fdata.132422.fdata /tmp/.tmpnF4n3R/prof.fdata.132433.fdata /tmp/.tmpnF4n3R/prof.fdata.132443.fdata /tmp/.tmpnF4n3R/prof.fdata.132445.fdata /tmp/.tmpnF4n3R/prof.fdata.132453.fdata /tmp/.tmpnF4n3R/prof.fdata.132467.fdata /tmp/.tmpnF4n3R/prof.fdata.132484.fdata /tmp/.tmpnF4n3R/prof.fdata.132487.fdata /tmp/.tmpnF4n3R/prof.fdata.132499.fdata /tmp/.tmpnF4n3R/prof.fdata.132503.fdata /tmp/.tmpnF4n3R/prof.fdata.132509.fdata /tmp/.tmpnF4n3R/prof.fdata.132510.fdata /tmp/.tmpnF4n3R/prof.fdata.132513.fdata /tmp/.tmpnF4n3R/prof.fdata.132521.fdata /tmp/.tmpnF4n3R/prof.fdata.132525.fdata /tmp/.tmpnF4n3R/prof.fdata.132529.fdata /tmp/.tmpnF4n3R/prof.fdata.132535.fdata /tmp/.tmpnF4n3R/prof.fdata.132563.fdata /tmp/.tmpnF4n3R/prof.fdata.132573.fdata /tmp/.tmpnF4n3R/prof.fdata.132580.fdata /tmp/.tmpnF4n3R/prof.fdata.132587.fdata /tmp/.tmpnF4n3R/prof.fdata.132597.fdata /tmp/.tmpnF4n3R/prof.fdata.132600.fdata /tmp/.tmpnF4n3R/prof.fdata.132613.fdata /tmp/.tmpnF4n3R/prof.fdata.132618.fdata /tmp/.tmpnF4n3R/prof.fdata.132623.fdata /tmp/.tmpnF4n3R/prof.fdata.132631.fdata /tmp/.tmpnF4n3R/prof.fdata.132632.fdata /tmp/.tmpnF4n3R/prof.fdata.132655.fdata /tmp/.tmpnF4n3R/prof.fdata.132661.fdata /tmp/.tmpnF4n3R/prof.fdata.132692.fdata /tmp/.tmpnF4n3R/prof.fdata.132694.fdata /tmp/.tmpnF4n3R/prof.fdata.132700.fdata /tmp/.tmpnF4n3R/prof.fdata.132706.fdata /tmp/.tmpnF4n3R/prof.fdata.132715.fdata /tmp/.tmpnF4n3R/prof.fdata.132737.fdata /tmp/.tmpnF4n3R/prof.fdata.132740.fdata /tmp/.tmpnF4n3R/prof.fdata.132742.fdata /tmp/.tmpnF4n3R/prof.fdata.132753.fdata /tmp/.tmpnF4n3R/prof.fdata.132765.fdata /tmp/.tmpnF4n3R/prof.fdata.132786.fdata /tmp/.tmpnF4n3R/prof.fdata.132795.fdata /tmp/.tmpnF4n3R/prof.fdata.132813.fdata /tmp/.tmpnF4n3R/prof.fdata.132834.fdata /tmp/.tmpnF4n3R/prof.fdata.132835.fdata /tmp/.tmpnF4n3R/prof.fdata.132841.fdata /tmp/.tmpnF4n3R/prof.fdata.132876.fdata /tmp/.tmpnF4n3R/prof.fdata.132880.fdata /tmp/.tmpnF4n3R/prof.fdata.132889.fdata /tmp/.tmpnF4n3R/prof.fdata.132905.fdata /tmp/.tmpnF4n3R/prof.fdata.132912.fdata /tmp/.tmpnF4n3R/prof.fdata.132918.fdata /tmp/.tmpnF4n3R/prof.fdata.132920.fdata /tmp/.tmpnF4n3R/prof.fdata.132926.fdata /tmp/.tmpnF4n3R/prof.fdata.132930.fdata /tmp/.tmpnF4n3R/prof.fdata.132934.fdata /tmp/.tmpnF4n3R/prof.fdata.132942.fdata /tmp/.tmpnF4n3R/prof.fdata.132943.fdata /tmp/.tmpnF4n3R/prof.fdata.132948.fdata /tmp/.tmpnF4n3R/prof.fdata.132950.fdata /tmp/.tmpnF4n3R/prof.fdata.132954.fdata /tmp/.tmpnF4n3R/prof.fdata.132964.fdata /tmp/.tmpnF4n3R/prof.fdata.132966.fdata /tmp/.tmpnF4n3R/prof.fdata.132976.fdata /tmp/.tmpnF4n3R/prof.fdata.132993.fdata /tmp/.tmpnF4n3R/prof.fdata.133009.fdata /tmp/.tmpnF4n3R/prof.fdata.133012.fdata /tmp/.tmpnF4n3R/prof.fdata.133017.fdata /tmp/.tmpnF4n3R/prof.fdata.133031.fdata /tmp/.tmpnF4n3R/prof.fdata.133038.fdata /tmp/.tmpnF4n3R/prof.fdata.133044.fdata /tmp/.tmpnF4n3R/prof.fdata.133049.fdata /tmp/.tmpnF4n3R/prof.fdata.133052.fdata /tmp/.tmpnF4n3R/prof.fdata.133055.fdata /tmp/.tmpnF4n3R/prof.fdata.133062.fdata /tmp/.tmpnF4n3R/prof.fdata.133070.fdata /tmp/.tmpnF4n3R/prof.fdata.133072.fdata /tmp/.tmpnF4n3R/prof.fdata.133081.fdata /tmp/.tmpnF4n3R/prof.fdata.133102.fdata /tmp/.tmpnF4n3R/prof.fdata.133109.fdata /tmp/.tmpnF4n3R/prof.fdata.133116.fdata /tmp/.tmpnF4n3R/prof.fdata.133122.fdata /tmp/.tmpnF4n3R/prof.fdata.133129.fdata /tmp/.tmpnF4n3R/prof.fdata.133151.fdata /tmp/.tmpnF4n3R/prof.fdata.133179.fdata /tmp/.tmpnF4n3R/prof.fdata.133184.fdata /tmp/.tmpnF4n3R/prof.fdata.133186.fdata /tmp/.tmpnF4n3R/prof.fdata.133188.fdata /tmp/.tmpnF4n3R/prof.fdata.133211.fdata /tmp/.tmpnF4n3R/prof.fdata.133216.fdata /tmp/.tmpnF4n3R/prof.fdata.133224.fdata /tmp/.tmpnF4n3R/prof.fdata.133244.fdata /tmp/.tmpnF4n3R/prof.fdata.133274.fdata /tmp/.tmpnF4n3R/prof.fdata.133279.fdata /tmp/.tmpnF4n3R/prof.fdata.133284.fdata /tmp/.tmpnF4n3R/prof.fdata.133287.fdata /tmp/.tmpnF4n3R/prof.fdata.133298.fdata /tmp/.tmpnF4n3R/prof.fdata.133301.fdata /tmp/.tmpnF4n3R/prof.fdata.133313.fdata /tmp/.tmpnF4n3R/prof.fdata.133330.fdata /tmp/.tmpnF4n3R/prof.fdata.133338.fdata /tmp/.tmpnF4n3R/prof.fdata.133349.fdata /tmp/.tmpnF4n3R/prof.fdata.133354.fdata /tmp/.tmpnF4n3R/prof.fdata.133369.fdata /tmp/.tmpnF4n3R/prof.fdata.133377.fdata /tmp/.tmpnF4n3R/prof.fdata.133393.fdata /tmp/.tmpnF4n3R/prof.fdata.133395.fdata /tmp/.tmpnF4n3R/prof.fdata.133403.fdata /tmp/.tmpnF4n3R/prof.fdata.133420.fdata /tmp/.tmpnF4n3R/prof.fdata.133423.fdata /tmp/.tmpnF4n3R/prof.fdata.133429.fdata /tmp/.tmpnF4n3R/prof.fdata.133437.fdata /tmp/.tmpnF4n3R/prof.fdata.133448.fdata /tmp/.tmpnF4n3R/prof.fdata.133456.fdata /tmp/.tmpnF4n3R/prof.fdata.133463.fdata /tmp/.tmpnF4n3R/prof.fdata.133478.fdata /tmp/.tmpnF4n3R/prof.fdata.133488.fdata /tmp/.tmpnF4n3R/prof.fdata.133498.fdata /tmp/.tmpnF4n3R/prof.fdata.133503.fdata /tmp/.tmpnF4n3R/prof.fdata.133523.fdata /tmp/.tmpnF4n3R/prof.fdata.133536.fdata /tmp/.tmpnF4n3R/prof.fdata.133540.fdata /tmp/.tmpnF4n3R/prof.fdata.133541.fdata /tmp/.tmpnF4n3R/prof.fdata.133547.fdata /tmp/.tmpnF4n3R/prof.fdata.133566.fdata /tmp/.tmpnF4n3R/prof.fdata.133570.fdata /tmp/.tmpnF4n3R/prof.fdata.133572.fdata /tmp/.tmpnF4n3R/prof.fdata.133575.fdata /tmp/.tmpnF4n3R/prof.fdata.133589.fdata /tmp/.tmpnF4n3R/prof.fdata.133596.fdata /tmp/.tmpnF4n3R/prof.fdata.133600.fdata /tmp/.tmpnF4n3R/prof.fdata.133617.fdata /tmp/.tmpnF4n3R/prof.fdata.133622.fdata /tmp/.tmpnF4n3R/prof.fdata.133632.fdata /tmp/.tmpnF4n3R/prof.fdata.133636.fdata /tmp/.tmpnF4n3R/prof.fdata.133645.fdata /tmp/.tmpnF4n3R/prof.fdata.133660.fdata /tmp/.tmpnF4n3R/prof.fdata.133661.fdata /tmp/.tmpnF4n3R/prof.fdata.133678.fdata /tmp/.tmpnF4n3R/prof.fdata.133681.fdata /tmp/.tmpnF4n3R/prof.fdata.133689.fdata /tmp/.tmpnF4n3R/prof.fdata.133702.fdata /tmp/.tmpnF4n3R/prof.fdata.133706.fdata /tmp/.tmpnF4n3R/prof.fdata.133729.fdata /tmp/.tmpnF4n3R/prof.fdata.133738.fdata /tmp/.tmpnF4n3R/prof.fdata.133742.fdata /tmp/.tmpnF4n3R/prof.fdata.133747.fdata /tmp/.tmpnF4n3R/prof.fdata.133757.fdata /tmp/.tmpnF4n3R/prof.fdata.133778.fdata /tmp/.tmpnF4n3R/prof.fdata.133782.fdata /tmp/.tmpnF4n3R/prof.fdata.133787.fdata /tmp/.tmpnF4n3R/prof.fdata.133790.fdata /tmp/.tmpnF4n3R/prof.fdata.133799.fdata /tmp/.tmpnF4n3R/prof.fdata.133812.fdata /tmp/.tmpnF4n3R/prof.fdata.133821.fdata /tmp/.tmpnF4n3R/prof.fdata.133832.fdata /tmp/.tmpnF4n3R/prof.fdata.133834.fdata /tmp/.tmpnF4n3R/prof.fdata.133847.fdata /tmp/.tmpnF4n3R/prof.fdata.133851.fdata /tmp/.tmpnF4n3R/prof.fdata.133854.fdata /tmp/.tmpnF4n3R/prof.fdata.133873.fdata /tmp/.tmpnF4n3R/prof.fdata.133876.fdata /tmp/.tmpnF4n3R/prof.fdata.133901.fdata /tmp/.tmpnF4n3R/prof.fdata.133903.fdata /tmp/.tmpnF4n3R/prof.fdata.133910.fdata /tmp/.tmpnF4n3R/prof.fdata.133926.fdata /tmp/.tmpnF4n3R/prof.fdata.133930.fdata /tmp/.tmpnF4n3R/prof.fdata.133933.fdata /tmp/.tmpnF4n3R/prof.fdata.133938.fdata /tmp/.tmpnF4n3R/prof.fdata.133944.fdata /tmp/.tmpnF4n3R/prof.fdata.133951.fdata /tmp/.tmpnF4n3R/prof.fdata.133956.fdata /tmp/.tmpnF4n3R/prof.fdata.133959.fdata /tmp/.tmpnF4n3R/prof.fdata.133966.fdata /tmp/.tmpnF4n3R/prof.fdata.133975.fdata /tmp/.tmpnF4n3R/prof.fdata.133983.fdata /tmp/.tmpnF4n3R/prof.fdata.134010.fdata /tmp/.tmpnF4n3R/prof.fdata.134014.fdata /tmp/.tmpnF4n3R/prof.fdata.134022.fdata /tmp/.tmpnF4n3R/prof.fdata.134028.fdata /tmp/.tmpnF4n3R/prof.fdata.134031.fdata /tmp/.tmpnF4n3R/prof.fdata.134039.fdata /tmp/.tmpnF4n3R/prof.fdata.134056.fdata /tmp/.tmpnF4n3R/prof.fdata.134061.fdata /tmp/.tmpnF4n3R/prof.fdata.134072.fdata /tmp/.tmpnF4n3R/prof.fdata.134082.fdata /tmp/.tmpnF4n3R/prof.fdata.134088.fdata /tmp/.tmpnF4n3R/prof.fdata.134096.fdata /tmp/.tmpnF4n3R/prof.fdata.134103.fdata /tmp/.tmpnF4n3R/prof.fdata.134110.fdata /tmp/.tmpnF4n3R/prof.fdata.134114.fdata /tmp/.tmpnF4n3R/prof.fdata.134122.fdata /tmp/.tmpnF4n3R/prof.fdata.134130.fdata /tmp/.tmpnF4n3R/prof.fdata.134139.fdata /tmp/.tmpnF4n3R/prof.fdata.134143.fdata /tmp/.tmpnF4n3R/prof.fdata.134145.fdata /tmp/.tmpnF4n3R/prof.fdata.134154.fdata /tmp/.tmpnF4n3R/prof.fdata.134159.fdata /tmp/.tmpnF4n3R/prof.fdata.134170.fdata /tmp/.tmpnF4n3R/prof.fdata.134173.fdata /tmp/.tmpnF4n3R/prof.fdata.134192.fdata /tmp/.tmpnF4n3R/prof.fdata.134204.fdata /tmp/.tmpnF4n3R/prof.fdata.134213.fdata /tmp/.tmpnF4n3R/prof.fdata.134216.fdata /tmp/.tmpnF4n3R/prof.fdata.134229.fdata /tmp/.tmpnF4n3R/prof.fdata.134233.fdata /tmp/.tmpnF4n3R/prof.fdata.134237.fdata /tmp/.tmpnF4n3R/prof.fdata.134247.fdata /tmp/.tmpnF4n3R/prof.fdata.134254.fdata /tmp/.tmpnF4n3R/prof.fdata.134258.fdata /tmp/.tmpnF4n3R/prof.fdata.134264.fdata /tmp/.tmpnF4n3R/prof.fdata.134275.fdata /tmp/.tmpnF4n3R/prof.fdata.134282.fdata /tmp/.tmpnF4n3R/prof.fdata.134283.fdata /tmp/.tmpnF4n3R/prof.fdata.134291.fdata /tmp/.tmpnF4n3R/prof.fdata.134296.fdata /tmp/.tmpnF4n3R/prof.fdata.134303.fdata /tmp/.tmpnF4n3R/prof.fdata.134306.fdata /tmp/.tmpnF4n3R/prof.fdata.134312.fdata /tmp/.tmpnF4n3R/prof.fdata.134317.fdata /tmp/.tmpnF4n3R/prof.fdata.134323.fdata /tmp/.tmpnF4n3R/prof.fdata.134329.fdata /tmp/.tmpnF4n3R/prof.fdata.134335.fdata /tmp/.tmpnF4n3R/prof.fdata.134339.fdata /tmp/.tmpnF4n3R/prof.fdata.134343.fdata /tmp/.tmpnF4n3R/prof.fdata.134356.fdata /tmp/.tmpnF4n3R/prof.fdata.134357.fdata /tmp/.tmpnF4n3R/prof.fdata.134365.fdata /tmp/.tmpnF4n3R/prof.fdata.134373.fdata /tmp/.tmpnF4n3R/prof.fdata.134376.fdata /tmp/.tmpnF4n3R/prof.fdata.134396.fdata /tmp/.tmpnF4n3R/prof.fdata.134402.fdata /tmp/.tmpnF4n3R/prof.fdata.134414.fdata /tmp/.tmpnF4n3R/prof.fdata.134428.fdata /tmp/.tmpnF4n3R/prof.fdata.134435.fdata /tmp/.tmpnF4n3R/prof.fdata.134445.fdata /tmp/.tmpnF4n3R/prof.fdata.134454.fdata /tmp/.tmpnF4n3R/prof.fdata.134458.fdata /tmp/.tmpnF4n3R/prof.fdata.134479.fdata /tmp/.tmpnF4n3R/prof.fdata.134481.fdata /tmp/.tmpnF4n3R/prof.fdata.134487.fdata /tmp/.tmpnF4n3R/prof.fdata.134494.fdata /tmp/.tmpnF4n3R/prof.fdata.134499.fdata /tmp/.tmpnF4n3R/prof.fdata.134502.fdata /tmp/.tmpnF4n3R/prof.fdata.134506.fdata /tmp/.tmpnF4n3R/prof.fdata.134516.fdata /tmp/.tmpnF4n3R/prof.fdata.134522.fdata /tmp/.tmpnF4n3R/prof.fdata.134539.fdata /tmp/.tmpnF4n3R/prof.fdata.134546.fdata /tmp/.tmpnF4n3R/prof.fdata.134554.fdata /tmp/.tmpnF4n3R/prof.fdata.134563.fdata /tmp/.tmpnF4n3R/prof.fdata.134599.fdata /tmp/.tmpnF4n3R/prof.fdata.134630.fdata /tmp/.tmpnF4n3R/prof.fdata.134637.fdata /tmp/.tmpnF4n3R/prof.fdata.134657.fdata /tmp/.tmpnF4n3R/prof.fdata.134691.fdata /tmp/.tmpnF4n3R/prof.fdata.134712.fdata /tmp/.tmpnF4n3R/prof.fdata.134726.fdata /tmp/.tmpnF4n3R/prof.fdata.134742.fdata /tmp/.tmpnF4n3R/prof.fdata.134754.fdata /tmp/.tmpnF4n3R/prof.fdata.134769.fdata /tmp/.tmpnF4n3R/prof.fdata.134789.fdata /tmp/.tmpnF4n3R/prof.fdata.134801.fdata /tmp/.tmpnF4n3R/prof.fdata.134811.fdata /tmp/.tmpnF4n3R/prof.fdata.134815.fdata /tmp/.tmpnF4n3R/prof.fdata.134843.fdata /tmp/.tmpnF4n3R/prof.fdata.134861.fdata /tmp/.tmpnF4n3R/prof.fdata.134888.fdata /tmp/.tmpnF4n3R/prof.fdata.134894.fdata /tmp/.tmpnF4n3R/prof.fdata.134927.fdata /tmp/.tmpnF4n3R/prof.fdata.134935.fdata /tmp/.tmpnF4n3R/prof.fdata.134950.fdata /tmp/.tmpnF4n3R/prof.fdata.134959.fdata /tmp/.tmpnF4n3R/prof.fdata.134988.fdata /tmp/.tmpnF4n3R/prof.fdata.134995.fdata /tmp/.tmpnF4n3R/prof.fdata.135005.fdata /tmp/.tmpnF4n3R/prof.fdata.135018.fdata /tmp/.tmpnF4n3R/prof.fdata.135024.fdata /tmp/.tmpnF4n3R/prof.fdata.135028.fdata /tmp/.tmpnF4n3R/prof.fdata.135037.fdata /tmp/.tmpnF4n3R/prof.fdata.135043.fdata /tmp/.tmpnF4n3R/prof.fdata.135061.fdata /tmp/.tmpnF4n3R/prof.fdata.135068.fdata /tmp/.tmpnF4n3R/prof.fdata.135072.fdata /tmp/.tmpnF4n3R/prof.fdata.135088.fdata /tmp/.tmpnF4n3R/prof.fdata.135092.fdata /tmp/.tmpnF4n3R/prof.fdata.135107.fdata /tmp/.tmpnF4n3R/prof.fdata.135114.fdata /tmp/.tmpnF4n3R/prof.fdata.135140.fdata /tmp/.tmpnF4n3R/prof.fdata.135149.fdata /tmp/.tmpnF4n3R/prof.fdata.135156.fdata /tmp/.tmpnF4n3R/prof.fdata.135162.fdata /tmp/.tmpnF4n3R/prof.fdata.135168.fdata /tmp/.tmpnF4n3R/prof.fdata.135174.fdata /tmp/.tmpnF4n3R/prof.fdata.135212.fdata /tmp/.tmpnF4n3R/prof.fdata.135236.fdata /tmp/.tmpnF4n3R/prof.fdata.135251.fdata /tmp/.tmpnF4n3R/prof.fdata.135258.fdata /tmp/.tmpnF4n3R/prof.fdata.135313.fdata /tmp/.tmpnF4n3R/prof.fdata.135343.fdata /tmp/.tmpnF4n3R/prof.fdata.135361.fdata /tmp/.tmpnF4n3R/prof.fdata.135376.fdata /tmp/.tmpnF4n3R/prof.fdata.135384.fdata /tmp/.tmpnF4n3R/prof.fdata.135453.fdata /tmp/.tmpnF4n3R/prof.fdata.135510.fdata /tmp/.tmpnF4n3R/prof.fdata.135679.fdata /tmp/.tmpnF4n3R/prof.fdata.135711.fdata /tmp/.tmpnF4n3R/prof.fdata.135771.fdata /tmp/.tmpnF4n3R/prof.fdata.135849.fdata /tmp/.tmpnF4n3R/prof.fdata.137176.fdata /tmp/.tmpnF4n3R/prof.fdata.137224.fdata /tmp/.tmpnF4n3R/prof.fdata.137259.fdata /tmp/.tmpnF4n3R/prof.fdata.137456.fdata /tmp/.tmpnF4n3R/prof.fdata.137511.fdata /tmp/.tmpnF4n3R/prof.fdata.137526.fdata /tmp/.tmpnF4n3R/prof.fdata.137668.fdata /tmp/.tmpnF4n3R/prof.fdata.137749.fdata /tmp/.tmpnF4n3R/prof.fdata.138249.fdata /tmp/.tmpnF4n3R/prof.fdata.138279.fdata /tmp/.tmpnF4n3R/prof.fdata.138284.fdata /tmp/.tmpnF4n3R/prof.fdata.138291.fdata /tmp/.tmpnF4n3R/prof.fdata.138296.fdata /tmp/.tmpnF4n3R/prof.fdata.138306.fdata /tmp/.tmpnF4n3R/prof.fdata.138310.fdata /tmp/.tmpnF4n3R/prof.fdata.138327.fdata /tmp/.tmpnF4n3R/prof.fdata.138347.fdata /tmp/.tmpnF4n3R/prof.fdata.138400.fdata /tmp/.tmpnF4n3R/prof.fdata.138412.fdata /tmp/.tmpnF4n3R/prof.fdata.138421.fdata /tmp/.tmpnF4n3R/prof.fdata.138430.fdata /tmp/.tmpnF4n3R/prof.fdata.138440.fdata /tmp/.tmpnF4n3R/prof.fdata.138450.fdata /tmp/.tmpnF4n3R/prof.fdata.138475.fdata /tmp/.tmpnF4n3R/prof.fdata.138740.fdata /tmp/.tmpnF4n3R/prof.fdata.139006.fdata /tmp/.tmpnF4n3R/prof.fdata.139272.fdata /tmp/.tmpnF4n3R/prof.fdata.139313.fdata /tmp/.tmpnF4n3R/prof.fdata.139834.fdata /tmp/.tmpnF4n3R/prof.fdata.140100.fdata /tmp/.tmpnF4n3R/prof.fdata.140373.fdata /tmp/.tmpnF4n3R/prof.fdata.140374.fdata /tmp/.tmpnF4n3R/prof.fdata.140375.fdata /tmp/.tmpnF4n3R/prof.fdata.140376.fdata /tmp/.tmpnF4n3R/prof.fdata.140377.fdata /tmp/.tmpnF4n3R/prof.fdata.140378.fdata /tmp/.tmpnF4n3R/prof.fdata.140382.fdata /tmp/.tmpnF4n3R/prof.fdata.140383.fdata /tmp/.tmpnF4n3R/prof.fdata.140384.fdata /tmp/.tmpnF4n3R/prof.fdata.140400.fdata /tmp/.tmpnF4n3R/prof.fdata.140409.fdata /tmp/.tmpnF4n3R/prof.fdata.140418.fdata /tmp/.tmpnF4n3R/prof.fdata.140428.fdata /tmp/.tmpnF4n3R/prof.fdata.140438.fdata /tmp/.tmpnF4n3R/prof.fdata.140449.fdata /tmp/.tmpnF4n3R/prof.fdata.140461.fdata /tmp/.tmpnF4n3R/prof.fdata.140472.fdata /tmp/.tmpnF4n3R/prof.fdata.140483.fdata /tmp/.tmpnF4n3R/prof.fdata.140500.fdata /tmp/.tmpnF4n3R/prof.fdata.140501.fdata /tmp/.tmpnF4n3R/prof.fdata.140502.fdata /tmp/.tmpnF4n3R/prof.fdata.140503.fdata /tmp/.tmpnF4n3R/prof.fdata.140504.fdata /tmp/.tmpnF4n3R/prof.fdata.140505.fdata /tmp/.tmpnF4n3R/prof.fdata.140509.fdata /tmp/.tmpnF4n3R/prof.fdata.140510.fdata /tmp/.tmpnF4n3R/prof.fdata.140511.fdata /tmp/.tmpnF4n3R/prof.fdata.140518.fdata /tmp/.tmpnF4n3R/prof.fdata.140521.fdata /tmp/.tmpnF4n3R/prof.fdata.140524.fdata /tmp/.tmpnF4n3R/prof.fdata.140525.fdata /tmp/.tmpnF4n3R/prof.fdata.140526.fdata /tmp/.tmpnF4n3R/prof.fdata.140527.fdata /tmp/.tmpnF4n3R/prof.fdata.140528.fdata /tmp/.tmpnF4n3R/prof.fdata.140529.fdata /tmp/.tmpnF4n3R/prof.fdata.140535.fdata /tmp/.tmpnF4n3R/prof.fdata.140536.fdata /tmp/.tmpnF4n3R/prof.fdata.140537.fdata /tmp/.tmpnF4n3R/prof.fdata.140538.fdata /tmp/.tmpnF4n3R/prof.fdata.140619.fdata /tmp/.tmpnF4n3R/prof.fdata.140626.fdata /tmp/.tmpnF4n3R/prof.fdata.140627.fdata /tmp/.tmpnF4n3R/prof.fdata.140628.fdata /tmp/.tmpnF4n3R/prof.fdata.140631.fdata /tmp/.tmpnF4n3R/prof.fdata.140634.fdata /tmp/.tmpnF4n3R/prof.fdata.140637.fdata /tmp/.tmpnF4n3R/prof.fdata.140638.fdata /tmp/.tmpnF4n3R/prof.fdata.140642.fdata /tmp/.tmpnF4n3R/prof.fdata.140648.fdata /tmp/.tmpnF4n3R/prof.fdata.140649.fdata /tmp/.tmpnF4n3R/prof.fdata.140674.fdata /tmp/.tmpnF4n3R/prof.fdata.140683.fdata /tmp/.tmpnF4n3R/prof.fdata.140689.fdata /tmp/.tmpnF4n3R/prof.fdata.140702.fdata /tmp/.tmpnF4n3R/prof.fdata.140762.fdata /tmp/.tmpnF4n3R/prof.fdata.140765.fdata /tmp/.tmpnF4n3R/prof.fdata.140768.fdata /tmp/.tmpnF4n3R/prof.fdata.140845.fdata /tmp/.tmpnF4n3R/prof.fdata.140854.fdata /tmp/.tmpnF4n3R/prof.fdata.140863.fdata /tmp/.tmpnF4n3R/prof.fdata.140873.fdata /tmp/.tmpnF4n3R/prof.fdata.140883.fdata /tmp/.tmpnF4n3R/prof.fdata.140893.fdata /tmp/.tmpnF4n3R/prof.fdata.140943.fdata /tmp/.tmpnF4n3R/prof.fdata.140994.fdata /tmp/.tmpnF4n3R/prof.fdata.141045.fdata /tmp/.tmpnF4n3R/prof.fdata.141056.fdata /tmp/.tmpnF4n3R/prof.fdata.141115.fdata /tmp/.tmpnF4n3R/prof.fdata.141150.fdata /tmp/.tmpnF4n3R/prof.fdata.141191.fdata /tmp/.tmpnF4n3R/prof.fdata.141192.fdata /tmp/.tmpnF4n3R/prof.fdata.141193.fdata /tmp/.tmpnF4n3R/prof.fdata.141194.fdata /tmp/.tmpnF4n3R/prof.fdata.141195.fdata /tmp/.tmpnF4n3R/prof.fdata.141196.fdata /tmp/.tmpnF4n3R/prof.fdata.141200.fdata /tmp/.tmpnF4n3R/prof.fdata.141201.fdata /tmp/.tmpnF4n3R/prof.fdata.141202.fdata /tmp/.tmpnF4n3R/prof.fdata.141218.fdata /tmp/.tmpnF4n3R/prof.fdata.141227.fdata /tmp/.tmpnF4n3R/prof.fdata.141236.fdata /tmp/.tmpnF4n3R/prof.fdata.141246.fdata /tmp/.tmpnF4n3R/prof.fdata.141256.fdata /tmp/.tmpnF4n3R/prof.fdata.141266.fdata /tmp/.tmpnF4n3R/prof.fdata.141277.fdata /tmp/.tmpnF4n3R/prof.fdata.141288.fdata /tmp/.tmpnF4n3R/prof.fdata.141299.fdata /tmp/.tmpnF4n3R/prof.fdata.141316.fdata /tmp/.tmpnF4n3R/prof.fdata.141317.fdata /tmp/.tmpnF4n3R/prof.fdata.141318.fdata /tmp/.tmpnF4n3R/prof.fdata.141319.fdata /tmp/.tmpnF4n3R/prof.fdata.141320.fdata /tmp/.tmpnF4n3R/prof.fdata.141321.fdata /tmp/.tmpnF4n3R/prof.fdata.141325.fdata /tmp/.tmpnF4n3R/prof.fdata.141326.fdata /tmp/.tmpnF4n3R/prof.fdata.141327.fdata /tmp/.tmpnF4n3R/prof.fdata.141343.fdata /tmp/.tmpnF4n3R/prof.fdata.141352.fdata /tmp/.tmpnF4n3R/prof.fdata.141361.fdata /tmp/.tmpnF4n3R/prof.fdata.141371.fdata /tmp/.tmpnF4n3R/prof.fdata.141381.fdata /tmp/.tmpnF4n3R/prof.fdata.141393.fdata /tmp/.tmpnF4n3R/prof.fdata.141406.fdata /tmp/.tmpnF4n3R/prof.fdata.141417.fdata /tmp/.tmpnF4n3R/prof.fdata.141432.fdata /tmp/.tmpnF4n3R/prof.fdata.141451.fdata /tmp/.tmpnF4n3R/prof.fdata.141452.fdata /tmp/.tmpnF4n3R/prof.fdata.141453.fdata /tmp/.tmpnF4n3R/prof.fdata.141454.fdata /tmp/.tmpnF4n3R/prof.fdata.141455.fdata /tmp/.tmpnF4n3R/prof.fdata.141456.fdata /tmp/.tmpnF4n3R/prof.fdata.141460.fdata /tmp/.tmpnF4n3R/prof.fdata.141461.fdata /tmp/.tmpnF4n3R/prof.fdata.141462.fdata /tmp/.tmpnF4n3R/prof.fdata.141469.fdata /tmp/.tmpnF4n3R/prof.fdata.141470.fdata /tmp/.tmpnF4n3R/prof.fdata.141471.fdata /tmp/.tmpnF4n3R/prof.fdata.141508.fdata /tmp/.tmpnF4n3R/prof.fdata.141517.fdata /tmp/.tmpnF4n3R/prof.fdata.141526.fdata /tmp/.tmpnF4n3R/prof.fdata.141536.fdata /tmp/.tmpnF4n3R/prof.fdata.141549.fdata /tmp/.tmpnF4n3R/prof.fdata.141566.fdata /tmp/.tmpnF4n3R/prof.fdata.141584.fdata /tmp/.tmpnF4n3R/prof.fdata.141598.fdata /tmp/.tmpnF4n3R/prof.fdata.141616.fdata /tmp/.tmpnF4n3R/prof.fdata.141638.fdata /tmp/.tmpnF4n3R/prof.fdata.141639.fdata /tmp/.tmpnF4n3R/prof.fdata.141640.fdata /tmp/.tmpnF4n3R/prof.fdata.141641.fdata /tmp/.tmpnF4n3R/prof.fdata.141642.fdata /tmp/.tmpnF4n3R/prof.fdata.141643.fdata /tmp/.tmpnF4n3R/prof.fdata.141647.fdata /tmp/.tmpnF4n3R/prof.fdata.141648.fdata /tmp/.tmpnF4n3R/prof.fdata.141649.fdata /tmp/.tmpnF4n3R/prof.fdata.141665.fdata /tmp/.tmpnF4n3R/prof.fdata.141674.fdata /tmp/.tmpnF4n3R/prof.fdata.141683.fdata /tmp/.tmpnF4n3R/prof.fdata.141693.fdata /tmp/.tmpnF4n3R/prof.fdata.141703.fdata /tmp/.tmpnF4n3R/prof.fdata.141716.fdata /tmp/.tmpnF4n3R/prof.fdata.141733.fdata /tmp/.tmpnF4n3R/prof.fdata.141751.fdata /tmp/.tmpnF4n3R/prof.fdata.141769.fdata /tmp/.tmpnF4n3R/prof.fdata.141783.fdata /tmp/.tmpnF4n3R/prof.fdata.141801.fdata /tmp/.tmpnF4n3R/prof.fdata.141817.fdata > "/tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata" [at /checkout/obj]`
Profile from 641 files merged.
[2023-12-16T18:05:32.370Z INFO  opt_dist::training] rustc BOLT statistics
##[endgroup]
[2023-12-16T18:05:32.370Z INFO  opt_dist::training] /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata: 160.67 MiB
---
##[endgroup]
##[group]Testing stage0 compiletest suite=incremental mode=incremental (x86_64-unknown-linux-gnu)

running 164 tests
.........F..F.FFFF.F.F.........F......FF.F....................................F......F..  88/164
.F....F............................................F............F..F........
failures:

---- [incremental] tests/incremental/const-generics/hash-tyvid-regression-1.rs stdout ----
thread '[incremental] tests/incremental/const-generics/hash-tyvid-regression-1.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
thread '[incremental] tests/incremental/const-generics/hash-tyvid-regression-1.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/circular-dependencies.rs stdout ----
thread '[incremental] tests/incremental/circular-dependencies.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

Build completed unsuccessfully in 0:00:59
---- [incremental] tests/incremental/const-generics/hash-tyvid-regression-2.rs stdout ----
thread '[incremental] tests/incremental/const-generics/hash-tyvid-regression-2.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/const-generics/hash-tyvid-regression-3.rs stdout ----
thread '[incremental] tests/incremental/const-generics/hash-tyvid-regression-3.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/const-generics/issue-64087.rs stdout ----
thread '[incremental] tests/incremental/const-generics/issue-64087.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/const-generics/issue-62536.rs stdout ----
thread '[incremental] tests/incremental/const-generics/issue-62536.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/const-generics/hash-tyvid-regression-4.rs stdout ----
thread '[incremental] tests/incremental/const-generics/hash-tyvid-regression-4.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/const-generics/try_unify_abstract_const_regression_tests/issue-77708-1.rs stdout ----
thread '[incremental] tests/incremental/const-generics/try_unify_abstract_const_regression_tests/issue-77708-1.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/const-generics/try_unify_abstract_const_regression_tests/issue-88022.rs stdout ----
thread '[incremental] tests/incremental/const-generics/try_unify_abstract_const_regression_tests/issue-88022.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/cyclic-trait-hierarchy.rs stdout ----
thread '[incremental] tests/incremental/cyclic-trait-hierarchy.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/feature_gate.rs stdout ----
thread '[incremental] tests/incremental/feature_gate.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/dirty_clean.rs stdout ----
thread '[incremental] tests/incremental/dirty_clean.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/issue-49043.rs stdout ----
thread '[incremental] tests/incremental/issue-49043.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/issue-54242.rs stdout ----
thread '[incremental] tests/incremental/issue-54242.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/issue-61323.rs stdout ----
thread '[incremental] tests/incremental/issue-61323.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/issue-72386.rs stdout ----
thread '[incremental] tests/incremental/issue-72386.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/struct_change_field_name.rs stdout ----
thread '[incremental] tests/incremental/struct_change_field_name.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/warnings-reemitted.rs stdout ----
thread '[incremental] tests/incremental/warnings-reemitted.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
   3: <compiletest::runtest::TestCx>::normalize_output
   4: <compiletest::runtest::TestCx>::check_expected_errors
   5: <compiletest::runtest::TestCx>::run_revision
   6: compiletest::runtest::run
   7: <compiletest::make_test_closure::{closure#0} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

---- [incremental] tests/incremental/unchecked_dirty_clean.rs stdout ----
thread '[incremental] tests/incremental/unchecked_dirty_clean.rs' panicked at src/tools/compiletest/src/runtest.rs:4230:14:
lib/rustlib/src/rust in target is a symlink to checkout root: Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::result::unwrap_failed
   3: <compiletest::runtest::TestCx>::normalize_output
---
    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 --skip tests/ui/process/nofile-limit.rs [at /checkout/obj] has failed with exit code Some(1)

Stack backtrace:
   0: <opt_dist::exec::CmdBuilder>::run
             at /rustc/a05bc277c47b721830b72eb404e15dd7c2dd966e/src/tools/opt-dist/src/exec.rs:78:17
             at /rustc/a05bc277c47b721830b72eb404e15dd7c2dd966e/src/tools/opt-dist/src/tests.rs:103:5
      opt_dist::execute_pipeline::{closure#5}
             at /rustc/a05bc277c47b721830b72eb404e15dd7c2dd966e/src/tools/opt-dist/src/main.rs:334:40
             at /rustc/a05bc277c47b721830b72eb404e15dd7c2dd966e/src/tools/opt-dist/src/main.rs:334:40
   2: <opt_dist::timer::TimerSection>::section::<opt_dist::execute_pipeline::{closure#5}, ()>
             at /rustc/a05bc277c47b721830b72eb404e15dd7c2dd966e/src/tools/opt-dist/src/timer.rs:111:22
   3: opt_dist::execute_pipeline
             at /rustc/a05bc277c47b721830b72eb404e15dd7c2dd966e/src/tools/opt-dist/src/main.rs:334:9
             at /rustc/a05bc277c47b721830b72eb404e15dd7c2dd966e/src/tools/opt-dist/src/main.rs:385:18
   5: <fn() -> core::result::Result<(), anyhow::Error> as core::ops::function::FnOnce<()>>::call_once
             at /rustc/782883f609713fe9617ba64d90086742ec62d374/library/core/src/ops/function.rs:250:5
             at /rustc/782883f609713fe9617ba64d90086742ec62d374/library/core/src/ops/function.rs:250:5
      std::sys_common::backtrace::__rust_begin_short_backtrace::<fn() -> core::result::Result<(), anyhow::Error>, core::result::Result<(), anyhow::Error>>
   6: std::rt::lang_start::<core::result::Result<(), anyhow::Error>>::{closure#0}
             at /rustc/782883f609713fe9617ba64d90086742ec62d374/library/std/src/rt.rs:167:18
             at /rustc/782883f609713fe9617ba64d90086742ec62d374/library/std/src/rt.rs:167:18
   7: core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once
      std::panicking::try::do_call
             at /rustc/782883f609713fe9617ba64d90086742ec62d374/library/std/src/panicking.rs:552:40
      std::panicking::try
             at /rustc/782883f609713fe9617ba64d90086742ec62d374/library/std/src/panicking.rs:516:19

@bors
Copy link
Contributor

bors commented Dec 16, 2023

💔 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 Dec 16, 2023
@fmease
Copy link
Member

fmease commented Jan 24, 2024

(I had to synchronize the queue)
@bors r-

@bors bors added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jan 24, 2024
@Dylan-DPC
Copy link
Member

@cbeuw any updates on this? thanks

@cbeuw
Copy link
Contributor Author

cbeuw commented Feb 17, 2024

Sorry I put this off because I couldn't reproduce or figure out why specifically dist-x86_64-linux runner fails the test while all others were fine. The test output normalisation stuff required for the test is quite sensitive to the bootstrapping environment. I shall seek some help on Zulip

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 S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) 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.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

/rustc/$hash prefix is not being mapped when expected remap libstd paths in backtraces for test crates
8 participants