Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Rollup of 10 pull requests #129770

Closed
wants to merge 165 commits into from

Conversation

workingjubilee
Copy link
Member

Successful merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

alibektas and others added 30 commits August 1, 2024 02:38
Add an explanatory sentence and some sample code to help
readers understand why this struct exists.
minor: Add a doc comment for OpQueue

Add an explanatory sentence and some sample code to help readers understand why this struct exists.
…ebold

internal: Be more resilient to bad language item definitions in binop inference

Fixes rust-lang#16287
Fixes rust-lang#16286

There's one more in `write_fn_trait_method_resolution`, but I'm not sure if it won't cause further problems in `infer_closures`.
fix: Panic while canonicalizing erroneous projection type

Fixes rust-lang#17866

The root cause of rust-lang#17866 is quite horrifyng 😨

```rust
trait T {
    type A;
}

type Foo = <S as T>::A; // note that S isn't defined

fn main() {
    Foo {}
}
```

While inferencing alias type `Foo = <S as T>::A`;

https://github.com/rust-lang/rust-analyzer/blob/78c2bdce860dbd996a8083224d01a96660dd6a15/crates/hir-ty/src/infer.rs#L1388-L1398

the error type `S` in it is substituted by inference var in L1396 above as below;

https://github.com/rust-lang/rust-analyzer/blob/78c2bdce860dbd996a8083224d01a96660dd6a15/crates/hir-ty/src/infer/unify.rs#L866-L869

This new inference var's index is `1`, as the type inferecing procedure here previously inserted another inference var into same `InferenceTable`.

But after that, the projection type made from the above then passed to the following function;

https://github.com/rust-lang/rust-analyzer/blob/78c2bdce860dbd996a8083224d01a96660dd6a15/crates/hir-ty/src/traits.rs#L88-L96

here, a whole new `InferenceTable` is made, without any inference var and in the L94, this table calls;

https://github.com/rust-lang/rust-analyzer/blob/78c2bdce860dbd996a8083224d01a96660dd6a15/crates/hir-ty/src/infer/unify.rs#L364-L370

And while registering `AliasEq` `obligation`, this obligation contains inference var `?1` made from the previous table, but this table has only one inference var `?0` made at L365.
So, the chalk panics when we try to canonicalize that obligation to register it, because the obligation contains an inference var `?1` that the canonicalizing table doesn't have.

Currently, we are calling `InferenceTable::new()` to do some normalizing, unifying or coercing things to some targets that might contain inference var that the new table doesn't have.
I think that this is quite dangerous footgun because the inference var is just an index that does not contain the information which table does it made from, so sometimes this "foreign" index might cause panic like this case, or point at the wrong variable.

This PR mitigates such behaviour simply by inserting sufficient number of inference vars to new table to avoid such problem.
This strategy doesn't harm current r-a's intention because the inference vars that passed into new tables are just "unresolved" variables in current r-a, so this is just making sure that such "unresolved" variables exist in the new table
fix: Panic while hovering associated function with type annotation on generic param that not inherited from its container type

Fixes rust-lang#17871

We call `generic_args_sans_defaults` here;

https://github.com/rust-lang/rust-analyzer/blob/64a140527b383e3a2fe95908881624fc5374c60c/crates/hir-ty/src/display.rs#L1021-L1034

but the following substitution inside that function panic in rust-lang#17871;

https://github.com/rust-lang/rust-analyzer/blob/64a140527b383e3a2fe95908881624fc5374c60c/crates/hir-ty/src/display.rs#L1468

it's because the `Binders.binder` inside `default_parameters` has a same length with the generics of the function we are hovering on, but the generics of it is split into two, `fn_params` and `parent_params`.
Because of this, it may panic if the function has one or more default parameters and both `fn_params` and `parent_params` are non-empty, like the case in the title of this PR.

So, we must call `generic_args_sans_default` first and then split it into `fn_params` and `parent_params`
…kril

internal: Properly check the edition for edition dependent syntax kinds

This puts the current edition in a bunch of places, most of which I annoted with FIXMEs asside from the ones in ide-assists because I couldnt bother with those
Assuming it isn't cancelled. Closes rust-lang#17902.

The only place CommandHandle::join is used is when the flycheck command
finishes, so this commit changes the behavior of the method itself.
…zyCell/Lock

This doesn't get rid of the once_cell dependency, unfortunately, since we have dependencies that use it, but it's a nice to do cleanup. And when our deps will eventually get rid of once_cell we will get rid of it for free.
This speeds up short identifiers search significantly, while unlikely to have an effect on long identifiers (the analysis takes much longer than some character comparison).

Tested by finding all references to `eq()` (from `PartialEq`) in the rust-analyzer repo. Total time went down from 100s to 10s (a 10x reduction!).
internal: Replace once_cell with std's recently stabilized OnceCell/Lock and LazyCell/Lock

This doesn't get rid of the once_cell dependency, unfortunately, since we have dependencies that use it, but it's a nice to do cleanup. And when our deps will eventually get rid of once_cell we will get rid of it for free.
…s, r=Veykril

Test for word boundary in `FindUsages`

This speeds up short identifiers search significantly, while unlikely to have an effect on long identifiers (the analysis takes much longer than some character comparison).

Tested by finding all references to `eq()` (from `PartialEq`) in the rust-analyzer repo. Total time went down from 100s to 10s (a 10x reduction!).

Feel free to close this if you consider this a non-issue, as most short identifiers are local.
Allow flycheck process to exit gracefully

Assuming it isn't cancelled. Closes rust-lang#17902.

The only place CommandHandle::join() is used is when the flycheck command
finishes, so this commit changes the behavior of the method itself.

The only reason I can see for the existing behavior is if the command is somehow holding onto a build lock longer than it should, this would force it to be released. But it would be a pretty heavy-handed way to solve that issue. I'm not aware of this occurring in practice.
This PR touches a lot of parts. But the main changes are changing
`hir_expand::Name` to be raw edition-dependently and only when necessary
(unrelated to how the user originally wrote the identifier),
and changing `is_keyword()` and `is_raw_identifier()` to be edition-aware
(this was done in rust-lang#17896, but the FIXMEs were fixed here).

It is possible that I missed some cases, but most IDE parts should properly
escape (or not escape) identifiers now.

The rules of thumb are:

 - If we show the identifier to the user, its rawness should be determined
   by the edition of the edited crate. This is nice for IDE features,
   but really important for changes we insert to the source code.
 - For tests, I chose `Edition::CURRENT` (so we only have to (maybe) update
   tests when an edition becomes stable, to avoid churn).
 - For debugging tools (helper methods and logs), I used `Edition::LATEST`.
…-keyword, r=Veykril

fix: Properly account for editions in names

This PR touches a lot of parts. But the main changes are changing `hir_expand::Name` to be raw edition-dependently and only when necessary (unrelated to how the user originally wrote the identifier), and changing `is_keyword()` and `is_raw_identifier()` to be edition-aware (this was done in rust-lang#17896, but the FIXMEs were fixed here).

It is possible that I missed some cases, but most IDE parts should properly escape (or not escape) identifiers now.

The rules of thumb are:

 - If we show the identifier to the user, its rawness should be determined by the edition of the edited crate. This is nice for IDE features, but really important for changes we insert to the source code.
 - For tests, I chose `Edition::CURRENT` (so we only have to (maybe) update tests when an edition becomes stable, to avoid churn).
 - For debugging tools (helper methods and logs), I used `Edition::LATEST`.

Reviewing notes:

This is a really big PR but most of it is mechanical translation. I changed `Name` displayers to require an edition, and followed the compiler errors. Most methods just propagate the edition requirement. The interesting cases are mostly in `ide-assists`, as sometimes the correct crate to fetch the edition from requires awareness (there may be two). `ide-completions` and `ide-diagnostics` were solved pretty easily by introducing an edition field to their context. `ide` contains many features, for most of them it was propagated to the top level function and there the edition was fetched based on the file.

I also fixed all FIXMEs from rust-lang#17896. Some required introducing an edition parameter (usually not for many methods after the changes to `Name`), some were changed to a new method `is_any_identifier()` because they really want any possible keyword.

Fixes rust-lang#17895.
Fixes rust-lang#17774.
…r=davidbarsky

Add scip/lsif flag to exclude vendored libaries

rust-lang#17809 changed StaticIndex to include vendored libraries. This PR adds a flag to disable that behavior.

At work, our monorepo has too many rust targets to index all at once, so we split them up into several shards. Since all of our libraries are vendored, if rust-analyzer includes them, sharding no longer has much benefit, because every shard will have to index the entire transitive dependency graphs of all of its targets. We get around the issue presented in rust-lang#17809 because some other shard will index the libraries directly.
…, r=lnicola

Remove rust-analyzer.workspace.discoverProjectRunner

The functionality for this vscode config option was removed in rust-lang#17395, so it doesn't do anything anymore.
Pin `rowan` to `0.15.15`

To prevent rust-lang#17914, I think that it would be safer pinning this before we fix it correctly
add `aarch64_unknown_nto_qnx700` target - QNX 7.0 support for aarch64le

This backports the QNX 7.1 aarch64 implementation to 7.0.

* [x] required `-lregex` disabled, see rust-lang/libc#3775 (released in libc 0.2.156)
* [x] uses `libgcc.a` instead of `libgcc_s.so` (7.0 used ancient GCC 5.4 which didn't have gcc_s)
* [x] a fix in `backtrace` crate to support stack traces rust-lang/backtrace-rs#648

This PR bumps libc dependency to 0.2.158

CC: to the folks who did the [initial implementation](https://doc.rust-lang.org/rustc/platform-support/nto-qnx.html): `@flba-eb,` `@gh-tr,` `@jonathanpallant,` `@japaric`

# Compile target

```bash
# Configure qcc build environment
source _path_/_to_/qnx7.0/qnxsdp-env.sh

# Tell rust to use qcc when building QNX 7.0 targets
export build_env='
    CC_aarch64-unknown-nto-qnx700=qcc
    CFLAGS_aarch64-unknown-nto-qnx700=-Vgcc_ntoaarch64le_cxx
    CXX_aarch64-unknown-nto-qnx700=qcc
    AR_aarch64_unknown_nto_qnx700=ntoaarch64-ar'

# Build rust compiler, libs, and the remote test server
env $build_env ./x.py build \
  --target x86_64-unknown-linux-gnu,aarch64-unknown-nto-qnx700 \
  rustc library/core library/alloc library/std src/tools/remote-test-server

rustup toolchain link stage1 build/host/stage1
```

# Compile "hello world"

```bash
source _path_/_to_/qnx7.0/qnxsdp-env.sh

cargo new hello_world
cd hello_world
cargo +stage1 build --release --target aarch64-unknown-nto-qnx700
```

# Configure a remote for testing

Do this from a new shell - we will need to run more commands in the previous one.  I ran into these two issues, and found some workarounds.

* Temporary dir might not work properly
* Default `remote-test-server` has issues binding to an address

```
# ./remote-test-server
starting test server
thread 'main' panicked at src/tools/remote-test-server/src/main.rs:175:29:
called `Result::unwrap()` on an `Err` value: Os { code: 249, kind: AddrNotAvailable, message: "Can't assign requested address" }
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
```

Specifying `--bind` param actually fixes that, and so does setting `TMPDIR` properly.

```bash
# Copy remote-test-server to remote device. You may need to use sftp instead.
# ATTENTION: Note that the path is different from the one in the remote testing documentation for some reason
scp ./build/x86_64-unknown-linux-gnu/stage1-tools-bin/remote-test-server  qnxdevice:/path/

# Run ssh with port forwarding - so that rust tester can connect to the local port instead
ssh -L 12345:127.0.0.1:12345 qnxdevice

# on the device, run
rm -rf tmp && mkdir -p tmp && TMPDIR=$PWD/tmp ./remote-test-server --bind 0.0.0.0:12345
```

# Run test suit

Assume all previous environment variables are still set, or re-init them

```bash
export TEST_DEVICE_ADDR="localhost:12345"

# tidy needs to be skipped due to using un-published libc dependency
export exclude_tests='
    --exclude src/bootstrap
    --exclude src/tools/error_index_generator
    --exclude src/tools/linkchecker
    --exclude src/tools/tidy
    --exclude tests/ui-fulldeps
    --exclude rustc
    --exclude rustdoc
    --exclude tests/run-make-fulldeps'

env $build_env ./x.py test  $exclude_tests --stage 1 --target aarch64-unknown-nto-qnx700
```
…=fmease

rustdoc-json: Add test for `Self` type

Inspired by rust-lang#128471, the rustdoc-json suite had no tests in place for the `Self` type. This PR adds one.

I've also manually checked locally that this test passes on 29e9248, confirming that adding `clean::Type::SelfTy` didn't change the JSON output. (potentially adding a self type to json (insead of (ab)using generic) is tracked in rust-lang#128522)

Updates rust-lang#81359

r? ```@fmease```
…b22, r=workingjubilee

Bump backtrace to 0.3.74~ish

Commit: rust-lang/backtrace-rs@230570f

This should help with backtraces on Android, QNX NTO 7.0, and Windows.
It addresses a case of backtrace incurring undefined behavior on Android.
…d, r=workingjubilee

allow BufReader::peek to be called on unsized types

rust-lang#128405
…r=lcnr

Simplify some extern providers

Simplifies some extern crate providers:
1. Generalize the `ProcessQueryValue` identity impl to work on non-`Option` types.
2. Allow `ProcessQueryValue` to wrap its output in an `EarlyBinder`, to simplify `explicit_item_bounds`/`explicit_item_super_predicates`.
3. Use `{ table }` and friends more when possible.
…-dead

Remove `Option<!>` return types.

Several compiler functions have `Option<!>` for their return type. That's odd. The only valid return value is `None`, so why is this type used?

Because it lets you write certain patterns slightly more concisely. E.g. if you have these common patterns:
```
    let Some(a) = f() else { return };
    let Ok(b) = g() else { return };
```
you can shorten them to these:
```
    let a = f()?;
    let b = g().ok()?;
```
Huh.

An `Option` return type typically designates success/failure. How should I interpret the type signature of a function that always returns (i.e. doesn't panic), does useful work (modifying `&mut` arguments), and yet only ever fails? This idiom subverts the type system for a cute syntactic trick.

Furthermore, returning `Option<!>` from a function F makes things syntactically more convenient within F, but makes things worse at F's callsites. The callsites can themselves use `?` with F but should not, because they will get an unconditional early return, which is almost certainly not desirable. Instead the return value should be ignored. (Note that some of callsites of `process_operand`, `process_immedate`, `process_assign` actually do use `?`, though the early return doesn't matter in these cases because nothing of significance comes after those calls. Ugh.)

When I first saw this pattern I had no idea how to interpret it, and it took me several minutes of close reading to understand everything I've written above. I even started a Zulip thread about it to make sure I understood it properly. "Save a few characters by introducing types so weird that compiler devs have to discuss it on Zulip" feels like a bad trade-off to me. This commit replaces all the `Option<!>` return values and uses `else`/`return` (or something similar) to replace the relevant `?` uses. The result is slightly more verbose but much easier to understand.

r? `@cjgillot`
…mease

Stop using `ty::GenericPredicates` for non-predicates_of queries

`GenericPredicates` is a struct of several parts: A list of of an item's own predicates, and a parent def id (and some effects related stuff, but ignore that since it's kinda irrelevant). When instantiating these generic predicates, it calls `predicates_of` on the parent and instantiates its predicates, and appends the item's own instantiated predicates too:

https://github.com/rust-lang/rust/blob/acb4e8b6251f1d8da36f08e7a70fa23fc581839e/compiler/rustc_middle/src/ty/generics.rs#L407-L413

Notice how this should result in a recursive set of calls to `predicates_of`... However, `GenericPredicates` is *also* misused by a bunch of *other* queries as a convenient way of passing around a list of predicates. For these queries, we don't ever set the parent def id of the `GenericPredicates`, but if we did, then this would be very easy to mistakenly call `predicates_of` instead of some other intended parent query.

Given that footgun, and the fact that we don't ever even *use* the parent def id in the `GenericPredicates` returned from queries like `explicit_super_predicates_of`, It really has no benefit over just returning `&'tcx [(Clause<'tcx>, Span)]`.

This PR additionally opts to wrap the results of `EarlyBinder`, as we've tended to use that in the return type of these kinds of queries to properly convey that the user has params to deal with, and it also gives a convenient way of iterating over a slice of things after instantiating.
Subtree update of `rust-analyzer`

r? `@ghost`
…r=workingjubilee

wasi: Fix sleeping for `Duration::MAX`

This commit fixes an assert in the WASI-specific implementation of thread sleep to ensure that sleeping for a very large period of time blocks instead of panicking. This can come up when testing programs that sleep "forever", for example.

I'll note that I haven't included a test for this since it's sort of difficult to test. I've tested this locally though that long sleeps do indeed block and short sleeps still only sleep for a short amount of time.
@rustbot rustbot added A-rustdoc-json Area: Rustdoc JSON backend O-unix Operating system: Unix-like O-wasi Operating system: Wasi, Webassembly System Interface S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. rollup A PR which is a rollup labels Aug 30, 2024
@workingjubilee
Copy link
Member Author

@bors rollup=never p=10 r+

@bors
Copy link
Contributor

bors commented Aug 30, 2024

📌 Commit 2e53bb9 has been approved by workingjubilee

It is now in the queue for this repository.

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

bors commented Aug 30, 2024

⌛ Testing commit 2e53bb9 with merge 4c2bd19...

bors added a commit to rust-lang-ci/rust that referenced this pull request Aug 30, 2024
…kingjubilee

Rollup of 10 pull requests

Successful merges:

 - rust-lang#120221 (Don't make statement nonterminals match pattern nonterminals)
 - rust-lang#127897 (add `aarch64_unknown_nto_qnx700` target - QNX 7.0 support for aarch64le)
 - rust-lang#129123 (rustdoc-json: Add test for `Self` type)
 - rust-lang#129642 (Bump backtrace to 0.3.74~ish)
 - rust-lang#129675 (allow BufReader::peek to be called on unsized types)
 - rust-lang#129723 (Simplify some extern providers)
 - rust-lang#129724 (Remove `Option<!>` return types.)
 - rust-lang#129725 (Stop using `ty::GenericPredicates` for non-predicates_of queries)
 - rust-lang#129733 (Subtree update of `rust-analyzer`)
 - rust-lang#129754 (wasi: Fix sleeping for `Duration::MAX`)

r? `@ghost`
`@rustbot` modify labels: rollup
@rust-log-analyzer
Copy link
Collaborator

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

Click to see the possible cause of the failure (guessed by this bot)
Preparing bitmaps-3.1.0
[2024-08-30T02:29:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:29:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:29:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:29:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpKyLbWj" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKyLbWj#bitmaps@3.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2024-08-30T02:29:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpBWtyWh" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpBWtyWh#bitmaps@3.1.0" "--" "--skip-this-rustc"
[2024-08-30T02:29:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpyRhuuu" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpyRhuuu#bitmaps@3.1.0" "--release" "--" "--skip-this-rustc"
[2024-08-30T02:29:44Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:29:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:29:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpHIXLkj" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpHIXLkj#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:29:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:29:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:29:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpHIXLkj" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpHIXLkj#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpHIXLkj/incremental-state"
[2024-08-30T02:29:46Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:29:46Z DEBUG collector::compile::execute] cd "/tmp/.tmpHIXLkj" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpHIXLkj#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpHIXLkj/incremental-state"
[2024-08-30T02:29:46Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpHIXLkj"
[2024-08-30T02:29:46Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T02:29:46Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T02:29:46Z DEBUG collector::compile::execute] cd "/tmp/.tmpHIXLkj" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpHIXLkj#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpHIXLkj/incremental-state"
[2024-08-30T02:29:46Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:29:46Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:29:46Z DEBUG collector::compile::execute] cd "/tmp/.tmpha4Q5x" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpha4Q5x#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:29:47Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-08-30T02:29:52Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:29:52Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:29:52Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:29:52Z DEBUG collector::compile::execute] cd "/tmp/.tmp1V7Q3R" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp1V7Q3R#cargo@0.60.0" "--profile" "check" "--lib" "--" "--skip-this-rustc"
[2024-08-30T02:29:52Z DEBUG collector::compile::execute] cd "/tmp/.tmp4DpqSq" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp4DpqSq#cargo@0.60.0" "--release" "--lib" "--" "--skip-this-rustc"
[2024-08-30T02:29:52Z DEBUG collector::compile::execute] cd "/tmp/.tmpJFOOfD" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpJFOOfD#cargo@0.60.0" "--lib" "--" "--skip-this-rustc"
[2024-08-30T02:30:39Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:30:39Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:30:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpvHvJfO" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvHvJfO#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:30:47Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:30:47Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:30:47Z DEBUG collector::compile::execute] cd "/tmp/.tmpvHvJfO" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvHvJfO#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpvHvJfO/incremental-state"
[2024-08-30T02:30:56Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:30:56Z DEBUG collector::compile::execute] cd "/tmp/.tmpvHvJfO" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvHvJfO#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpvHvJfO/incremental-state"
[2024-08-30T02:30:58Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpvHvJfO"
[2024-08-30T02:30:58Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T02:30:58Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T02:30:58Z DEBUG collector::compile::execute] cd "/tmp/.tmpvHvJfO" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvHvJfO#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpvHvJfO/incremental-state"
[2024-08-30T02:31:00Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:31:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:31:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpZoAlre" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpZoAlre#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:31:21Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:31:21Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:31:21Z DEBUG collector::compile::execute] cd "/tmp/.tmpZoAlre" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpZoAlre#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpZoAlre/incremental-state"
[2024-08-30T02:31:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:31:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpZoAlre" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpZoAlre#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpZoAlre/incremental-state"
[2024-08-30T02:31:49Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpZoAlre"
[2024-08-30T02:31:49Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T02:31:49Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T02:31:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpZoAlre" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpZoAlre#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpZoAlre/incremental-state"
[2024-08-30T02:31:54Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:31:54Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:31:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpncldvV" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpncldvV#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:32:24Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:32:24Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:32:25Z DEBUG collector::compile::execute] cd "/tmp/.tmpncldvV" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpncldvV#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpncldvV/incremental-state"
[2024-08-30T02:32:56Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:32:56Z DEBUG collector::compile::execute] cd "/tmp/.tmpncldvV" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpncldvV#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpncldvV/incremental-state"
[2024-08-30T02:33:00Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpncldvV"
[2024-08-30T02:33:00Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T02:33:00Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T02:33:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpncldvV" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpncldvV#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpncldvV/incremental-state"
Executing benchmark ctfe-stress-5 (3/8)
Preparing ctfe-stress-5
[2024-08-30T02:33:06Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:33:06Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:33:06Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:33:06Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:33:06Z DEBUG collector::compile::execute] cd "/tmp/.tmpLjmwxE" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpLjmwxE#ctfe-stress-5@0.1.0" "--" "--skip-this-rustc"
[2024-08-30T02:33:06Z DEBUG collector::compile::execute] cd "/tmp/.tmpqhltHc" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpqhltHc#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2024-08-30T02:33:06Z DEBUG collector::compile::execute] cd "/tmp/.tmp1n35Fn" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp1n35Fn#ctfe-stress-5@0.1.0" "--release" "--" "--skip-this-rustc"
[2024-08-30T02:33:06Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:33:06Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:33:06Z DEBUG collector::compile::execute] cd "/tmp/.tmpIZXjQ6" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpIZXjQ6#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:33:11Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-08-30T02:33:58Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:33:58Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:33:58Z DEBUG collector::compile::execute] cd "/tmp/.tmpr2xRJV" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpr2xRJV#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:34:04Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpr2xRJV" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpr2xRJV#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpr2xRJV/incremental-state"
[2024-08-30T02:34:11Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:11Z DEBUG collector::compile::execute] cd "/tmp/.tmpr2xRJV" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpr2xRJV#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpr2xRJV/incremental-state"
[2024-08-30T02:34:13Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpr2xRJV"
[2024-08-30T02:34:13Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T02:34:13Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T02:34:13Z DEBUG collector::compile::execute] cd "/tmp/.tmpr2xRJV" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpr2xRJV#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpr2xRJV/incremental-state"
[2024-08-30T02:34:14Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:34:15Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:15Z DEBUG collector::compile::execute] cd "/tmp/.tmpp5KXEm" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpp5KXEm#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:34:21Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-08-30T02:34:33Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:34:33Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:33Z DEBUG collector::compile::execute] cd "/tmp/.tmpiepgOZ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpiepgOZ#externs@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:34:34Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpiepgOZ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpiepgOZ#externs@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpiepgOZ/incremental-state"
[2024-08-30T02:34:34Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpiepgOZ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpiepgOZ#externs@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpiepgOZ/incremental-state"
Executing benchmark match-stress (6/8)
Preparing match-stress
[2024-08-30T02:34:34Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:34:34Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-08-30T02:34:40Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:34:40Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:40Z DEBUG collector::compile::execute] cd "/tmp/.tmpzY4WyX" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpzY4WyX#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:34:42Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:42Z DEBUG collector::compile::execute] cd "/tmp/.tmpzY4WyX" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpzY4WyX#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpzY4WyX/incremental-state"
[2024-08-30T02:34:43Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpzY4WyX" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpzY4WyX#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpzY4WyX/incremental-state"
Executing benchmark token-stream-stress (7/8)
Preparing token-stream-stress
[2024-08-30T02:34:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:34:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:34:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:34:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:34:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpzVbPS9" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpzVbPS9#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2024-08-30T02:34:44Z DEBUG collector::compile::execute] cd "/tmp/.tmp1IXe1N" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp1IXe1N#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2024-08-30T02:34:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpKlUCzP" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKlUCzP#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2024-08-30T02:34:44Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:34:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpzni8Gl" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpzni8Gl#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:34:44Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:44Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpzni8Gl" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpzni8Gl#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpzni8Gl/incremental-state"
[2024-08-30T02:34:44Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpzni8Gl" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpzni8Gl#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpzni8Gl/incremental-state"
Running token-stream-stress: Debug + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2024-08-30T02:34:44Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:34:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpOJixFP" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpOJixFP#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:34:44Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpOJixFP" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpOJixFP#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpOJixFP/incremental-state"
[2024-08-30T02:34:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpOJixFP" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpOJixFP#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpOJixFP/incremental-state"
[2024-08-30T02:34:45Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:34:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:34:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpvCyaYm" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvCyaYm#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:34:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-08-30T02:35:00Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:35:00Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:35:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpwScKgX" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpwScKgX#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T02:35:02Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:35:02Z DEBUG collector::compile::execute] cd "/tmp/.tmpwScKgX" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpwScKgX#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpwScKgX/incremental-state"
[2024-08-30T02:35:04Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:35:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpwScKgX" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpwScKgX#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpwScKgX/incremental-state"
[2024-08-30T02:35:05Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpwScKgX"
[2024-08-30T02:35:05Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T02:35:05Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T02:35:05Z DEBUG collector::compile::execute] cd "/tmp/.tmpwScKgX" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpwScKgX#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpwScKgX/incremental-state"
##[endgroup]
[2024-08-30T02:35:07.395Z INFO  opt_dist::training] Merging Rustc PGO profiles to /tmp/tmp-multistage/opt-artifacts/rustc-pgo.profdata
[2024-08-30T02:35:07.395Z 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]`
[2024-08-30T02:35:21.467Z INFO  opt_dist::training] Rustc PGO statistics
---
[2024-08-30T02:50:41Z DEBUG collector::compile::execute] cd "/tmp/.tmp7klwqC" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp7klwqC#hyper@0.14.18" "--features=client,http1,http2,server,stream" "--" "--wrap-rustc-with" "Eprintln"
Running hyper-0.14.18: Opt + [Full] + Llvm
[2024-08-30T02:50:43Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:50:43Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:50:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpHmgsAq" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpHmgsAq#hyper@0.14.18" "--release" "--features=client,http1,http2,server,stream" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark regex-1.5.5 (4/8)
Preparing regex-1.5.5
[2024-08-30T02:50:49Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:50:49Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-08-30T02:50:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpmkSBwD" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmkSBwD#regex@1.5.5" "--" "--wrap-rustc-with" "Eprintln"
Running regex-1.5.5: Opt + [Full] + Llvm
[2024-08-30T02:50:55Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:50:55Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:50:55Z DEBUG collector::compile::execute] cd "/tmp/.tmplAxSoF" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmplAxSoF#regex@1.5.5" "--release" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark ripgrep-13.0.0 (5/8)
Preparing ripgrep-13.0.0
[2024-08-30T02:51:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:51:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
Executing benchmark serde-1.0.136 (7/8)
Preparing serde-1.0.136
[2024-08-30T02:52:12Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:52:12Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T02:52:12Z DEBUG collector::compile::execute] cd "/tmp/.tmpvfzwrU" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvfzwrU#serde@1.0.136" "--release" "--" "--skip-this-rustc"
[2024-08-30T02:52:12Z DEBUG collector::compile::execute] cd "/tmp/.tmpHYXQjv" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpHYXQjv#serde@1.0.136" "--" "--skip-this-rustc"
[2024-08-30T02:52:13Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T02:52:13Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T02:52:13Z DEBUG collector::compile::execute] cd "/tmp/.tmpmPXCj3" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmPXCj3#serde@1.0.136" "--" "--wrap-rustc-with" "Eprintln"
Running serde-1.0.136: Opt + [Full] + Llvm
---
Finished benchmark ripgrep-13.0.0 (5/8)
Executing benchmark ripgrep-13.0.0-tiny (6/8)
Preparing ripgrep-13.0.0-tiny
[2024-08-30T03:18:52Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T03:18:52Z DEBUG collector::compile::execute] cd "/tmp/.tmprfvaNj" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmprfvaNj#ripgrep@13.0.0" "--release" "--" "--skip-this-rustc"
[2024-08-30T03:19:13Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:19:13Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:19:13Z DEBUG collector::compile::execute] cd "/tmp/.tmp6SMy3R" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp6SMy3R#ripgrep@13.0.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
Finished benchmark ripgrep-13.0.0-tiny (6/8)
---
Finished benchmark syn-1.0.89 (8/8)
##[endgroup]
[2024-08-30T03:20:20.435Z INFO  opt_dist::training] Merging LLVM BOLT profiles from /tmp/.tmplYCBHb/prof.fdata to /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata
##[group]Merging BOLT profiles
[2024-08-30T03:20:20.437Z INFO  opt_dist::exec] Executing `merge-fdata /tmp/.tmplYCBHb/prof.fdata.132400.fdata /tmp/.tmplYCBHb/prof.fdata.132411.fdata /tmp/.tmplYCBHb/prof.fdata.132412.fdata /tmp/.tmplYCBHb/prof.fdata.132415.fdata /tmp/.tmplYCBHb/prof.fdata.132416.fdata /tmp/.tmplYCBHb/prof.fdata.132421.fdata /tmp/.tmplYCBHb/prof.fdata.132422.fdata /tmp/.tmplYCBHb/prof.fdata.132427.fdata /tmp/.tmplYCBHb/prof.fdata.132428.fdata /tmp/.tmplYCBHb/prof.fdata.132439.fdata /tmp/.tmplYCBHb/prof.fdata.132440.fdata /tmp/.tmplYCBHb/prof.fdata.132441.fdata /tmp/.tmplYCBHb/prof.fdata.132443.fdata /tmp/.tmplYCBHb/prof.fdata.132444.fdata /tmp/.tmplYCBHb/prof.fdata.132446.fdata /tmp/.tmplYCBHb/prof.fdata.132447.fdata /tmp/.tmplYCBHb/prof.fdata.132450.fdata /tmp/.tmplYCBHb/prof.fdata.132453.fdata /tmp/.tmplYCBHb/prof.fdata.132454.fdata /tmp/.tmplYCBHb/prof.fdata.132456.fdata /tmp/.tmplYCBHb/prof.fdata.132458.fdata /tmp/.tmplYCBHb/prof.fdata.132460.fdata /tmp/.tmplYCBHb/prof.fdata.132462.fdata /tmp/.tmplYCBHb/prof.fdata.132465.fdata /tmp/.tmplYCBHb/prof.fdata.132466.fdata /tmp/.tmplYCBHb/prof.fdata.132469.fdata /tmp/.tmplYCBHb/prof.fdata.132470.fdata /tmp/.tmplYCBHb/prof.fdata.132607.fdata /tmp/.tmplYCBHb/prof.fdata.132611.fdata /tmp/.tmplYCBHb/prof.fdata.132613.fdata /tmp/.tmplYCBHb/prof.fdata.132619.fdata /tmp/.tmplYCBHb/prof.fdata.132623.fdata /tmp/.tmplYCBHb/prof.fdata.132652.fdata /tmp/.tmplYCBHb/prof.fdata.132656.fdata /tmp/.tmplYCBHb/prof.fdata.132662.fdata /tmp/.tmplYCBHb/prof.fdata.132673.fdata /tmp/.tmplYCBHb/prof.fdata.132676.fdata /tmp/.tmplYCBHb/prof.fdata.132682.fdata /tmp/.tmplYCBHb/prof.fdata.132687.fdata /tmp/.tmplYCBHb/prof.fdata.132689.fdata /tmp/.tmplYCBHb/prof.fdata.132698.fdata /tmp/.tmplYCBHb/prof.fdata.132705.fdata /tmp/.tmplYCBHb/prof.fdata.132706.fdata /tmp/.tmplYCBHb/prof.fdata.132712.fdata /tmp/.tmplYCBHb/prof.fdata.132715.fdata /tmp/.tmplYCBHb/prof.fdata.132716.fdata /tmp/.tmplYCBHb/prof.fdata.132718.fdata /tmp/.tmplYCBHb/prof.fdata.132723.fdata /tmp/.tmplYCBHb/prof.fdata.132731.fdata /tmp/.tmplYCBHb/prof.fdata.132736.fdata /tmp/.tmplYCBHb/prof.fdata.132749.fdata /tmp/.tmplYCBHb/prof.fdata.132754.fdata /tmp/.tmplYCBHb/prof.fdata.132758.fdata /tmp/.tmplYCBHb/prof.fdata.132760.fdata /tmp/.tmplYCBHb/prof.fdata.132767.fdata /tmp/.tmplYCBHb/prof.fdata.132773.fdata /tmp/.tmplYCBHb/prof.fdata.132796.fdata /tmp/.tmplYCBHb/prof.fdata.132810.fdata /tmp/.tmplYCBHb/prof.fdata.132817.fdata /tmp/.tmplYCBHb/prof.fdata.132849.fdata /tmp/.tmplYCBHb/prof.fdata.132860.fdata /tmp/.tmplYCBHb/prof.fdata.132874.fdata /tmp/.tmplYCBHb/prof.fdata.132879.fdata /tmp/.tmplYCBHb/prof.fdata.132896.fdata /tmp/.tmplYCBHb/prof.fdata.132899.fdata /tmp/.tmplYCBHb/prof.fdata.132910.fdata /tmp/.tmplYCBHb/prof.fdata.132912.fdata /tmp/.tmplYCBHb/prof.fdata.132920.fdata /tmp/.tmplYCBHb/prof.fdata.132926.fdata /tmp/.tmplYCBHb/prof.fdata.132937.fdata /tmp/.tmplYCBHb/prof.fdata.132957.fdata /tmp/.tmplYCBHb/prof.fdata.132969.fdata /tmp/.tmplYCBHb/prof.fdata.132973.fdata /tmp/.tmplYCBHb/prof.fdata.132991.fdata /tmp/.tmplYCBHb/prof.fdata.133000.fdata /tmp/.tmplYCBHb/prof.fdata.133002.fdata /tmp/.tmplYCBHb/prof.fdata.133020.fdata /tmp/.tmplYCBHb/prof.fdata.133043.fdata /tmp/.tmplYCBHb/prof.fdata.133059.fdata /tmp/.tmplYCBHb/prof.fdata.133065.fdata /tmp/.tmplYCBHb/prof.fdata.133073.fdata /tmp/.tmplYCBHb/prof.fdata.133082.fdata /tmp/.tmplYCBHb/prof.fdata.133092.fdata /tmp/.tmplYCBHb/prof.fdata.133099.fdata /tmp/.tmplYCBHb/prof.fdata.133122.fdata /tmp/.tmplYCBHb/prof.fdata.133133.fdata /tmp/.tmplYCBHb/prof.fdata.133151.fdata /tmp/.tmplYCBHb/prof.fdata.133152.fdata /tmp/.tmplYCBHb/prof.fdata.133168.fdata /tmp/.tmplYCBHb/prof.fdata.133171.fdata /tmp/.tmplYCBHb/prof.fdata.133195.fdata /tmp/.tmplYCBHb/prof.fdata.133218.fdata /tmp/.tmplYCBHb/prof.fdata.133222.fdata /tmp/.tmplYCBHb/prof.fdata.133231.fdata /tmp/.tmplYCBHb/prof.fdata.133238.fdata /tmp/.tmplYCBHb/prof.fdata.133240.fdata /tmp/.tmplYCBHb/prof.fdata.133247.fdata /tmp/.tmplYCBHb/prof.fdata.133257.fdata /tmp/.tmplYCBHb/prof.fdata.133265.fdata /tmp/.tmplYCBHb/prof.fdata.133274.fdata /tmp/.tmplYCBHb/prof.fdata.133283.fdata /tmp/.tmplYCBHb/prof.fdata.133288.fdata /tmp/.tmplYCBHb/prof.fdata.133289.fdata /tmp/.tmplYCBHb/prof.fdata.133306.fdata /tmp/.tmplYCBHb/prof.fdata.133308.fdata /tmp/.tmplYCBHb/prof.fdata.133317.fdata /tmp/.tmplYCBHb/prof.fdata.133327.fdata /tmp/.tmplYCBHb/prof.fdata.133335.fdata /tmp/.tmplYCBHb/prof.fdata.133340.fdata /tmp/.tmplYCBHb/prof.fdata.133341.fdata /tmp/.tmplYCBHb/prof.fdata.133350.fdata /tmp/.tmplYCBHb/prof.fdata.133352.fdata /tmp/.tmplYCBHb/prof.fdata.133359.fdata /tmp/.tmplYCBHb/prof.fdata.133370.fdata /tmp/.tmplYCBHb/prof.fdata.133385.fdata /tmp/.tmplYCBHb/prof.fdata.133390.fdata /tmp/.tmplYCBHb/prof.fdata.133400.fdata /tmp/.tmplYCBHb/prof.fdata.133407.fdata /tmp/.tmplYCBHb/prof.fdata.133411.fdata /tmp/.tmplYCBHb/prof.fdata.133433.fdata /tmp/.tmplYCBHb/prof.fdata.133483.fdata /tmp/.tmplYCBHb/prof.fdata.133493.fdata /tmp/.tmplYCBHb/prof.fdata.133507.fdata /tmp/.tmplYCBHb/prof.fdata.133511.fdata /tmp/.tmplYCBHb/prof.fdata.133517.fdata /tmp/.tmplYCBHb/prof.fdata.133525.fdata /tmp/.tmplYCBHb/prof.fdata.133537.fdata /tmp/.tmplYCBHb/prof.fdata.133547.fdata /tmp/.tmplYCBHb/prof.fdata.133551.fdata /tmp/.tmplYCBHb/prof.fdata.133557.fdata /tmp/.tmplYCBHb/prof.fdata.133559.fdata /tmp/.tmplYCBHb/prof.fdata.133562.fdata /tmp/.tmplYCBHb/prof.fdata.133569.fdata /tmp/.tmplYCBHb/prof.fdata.133582.fdata /tmp/.tmplYCBHb/prof.fdata.133597.fdata /tmp/.tmplYCBHb/prof.fdata.133602.fdata /tmp/.tmplYCBHb/prof.fdata.133614.fdata /tmp/.tmplYCBHb/prof.fdata.133619.fdata /tmp/.tmplYCBHb/prof.fdata.133626.fdata /tmp/.tmplYCBHb/prof.fdata.133631.fdata /tmp/.tmplYCBHb/prof.fdata.133641.fdata /tmp/.tmplYCBHb/prof.fdata.133679.fdata /tmp/.tmplYCBHb/prof.fdata.133696.fdata /tmp/.tmplYCBHb/prof.fdata.133706.fdata /tmp/.tmplYCBHb/prof.fdata.133711.fdata /tmp/.tmplYCBHb/prof.fdata.133714.fdata /tmp/.tmplYCBHb/prof.fdata.133720.fdata /tmp/.tmplYCBHb/prof.fdata.133735.fdata /tmp/.tmplYCBHb/prof.fdata.133755.fdata /tmp/.tmplYCBHb/prof.fdata.133776.fdata /tmp/.tmplYCBHb/prof.fdata.133791.fdata /tmp/.tmplYCBHb/prof.fdata.133806.fdata /tmp/.tmplYCBHb/prof.fdata.133811.fdata /tmp/.tmplYCBHb/prof.fdata.133834.fdata /tmp/.tmplYCBHb/prof.fdata.133845.fdata /tmp/.tmplYCBHb/prof.fdata.133867.fdata /tmp/.tmplYCBHb/prof.fdata.133884.fdata /tmp/.tmplYCBHb/prof.fdata.133900.fdata /tmp/.tmplYCBHb/prof.fdata.133921.fdata /tmp/.tmplYCBHb/prof.fdata.133926.fdata /tmp/.tmplYCBHb/prof.fdata.133933.fdata /tmp/.tmplYCBHb/prof.fdata.133937.fdata /tmp/.tmplYCBHb/prof.fdata.133947.fdata /tmp/.tmplYCBHb/prof.fdata.133951.fdata /tmp/.tmplYCBHb/prof.fdata.133971.fdata /tmp/.tmplYCBHb/prof.fdata.133985.fdata /tmp/.tmplYCBHb/prof.fdata.133990.fdata /tmp/.tmplYCBHb/prof.fdata.133999.fdata /tmp/.tmplYCBHb/prof.fdata.134013.fdata /tmp/.tmplYCBHb/prof.fdata.134032.fdata /tmp/.tmplYCBHb/prof.fdata.134044.fdata /tmp/.tmplYCBHb/prof.fdata.134054.fdata /tmp/.tmplYCBHb/prof.fdata.134066.fdata /tmp/.tmplYCBHb/prof.fdata.134069.fdata /tmp/.tmplYCBHb/prof.fdata.134084.fdata /tmp/.tmplYCBHb/prof.fdata.134089.fdata /tmp/.tmplYCBHb/prof.fdata.134095.fdata /tmp/.tmplYCBHb/prof.fdata.134102.fdata /tmp/.tmplYCBHb/prof.fdata.134107.fdata /tmp/.tmplYCBHb/prof.fdata.134120.fdata /tmp/.tmplYCBHb/prof.fdata.134134.fdata /tmp/.tmplYCBHb/prof.fdata.134139.fdata /tmp/.tmplYCBHb/prof.fdata.134152.fdata /tmp/.tmplYCBHb/prof.fdata.134166.fdata /tmp/.tmplYCBHb/prof.fdata.134176.fdata /tmp/.tmplYCBHb/prof.fdata.134189.fdata /tmp/.tmplYCBHb/prof.fdata.134197.fdata /tmp/.tmplYCBHb/prof.fdata.134201.fdata /tmp/.tmplYCBHb/prof.fdata.134231.fdata /tmp/.tmplYCBHb/prof.fdata.134236.fdata /tmp/.tmplYCBHb/prof.fdata.134245.fdata /tmp/.tmplYCBHb/prof.fdata.134251.fdata /tmp/.tmplYCBHb/prof.fdata.134262.fdata /tmp/.tmplYCBHb/prof.fdata.134277.fdata /tmp/.tmplYCBHb/prof.fdata.134344.fdata /tmp/.tmplYCBHb/prof.fdata.134346.fdata /tmp/.tmplYCBHb/prof.fdata.134371.fdata /tmp/.tmplYCBHb/prof.fdata.134379.fdata /tmp/.tmplYCBHb/prof.fdata.134401.fdata /tmp/.tmplYCBHb/prof.fdata.134421.fdata /tmp/.tmplYCBHb/prof.fdata.134432.fdata /tmp/.tmplYCBHb/prof.fdata.134437.fdata /tmp/.tmplYCBHb/prof.fdata.134456.fdata /tmp/.tmplYCBHb/prof.fdata.134480.fdata /tmp/.tmplYCBHb/prof.fdata.134484.fdata /tmp/.tmplYCBHb/prof.fdata.134496.fdata /tmp/.tmplYCBHb/prof.fdata.134503.fdata /tmp/.tmplYCBHb/prof.fdata.134511.fdata /tmp/.tmplYCBHb/prof.fdata.134517.fdata /tmp/.tmplYCBHb/prof.fdata.134527.fdata /tmp/.tmplYCBHb/prof.fdata.134537.fdata /tmp/.tmplYCBHb/prof.fdata.134553.fdata /tmp/.tmplYCBHb/prof.fdata.134567.fdata /tmp/.tmplYCBHb/prof.fdata.134582.fdata /tmp/.tmplYCBHb/prof.fdata.134593.fdata /tmp/.tmplYCBHb/prof.fdata.134594.fdata /tmp/.tmplYCBHb/prof.fdata.134604.fdata /tmp/.tmplYCBHb/prof.fdata.134626.fdata /tmp/.tmplYCBHb/prof.fdata.134645.fdata /tmp/.tmplYCBHb/prof.fdata.134654.fdata /tmp/.tmplYCBHb/prof.fdata.134656.fdata /tmp/.tmplYCBHb/prof.fdata.134660.fdata /tmp/.tmplYCBHb/prof.fdata.134684.fdata /tmp/.tmplYCBHb/prof.fdata.134705.fdata /tmp/.tmplYCBHb/prof.fdata.134725.fdata /tmp/.tmplYCBHb/prof.fdata.134739.fdata /tmp/.tmplYCBHb/prof.fdata.134748.fdata /tmp/.tmplYCBHb/prof.fdata.134759.fdata /tmp/.tmplYCBHb/prof.fdata.134765.fdata /tmp/.tmplYCBHb/prof.fdata.134781.fdata /tmp/.tmplYCBHb/prof.fdata.134789.fdata /tmp/.tmplYCBHb/prof.fdata.134799.fdata /tmp/.tmplYCBHb/prof.fdata.134816.fdata /tmp/.tmplYCBHb/prof.fdata.134840.fdata /tmp/.tmplYCBHb/prof.fdata.134856.fdata /tmp/.tmplYCBHb/prof.fdata.134864.fdata /tmp/.tmplYCBHb/prof.fdata.134869.fdata /tmp/.tmplYCBHb/prof.fdata.134885.fdata /tmp/.tmplYCBHb/prof.fdata.134892.fdata /tmp/.tmplYCBHb/prof.fdata.134906.fdata /tmp/.tmplYCBHb/prof.fdata.134914.fdata /tmp/.tmplYCBHb/prof.fdata.134916.fdata /tmp/.tmplYCBHb/prof.fdata.134940.fdata /tmp/.tmplYCBHb/prof.fdata.134955.fdata /tmp/.tmplYCBHb/prof.fdata.134961.fdata /tmp/.tmplYCBHb/prof.fdata.134972.fdata /tmp/.tmplYCBHb/prof.fdata.134974.fdata /tmp/.tmplYCBHb/prof.fdata.134987.fdata /tmp/.tmplYCBHb/prof.fdata.134991.fdata /tmp/.tmplYCBHb/prof.fdata.135011.fdata /tmp/.tmplYCBHb/prof.fdata.135018.fdata /tmp/.tmplYCBHb/prof.fdata.135028.fdata /tmp/.tmplYCBHb/prof.fdata.135042.fdata /tmp/.tmplYCBHb/prof.fdata.135061.fdata /tmp/.tmplYCBHb/prof.fdata.135079.fdata /tmp/.tmplYCBHb/prof.fdata.135107.fdata /tmp/.tmplYCBHb/prof.fdata.135117.fdata /tmp/.tmplYCBHb/prof.fdata.135119.fdata /tmp/.tmplYCBHb/prof.fdata.135147.fdata /tmp/.tmplYCBHb/prof.fdata.135152.fdata /tmp/.tmplYCBHb/prof.fdata.135158.fdata /tmp/.tmplYCBHb/prof.fdata.135162.fdata /tmp/.tmplYCBHb/prof.fdata.135191.fdata /tmp/.tmplYCBHb/prof.fdata.135204.fdata /tmp/.tmplYCBHb/prof.fdata.135231.fdata /tmp/.tmplYCBHb/prof.fdata.135242.fdata /tmp/.tmplYCBHb/prof.fdata.135253.fdata /tmp/.tmplYCBHb/prof.fdata.135269.fdata /tmp/.tmplYCBHb/prof.fdata.135278.fdata /tmp/.tmplYCBHb/prof.fdata.135289.fdata /tmp/.tmplYCBHb/prof.fdata.135293.fdata /tmp/.tmplYCBHb/prof.fdata.135297.fdata /tmp/.tmplYCBHb/prof.fdata.135304.fdata /tmp/.tmplYCBHb/prof.fdata.135310.fdata /tmp/.tmplYCBHb/prof.fdata.135317.fdata /tmp/.tmplYCBHb/prof.fdata.135339.fdata /tmp/.tmplYCBHb/prof.fdata.135363.fdata /tmp/.tmplYCBHb/prof.fdata.135384.fdata /tmp/.tmplYCBHb/prof.fdata.135393.fdata /tmp/.tmplYCBHb/prof.fdata.135401.fdata /tmp/.tmplYCBHb/prof.fdata.135412.fdata /tmp/.tmplYCBHb/prof.fdata.135420.fdata /tmp/.tmplYCBHb/prof.fdata.135457.fdata /tmp/.tmplYCBHb/prof.fdata.135488.fdata /tmp/.tmplYCBHb/prof.fdata.135517.fdata /tmp/.tmplYCBHb/prof.fdata.135531.fdata /tmp/.tmplYCBHb/prof.fdata.135537.fdata /tmp/.tmplYCBHb/prof.fdata.135546.fdata /tmp/.tmplYCBHb/prof.fdata.135591.fdata /tmp/.tmplYCBHb/prof.fdata.135614.fdata /tmp/.tmplYCBHb/prof.fdata.135618.fdata /tmp/.tmplYCBHb/prof.fdata.135632.fdata /tmp/.tmplYCBHb/prof.fdata.135756.fdata /tmp/.tmplYCBHb/prof.fdata.135778.fdata /tmp/.tmplYCBHb/prof.fdata.136011.fdata /tmp/.tmplYCBHb/prof.fdata.136141.fdata /tmp/.tmplYCBHb/prof.fdata.136717.fdata /tmp/.tmplYCBHb/prof.fdata.136748.fdata /tmp/.tmplYCBHb/prof.fdata.136859.fdata /tmp/.tmplYCBHb/prof.fdata.137228.fdata /tmp/.tmplYCBHb/prof.fdata.137283.fdata /tmp/.tmplYCBHb/prof.fdata.137430.fdata /tmp/.tmplYCBHb/prof.fdata.137542.fdata /tmp/.tmplYCBHb/prof.fdata.137594.fdata /tmp/.tmplYCBHb/prof.fdata.137621.fdata /tmp/.tmplYCBHb/prof.fdata.137656.fdata /tmp/.tmplYCBHb/prof.fdata.137661.fdata /tmp/.tmplYCBHb/prof.fdata.137669.fdata /tmp/.tmplYCBHb/prof.fdata.137726.fdata /tmp/.tmplYCBHb/prof.fdata.137753.fdata /tmp/.tmplYCBHb/prof.fdata.137798.fdata /tmp/.tmplYCBHb/prof.fdata.137799.fdata /tmp/.tmplYCBHb/prof.fdata.137802.fdata /tmp/.tmplYCBHb/prof.fdata.137803.fdata /tmp/.tmplYCBHb/prof.fdata.137808.fdata /tmp/.tmplYCBHb/prof.fdata.137809.fdata /tmp/.tmplYCBHb/prof.fdata.137814.fdata /tmp/.tmplYCBHb/prof.fdata.137815.fdata /tmp/.tmplYCBHb/prof.fdata.137825.fdata /tmp/.tmplYCBHb/prof.fdata.137827.fdata /tmp/.tmplYCBHb/prof.fdata.137832.fdata /tmp/.tmplYCBHb/prof.fdata.137835.fdata /tmp/.tmplYCBHb/prof.fdata.137836.fdata /tmp/.tmplYCBHb/prof.fdata.137837.fdata /tmp/.tmplYCBHb/prof.fdata.137840.fdata /tmp/.tmplYCBHb/prof.fdata.137841.fdata /tmp/.tmplYCBHb/prof.fdata.137842.fdata /tmp/.tmplYCBHb/prof.fdata.137843.fdata /tmp/.tmplYCBHb/prof.fdata.137844.fdata /tmp/.tmplYCBHb/prof.fdata.137845.fdata /tmp/.tmplYCBHb/prof.fdata.137848.fdata /tmp/.tmplYCBHb/prof.fdata.137849.fdata /tmp/.tmplYCBHb/prof.fdata.137850.fdata /tmp/.tmplYCBHb/prof.fdata.137851.fdata /tmp/.tmplYCBHb/prof.fdata.137989.fdata /tmp/.tmplYCBHb/prof.fdata.137994.fdata /tmp/.tmplYCBHb/prof.fdata.137999.fdata /tmp/.tmplYCBHb/prof.fdata.138001.fdata /tmp/.tmplYCBHb/prof.fdata.138017.fdata /tmp/.tmplYCBHb/prof.fdata.138022.fdata /tmp/.tmplYCBHb/prof.fdata.138035.fdata /tmp/.tmplYCBHb/prof.fdata.138040.fdata /tmp/.tmplYCBHb/prof.fdata.138055.fdata /tmp/.tmplYCBHb/prof.fdata.138058.fdata /tmp/.tmplYCBHb/prof.fdata.138075.fdata /tmp/.tmplYCBHb/prof.fdata.138086.fdata /tmp/.tmplYCBHb/prof.fdata.138096.fdata /tmp/.tmplYCBHb/prof.fdata.138102.fdata /tmp/.tmplYCBHb/prof.fdata.138122.fdata /tmp/.tmplYCBHb/prof.fdata.138149.fdata /tmp/.tmplYCBHb/prof.fdata.138194.fdata /tmp/.tmplYCBHb/prof.fdata.138195.fdata /tmp/.tmplYCBHb/prof.fdata.138198.fdata /tmp/.tmplYCBHb/prof.fdata.138199.fdata /tmp/.tmplYCBHb/prof.fdata.138204.fdata /tmp/.tmplYCBHb/prof.fdata.138205.fdata /tmp/.tmplYCBHb/prof.fdata.138210.fdata /tmp/.tmplYCBHb/prof.fdata.138211.fdata /tmp/.tmplYCBHb/prof.fdata.138221.fdata /tmp/.tmplYCBHb/prof.fdata.138224.fdata /tmp/.tmplYCBHb/prof.fdata.138225.fdata /tmp/.tmplYCBHb/prof.fdata.138226.fdata /tmp/.tmplYCBHb/prof.fdata.138228.fdata /tmp/.tmplYCBHb/prof.fdata.138229.fdata /tmp/.tmplYCBHb/prof.fdata.138231.fdata /tmp/.tmplYCBHb/prof.fdata.138233.fdata /tmp/.tmplYCBHb/prof.fdata.138235.fdata /tmp/.tmplYCBHb/prof.fdata.138237.fdata /tmp/.tmplYCBHb/prof.fdata.138240.fdata /tmp/.tmplYCBHb/prof.fdata.138241.fdata /tmp/.tmplYCBHb/prof.fdata.138242.fdata /tmp/.tmplYCBHb/prof.fdata.138245.fdata /tmp/.tmplYCBHb/prof.fdata.138247.fdata /tmp/.tmplYCBHb/prof.fdata.138249.fdata /tmp/.tmplYCBHb/prof.fdata.138250.fdata /tmp/.tmplYCBHb/prof.fdata.138271.fdata /tmp/.tmplYCBHb/prof.fdata.138382.fdata /tmp/.tmplYCBHb/prof.fdata.138387.fdata /tmp/.tmplYCBHb/prof.fdata.138392.fdata /tmp/.tmplYCBHb/prof.fdata.138393.fdata /tmp/.tmplYCBHb/prof.fdata.138397.fdata /tmp/.tmplYCBHb/prof.fdata.138401.fdata /tmp/.tmplYCBHb/prof.fdata.138431.fdata /tmp/.tmplYCBHb/prof.fdata.138438.fdata /tmp/.tmplYCBHb/prof.fdata.138450.fdata /tmp/.tmplYCBHb/prof.fdata.138454.fdata /tmp/.tmplYCBHb/prof.fdata.138462.fdata /tmp/.tmplYCBHb/prof.fdata.138475.fdata /tmp/.tmplYCBHb/prof.fdata.138481.fdata /tmp/.tmplYCBHb/prof.fdata.138489.fdata /tmp/.tmplYCBHb/prof.fdata.138496.fdata /tmp/.tmplYCBHb/prof.fdata.138502.fdata /tmp/.tmplYCBHb/prof.fdata.138505.fdata /tmp/.tmplYCBHb/prof.fdata.138510.fdata /tmp/.tmplYCBHb/prof.fdata.138514.fdata /tmp/.tmplYCBHb/prof.fdata.138522.fdata /tmp/.tmplYCBHb/prof.fdata.138524.fdata /tmp/.tmplYCBHb/prof.fdata.138530.fdata /tmp/.tmplYCBHb/prof.fdata.138534.fdata /tmp/.tmplYCBHb/prof.fdata.138537.fdata /tmp/.tmplYCBHb/prof.fdata.138543.fdata /tmp/.tmplYCBHb/prof.fdata.138569.fdata /tmp/.tmplYCBHb/prof.fdata.138572.fdata /tmp/.tmplYCBHb/prof.fdata.138580.fdata /tmp/.tmplYCBHb/prof.fdata.138584.fdata /tmp/.tmplYCBHb/prof.fdata.138615.fdata /tmp/.tmplYCBHb/prof.fdata.138634.fdata /tmp/.tmplYCBHb/prof.fdata.138642.fdata /tmp/.tmplYCBHb/prof.fdata.138644.fdata /tmp/.tmplYCBHb/prof.fdata.138647.fdata /tmp/.tmplYCBHb/prof.fdata.138653.fdata /tmp/.tmplYCBHb/prof.fdata.138660.fdata /tmp/.tmplYCBHb/prof.fdata.138679.fdata /tmp/.tmplYCBHb/prof.fdata.138695.fdata /tmp/.tmplYCBHb/prof.fdata.138703.fdata /tmp/.tmplYCBHb/prof.fdata.138712.fdata /tmp/.tmplYCBHb/prof.fdata.138716.fdata /tmp/.tmplYCBHb/prof.fdata.138720.fdata /tmp/.tmplYCBHb/prof.fdata.138730.fdata /tmp/.tmplYCBHb/prof.fdata.138733.fdata /tmp/.tmplYCBHb/prof.fdata.138747.fdata /tmp/.tmplYCBHb/prof.fdata.138758.fdata /tmp/.tmplYCBHb/prof.fdata.138766.fdata /tmp/.tmplYCBHb/prof.fdata.138773.fdata /tmp/.tmplYCBHb/prof.fdata.138782.fdata /tmp/.tmplYCBHb/prof.fdata.138784.fdata /tmp/.tmplYCBHb/prof.fdata.138793.fdata /tmp/.tmplYCBHb/prof.fdata.138799.fdata /tmp/.tmplYCBHb/prof.fdata.138802.fdata /tmp/.tmplYCBHb/prof.fdata.138809.fdata /tmp/.tmplYCBHb/prof.fdata.138822.fdata /tmp/.tmplYCBHb/prof.fdata.138837.fdata /tmp/.tmplYCBHb/prof.fdata.138848.fdata /tmp/.tmplYCBHb/prof.fdata.138853.fdata /tmp/.tmplYCBHb/prof.fdata.138862.fdata /tmp/.tmplYCBHb/prof.fdata.138870.fdata /tmp/.tmplYCBHb/prof.fdata.138871.fdata /tmp/.tmplYCBHb/prof.fdata.138887.fdata /tmp/.tmplYCBHb/prof.fdata.138894.fdata /tmp/.tmplYCBHb/prof.fdata.138905.fdata /tmp/.tmplYCBHb/prof.fdata.138910.fdata /tmp/.tmplYCBHb/prof.fdata.138913.fdata /tmp/.tmplYCBHb/prof.fdata.138929.fdata /tmp/.tmplYCBHb/prof.fdata.138931.fdata /tmp/.tmplYCBHb/prof.fdata.138950.fdata /tmp/.tmplYCBHb/prof.fdata.138959.fdata /tmp/.tmplYCBHb/prof.fdata.138968.fdata /tmp/.tmplYCBHb/prof.fdata.138991.fdata /tmp/.tmplYCBHb/prof.fdata.138993.fdata /tmp/.tmplYCBHb/prof.fdata.139009.fdata /tmp/.tmplYCBHb/prof.fdata.139024.fdata /tmp/.tmplYCBHb/prof.fdata.139025.fdata /tmp/.tmplYCBHb/prof.fdata.139059.fdata /tmp/.tmplYCBHb/prof.fdata.139060.fdata /tmp/.tmplYCBHb/prof.fdata.139093.fdata /tmp/.tmplYCBHb/prof.fdata.139097.fdata /tmp/.tmplYCBHb/prof.fdata.139104.fdata /tmp/.tmplYCBHb/prof.fdata.139108.fdata /tmp/.tmplYCBHb/prof.fdata.139112.fdata /tmp/.tmplYCBHb/prof.fdata.139129.fdata /tmp/.tmplYCBHb/prof.fdata.139145.fdata /tmp/.tmplYCBHb/prof.fdata.139152.fdata /tmp/.tmplYCBHb/prof.fdata.139189.fdata /tmp/.tmplYCBHb/prof.fdata.139210.fdata /tmp/.tmplYCBHb/prof.fdata.139224.fdata /tmp/.tmplYCBHb/prof.fdata.139225.fdata /tmp/.tmplYCBHb/prof.fdata.139228.fdata /tmp/.tmplYCBHb/prof.fdata.139229.fdata /tmp/.tmplYCBHb/prof.fdata.139234.fdata /tmp/.tmplYCBHb/prof.fdata.139235.fdata /tmp/.tmplYCBHb/prof.fdata.139240.fdata /tmp/.tmplYCBHb/prof.fdata.139241.fdata /tmp/.tmplYCBHb/prof.fdata.139247.fdata /tmp/.tmplYCBHb/prof.fdata.139248.fdata /tmp/.tmplYCBHb/prof.fdata.139252.fdata /tmp/.tmplYCBHb/prof.fdata.139253.fdata /tmp/.tmplYCBHb/prof.fdata.139328.fdata /tmp/.tmplYCBHb/prof.fdata.139334.fdata /tmp/.tmplYCBHb/prof.fdata.139341.fdata /tmp/.tmplYCBHb/prof.fdata.139348.fdata /tmp/.tmplYCBHb/prof.fdata.139412.fdata /tmp/.tmplYCBHb/prof.fdata.139439.fdata /tmp/.tmplYCBHb/prof.fdata.139484.fdata /tmp/.tmplYCBHb/prof.fdata.139485.fdata /tmp/.tmplYCBHb/prof.fdata.139488.fdata /tmp/.tmplYCBHb/prof.fdata.139489.fdata /tmp/.tmplYCBHb/prof.fdata.139494.fdata /tmp/.tmplYCBHb/prof.fdata.139495.fdata /tmp/.tmplYCBHb/prof.fdata.139500.fdata /tmp/.tmplYCBHb/prof.fdata.139501.fdata /tmp/.tmplYCBHb/prof.fdata.139511.fdata /tmp/.tmplYCBHb/prof.fdata.139513.fdata /tmp/.tmplYCBHb/prof.fdata.139514.fdata /tmp/.tmplYCBHb/prof.fdata.139515.fdata /tmp/.tmplYCBHb/prof.fdata.139516.fdata /tmp/.tmplYCBHb/prof.fdata.139519.fdata /tmp/.tmplYCBHb/prof.fdata.139521.fdata /tmp/.tmplYCBHb/prof.fdata.139522.fdata /tmp/.tmplYCBHb/prof.fdata.139524.fdata /tmp/.tmplYCBHb/prof.fdata.139528.fdata /tmp/.tmplYCBHb/prof.fdata.139529.fdata /tmp/.tmplYCBHb/prof.fdata.139532.fdata /tmp/.tmplYCBHb/prof.fdata.139534.fdata /tmp/.tmplYCBHb/prof.fdata.139536.fdata /tmp/.tmplYCBHb/prof.fdata.139538.fdata /tmp/.tmplYCBHb/prof.fdata.139539.fdata /tmp/.tmplYCBHb/prof.fdata.139540.fdata /tmp/.tmplYCBHb/prof.fdata.139546.fdata /tmp/.tmplYCBHb/prof.fdata.139671.fdata /tmp/.tmplYCBHb/prof.fdata.139675.fdata /tmp/.tmplYCBHb/prof.fdata.139689.fdata /tmp/.tmplYCBHb/prof.fdata.139693.fdata /tmp/.tmplYCBHb/prof.fdata.139709.fdata /tmp/.tmplYCBHb/prof.fdata.139716.fdata /tmp/.tmplYCBHb/prof.fdata.139720.fdata /tmp/.tmplYCBHb/prof.fdata.139730.fdata /tmp/.tmplYCBHb/prof.fdata.139732.fdata /tmp/.tmplYCBHb/prof.fdata.139735.fdata /tmp/.tmplYCBHb/prof.fdata.139736.fdata /tmp/.tmplYCBHb/prof.fdata.139748.fdata /tmp/.tmplYCBHb/prof.fdata.139750.fdata /tmp/.tmplYCBHb/prof.fdata.139761.fdata /tmp/.tmplYCBHb/prof.fdata.139763.fdata /tmp/.tmplYCBHb/prof.fdata.139769.fdata /tmp/.tmplYCBHb/prof.fdata.139787.fdata /tmp/.tmplYCBHb/prof.fdata.139793.fdata /tmp/.tmplYCBHb/prof.fdata.139794.fdata /tmp/.tmplYCBHb/prof.fdata.139803.fdata /tmp/.tmplYCBHb/prof.fdata.139808.fdata /tmp/.tmplYCBHb/prof.fdata.139812.fdata /tmp/.tmplYCBHb/prof.fdata.139818.fdata /tmp/.tmplYCBHb/prof.fdata.139826.fdata /tmp/.tmplYCBHb/prof.fdata.139843.fdata /tmp/.tmplYCBHb/prof.fdata.139852.fdata /tmp/.tmplYCBHb/prof.fdata.139866.fdata /tmp/.tmplYCBHb/prof.fdata.139873.fdata /tmp/.tmplYCBHb/prof.fdata.139877.fdata /tmp/.tmplYCBHb/prof.fdata.139924.fdata /tmp/.tmplYCBHb/prof.fdata.139930.fdata /tmp/.tmplYCBHb/prof.fdata.139940.fdata /tmp/.tmplYCBHb/prof.fdata.139942.fdata /tmp/.tmplYCBHb/prof.fdata.139952.fdata /tmp/.tmplYCBHb/prof.fdata.139956.fdata /tmp/.tmplYCBHb/prof.fdata.139964.fdata /tmp/.tmplYCBHb/prof.fdata.139972.fdata /tmp/.tmplYCBHb/prof.fdata.139985.fdata /tmp/.tmplYCBHb/prof.fdata.139993.fdata /tmp/.tmplYCBHb/prof.fdata.139998.fdata /tmp/.tmplYCBHb/prof.fdata.140004.fdata /tmp/.tmplYCBHb/prof.fdata.140008.fdata /tmp/.tmplYCBHb/prof.fdata.140024.fdata /tmp/.tmplYCBHb/prof.fdata.140033.fdata /tmp/.tmplYCBHb/prof.fdata.140051.fdata /tmp/.tmplYCBHb/prof.fdata.140071.fdata /tmp/.tmplYCBHb/prof.fdata.140104.fdata /tmp/.tmplYCBHb/prof.fdata.140123.fdata /tmp/.tmplYCBHb/prof.fdata.140137.fdata /tmp/.tmplYCBHb/prof.fdata.140144.fdata /tmp/.tmplYCBHb/prof.fdata.140165.fdata /tmp/.tmplYCBHb/prof.fdata.140174.fdata /tmp/.tmplYCBHb/prof.fdata.140189.fdata /tmp/.tmplYCBHb/prof.fdata.140197.fdata /tmp/.tmplYCBHb/prof.fdata.140208.fdata /tmp/.tmplYCBHb/prof.fdata.140211.fdata /tmp/.tmplYCBHb/prof.fdata.140219.fdata /tmp/.tmplYCBHb/prof.fdata.140222.fdata /tmp/.tmplYCBHb/prof.fdata.140240.fdata /tmp/.tmplYCBHb/prof.fdata.140254.fdata /tmp/.tmplYCBHb/prof.fdata.140265.fdata /tmp/.tmplYCBHb/prof.fdata.140278.fdata /tmp/.tmplYCBHb/prof.fdata.140286.fdata /tmp/.tmplYCBHb/prof.fdata.140288.fdata /tmp/.tmplYCBHb/prof.fdata.140304.fdata /tmp/.tmplYCBHb/prof.fdata.140314.fdata /tmp/.tmplYCBHb/prof.fdata.140330.fdata /tmp/.tmplYCBHb/prof.fdata.140335.fdata /tmp/.tmplYCBHb/prof.fdata.140340.fdata /tmp/.tmplYCBHb/prof.fdata.140344.fdata /tmp/.tmplYCBHb/prof.fdata.140358.fdata /tmp/.tmplYCBHb/prof.fdata.140377.fdata /tmp/.tmplYCBHb/prof.fdata.140380.fdata /tmp/.tmplYCBHb/prof.fdata.140385.fdata /tmp/.tmplYCBHb/prof.fdata.140395.fdata /tmp/.tmplYCBHb/prof.fdata.140406.fdata /tmp/.tmplYCBHb/prof.fdata.140413.fdata /tmp/.tmplYCBHb/prof.fdata.140433.fdata /tmp/.tmplYCBHb/prof.fdata.140439.fdata /tmp/.tmplYCBHb/prof.fdata.140449.fdata /tmp/.tmplYCBHb/prof.fdata.140456.fdata /tmp/.tmplYCBHb/prof.fdata.140458.fdata /tmp/.tmplYCBHb/prof.fdata.140503.fdata /tmp/.tmplYCBHb/prof.fdata.140513.fdata /tmp/.tmplYCBHb/prof.fdata.140523.fdata /tmp/.tmplYCBHb/prof.fdata.140535.fdata /tmp/.tmplYCBHb/prof.fdata.140550.fdata /tmp/.tmplYCBHb/prof.fdata.140555.fdata /tmp/.tmplYCBHb/prof.fdata.140575.fdata /tmp/.tmplYCBHb/prof.fdata.140600.fdata /tmp/.tmplYCBHb/prof.fdata.140612.fdata /tmp/.tmplYCBHb/prof.fdata.140619.fdata /tmp/.tmplYCBHb/prof.fdata.140629.fdata /tmp/.tmplYCBHb/prof.fdata.140654.fdata /tmp/.tmplYCBHb/prof.fdata.140660.fdata /tmp/.tmplYCBHb/prof.fdata.140673.fdata /tmp/.tmplYCBHb/prof.fdata.140679.fdata /tmp/.tmplYCBHb/prof.fdata.140693.fdata /tmp/.tmplYCBHb/prof.fdata.140698.fdata /tmp/.tmplYCBHb/prof.fdata.140716.fdata /tmp/.tmplYCBHb/prof.fdata.140723.fdata /tmp/.tmplYCBHb/prof.fdata.140732.fdata /tmp/.tmplYCBHb/prof.fdata.140745.fdata /tmp/.tmplYCBHb/prof.fdata.140766.fdata /tmp/.tmplYCBHb/prof.fdata.140777.fdata /tmp/.tmplYCBHb/prof.fdata.140778.fdata /tmp/.tmplYCBHb/prof.fdata.140800.fdata /tmp/.tmplYCBHb/prof.fdata.140805.fdata /tmp/.tmplYCBHb/prof.fdata.140822.fdata /tmp/.tmplYCBHb/prof.fdata.140839.fdata /tmp/.tmplYCBHb/prof.fdata.140858.fdata /tmp/.tmplYCBHb/prof.fdata.140878.fdata /tmp/.tmplYCBHb/prof.fdata.140895.fdata /tmp/.tmplYCBHb/prof.fdata.140914.fdata /tmp/.tmplYCBHb/prof.fdata.140928.fdata /tmp/.tmplYCBHb/prof.fdata.140961.fdata /tmp/.tmplYCBHb/prof.fdata.140977.fdata /tmp/.tmplYCBHb/prof.fdata.140981.fdata /tmp/.tmplYCBHb/prof.fdata.140997.fdata /tmp/.tmplYCBHb/prof.fdata.141013.fdata /tmp/.tmplYCBHb/prof.fdata.141077.fdata /tmp/.tmplYCBHb/prof.fdata.141095.fdata /tmp/.tmplYCBHb/prof.fdata.141126.fdata /tmp/.tmplYCBHb/prof.fdata.141177.fdata /tmp/.tmplYCBHb/prof.fdata.141212.fdata /tmp/.tmplYCBHb/prof.fdata.141256.fdata /tmp/.tmplYCBHb/prof.fdata.141258.fdata /tmp/.tmplYCBHb/prof.fdata.141261.fdata /tmp/.tmplYCBHb/prof.fdata.141264.fdata /tmp/.tmplYCBHb/prof.fdata.141273.fdata /tmp/.tmplYCBHb/prof.fdata.141275.fdata /tmp/.tmplYCBHb/prof.fdata.141276.fdata /tmp/.tmplYCBHb/prof.fdata.141277.fdata /tmp/.tmplYCBHb/prof.fdata.141278.fdata /tmp/.tmplYCBHb/prof.fdata.141280.fdata /tmp/.tmplYCBHb/prof.fdata.141281.fdata /tmp/.tmplYCBHb/prof.fdata.141285.fdata /tmp/.tmplYCBHb/prof.fdata.141288.fdata /tmp/.tmplYCBHb/prof.fdata.141290.fdata /tmp/.tmplYCBHb/prof.fdata.141291.fdata /tmp/.tmplYCBHb/prof.fdata.141292.fdata /tmp/.tmplYCBHb/prof.fdata.141294.fdata /tmp/.tmplYCBHb/prof.fdata.141296.fdata /tmp/.tmplYCBHb/prof.fdata.141298.fdata /tmp/.tmplYCBHb/prof.fdata.141299.fdata /tmp/.tmplYCBHb/prof.fdata.141314.fdata /tmp/.tmplYCBHb/prof.fdata.141421.fdata /tmp/.tmplYCBHb/prof.fdata.141425.fdata /tmp/.tmplYCBHb/prof.fdata.141429.fdata /tmp/.tmplYCBHb/prof.fdata.141442.fdata /tmp/.tmplYCBHb/prof.fdata.141454.fdata /tmp/.tmplYCBHb/prof.fdata.141459.fdata /tmp/.tmplYCBHb/prof.fdata.141465.fdata /tmp/.tmplYCBHb/prof.fdata.141476.fdata /tmp/.tmplYCBHb/prof.fdata.141480.fdata /tmp/.tmplYCBHb/prof.fdata.141485.fdata /tmp/.tmplYCBHb/prof.fdata.141487.fdata /tmp/.tmplYCBHb/prof.fdata.141493.fdata /tmp/.tmplYCBHb/prof.fdata.141498.fdata /tmp/.tmplYCBHb/prof.fdata.141501.fdata /tmp/.tmplYCBHb/prof.fdata.141506.fdata /tmp/.tmplYCBHb/prof.fdata.141509.fdata /tmp/.tmplYCBHb/prof.fdata.141512.fdata /tmp/.tmplYCBHb/prof.fdata.141517.fdata /tmp/.tmplYCBHb/prof.fdata.141524.fdata /tmp/.tmplYCBHb/prof.fdata.141532.fdata /tmp/.tmplYCBHb/prof.fdata.141545.fdata /tmp/.tmplYCBHb/prof.fdata.141549.fdata /tmp/.tmplYCBHb/prof.fdata.141556.fdata /tmp/.tmplYCBHb/prof.fdata.141560.fdata /tmp/.tmplYCBHb/prof.fdata.141564.fdata /tmp/.tmplYCBHb/prof.fdata.141566.fdata /tmp/.tmplYCBHb/prof.fdata.141572.fdata /tmp/.tmplYCBHb/prof.fdata.141597.fdata /tmp/.tmplYCBHb/prof.fdata.141603.fdata /tmp/.tmplYCBHb/prof.fdata.141622.fdata /tmp/.tmplYCBHb/prof.fdata.141626.fdata /tmp/.tmplYCBHb/prof.fdata.141634.fdata /tmp/.tmplYCBHb/prof.fdata.141643.fdata /tmp/.tmplYCBHb/prof.fdata.141651.fdata /tmp/.tmplYCBHb/prof.fdata.141664.fdata /tmp/.tmplYCBHb/prof.fdata.141669.fdata /tmp/.tmplYCBHb/prof.fdata.141673.fdata /tmp/.tmplYCBHb/prof.fdata.141692.fdata /tmp/.tmplYCBHb/prof.fdata.141697.fdata /tmp/.tmplYCBHb/prof.fdata.141698.fdata /tmp/.tmplYCBHb/prof.fdata.141711.fdata /tmp/.tmplYCBHb/prof.fdata.141715.fdata /tmp/.tmplYCBHb/prof.fdata.141719.fdata /tmp/.tmplYCBHb/prof.fdata.141734.fdata /tmp/.tmplYCBHb/prof.fdata.141738.fdata /tmp/.tmplYCBHb/prof.fdata.141742.fdata /tmp/.tmplYCBHb/prof.fdata.141746.fdata /tmp/.tmplYCBHb/prof.fdata.141752.fdata /tmp/.tmplYCBHb/prof.fdata.141772.fdata /tmp/.tmplYCBHb/prof.fdata.141778.fdata /tmp/.tmplYCBHb/prof.fdata.141784.fdata /tmp/.tmplYCBHb/prof.fdata.141805.fdata /tmp/.tmplYCBHb/prof.fdata.141833.fdata /tmp/.tmplYCBHb/prof.fdata.141847.fdata /tmp/.tmplYCBHb/prof.fdata.141858.fdata /tmp/.tmplYCBHb/prof.fdata.141865.fdata /tmp/.tmplYCBHb/prof.fdata.141872.fdata /tmp/.tmplYCBHb/prof.fdata.141892.fdata /tmp/.tmplYCBHb/prof.fdata.141910.fdata /tmp/.tmplYCBHb/prof.fdata.141911.fdata /tmp/.tmplYCBHb/prof.fdata.141914.fdata /tmp/.tmplYCBHb/prof.fdata.141915.fdata /tmp/.tmplYCBHb/prof.fdata.141920.fdata /tmp/.tmplYCBHb/prof.fdata.141921.fdata /tmp/.tmplYCBHb/prof.fdata.141926.fdata /tmp/.tmplYCBHb/prof.fdata.141927.fdata /tmp/.tmplYCBHb/prof.fdata.141932.fdata /tmp/.tmplYCBHb/prof.fdata.141935.fdata /tmp/.tmplYCBHb/prof.fdata.141954.fdata /tmp/.tmplYCBHb/prof.fdata.141958.fdata /tmp/.tmplYCBHb/prof.fdata.141973.fdata /tmp/.tmplYCBHb/prof.fdata.141988.fdata /tmp/.tmplYCBHb/prof.fdata.142003.fdata /tmp/.tmplYCBHb/prof.fdata.142004.fdata /tmp/.tmplYCBHb/prof.fdata.142007.fdata /tmp/.tmplYCBHb/prof.fdata.142008.fdata /tmp/.tmplYCBHb/prof.fdata.142013.fdata /tmp/.tmplYCBHb/prof.fdata.142014.fdata /tmp/.tmplYCBHb/prof.fdata.142019.fdata /tmp/.tmplYCBHb/prof.fdata.142020.fdata /tmp/.tmplYCBHb/prof.fdata.142027.fdata /tmp/.tmplYCBHb/prof.fdata.142028.fdata /tmp/.tmplYCBHb/prof.fdata.142029.fdata /tmp/.tmplYCBHb/prof.fdata.142034.fdata /tmp/.tmplYCBHb/prof.fdata.142035.fdata /tmp/.tmplYCBHb/prof.fdata.142036.fdata /tmp/.tmplYCBHb/prof.fdata.142090.fdata /tmp/.tmplYCBHb/prof.fdata.142093.fdata /tmp/.tmplYCBHb/prof.fdata.142098.fdata /tmp/.tmplYCBHb/prof.fdata.142102.fdata /tmp/.tmplYCBHb/prof.fdata.142105.fdata /tmp/.tmplYCBHb/prof.fdata.142109.fdata /tmp/.tmplYCBHb/prof.fdata.142113.fdata /tmp/.tmplYCBHb/prof.fdata.142123.fdata /tmp/.tmplYCBHb/prof.fdata.142173.fdata /tmp/.tmplYCBHb/prof.fdata.142203.fdata > "/tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata" [at /checkout/obj]`
Profile from 750 files merged.
##[endgroup]
[2024-08-30T03:20:31.280Z INFO  opt_dist::training] LLVM BOLT statistics
[2024-08-30T03:20:31.280Z INFO  opt_dist::training] /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata: 158.41 MiB
---
[2024-08-30T03:25:42Z DEBUG collector::compile::execute] cd "/tmp/.tmpQR9jLJ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=9,10 --jobserver-auth=9,10" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpQR9jLJ#bitmaps@3.1.0" "--release" "--" "--skip-this-rustc"
Running bitmaps-3.1.0: Check + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2024-08-30T03:25:44Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:25:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:25:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpmXYigK" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmXYigK#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T03:25:48Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:25:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpmXYigK" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmXYigK#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpmXYigK/incremental-state"
[2024-08-30T03:25:53Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:25:53Z DEBUG collector::compile::execute] cd "/tmp/.tmpmXYigK" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmXYigK#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpmXYigK/incremental-state"
[2024-08-30T03:25:55Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpmXYigK"
[2024-08-30T03:25:55Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T03:25:55Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T03:25:55Z DEBUG collector::compile::execute] cd "/tmp/.tmpmXYigK" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmXYigK#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpmXYigK/incremental-state"
[2024-08-30T03:26:00Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:26:00Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:26:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpjv1swe" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpjv1swe#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T03:26:04Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-08-30T03:26:18Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:26:18Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:26:18Z DEBUG collector::compile::execute] cd "/tmp/.tmpR8guaJ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpR8guaJ#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T03:26:23Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:26:23Z DEBUG collector::compile::execute] cd "/tmp/.tmpR8guaJ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpR8guaJ#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpR8guaJ/incremental-state"
[2024-08-30T03:26:28Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:26:28Z DEBUG collector::compile::execute] cd "/tmp/.tmpR8guaJ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpR8guaJ#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpR8guaJ/incremental-state"
[2024-08-30T03:26:31Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpR8guaJ"
[2024-08-30T03:26:31Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T03:26:31Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T03:26:31Z DEBUG collector::compile::execute] cd "/tmp/.tmpR8guaJ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpR8guaJ#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpR8guaJ/incremental-state"
Executing benchmark cargo-0.60.0 (2/8)
Preparing cargo-0.60.0
[2024-08-30T03:26:36Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T03:26:36Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-08-30T03:31:07Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:31:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:31:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpROfozr" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpROfozr#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T03:31:37Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:31:37Z DEBUG collector::compile::execute] cd "/tmp/.tmpROfozr" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpROfozr#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpROfozr/incremental-state"
[2024-08-30T03:32:07Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:32:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpROfozr" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpROfozr#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpROfozr/incremental-state"
[2024-08-30T03:32:14Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpROfozr"
[2024-08-30T03:32:14Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T03:32:14Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T03:32:14Z DEBUG collector::compile::execute] cd "/tmp/.tmpROfozr" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpROfozr#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpROfozr/incremental-state"
Executing benchmark ctfe-stress-5 (3/8)
Preparing ctfe-stress-5
[2024-08-30T03:32:25Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T03:32:25Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-08-30T03:33:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpADnQz2" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpADnQz2#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpADnQz2/incremental-state"
Running ctfe-stress-5: Opt + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2024-08-30T03:33:04Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:33:04Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:33:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpbcrVt7" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpbcrVt7#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T03:33:11Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:33:11Z DEBUG collector::compile::execute] cd "/tmp/.tmpbcrVt7" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpbcrVt7#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpbcrVt7/incremental-state"
[2024-08-30T03:33:19Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:33:19Z DEBUG collector::compile::execute] cd "/tmp/.tmpbcrVt7" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpbcrVt7#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpbcrVt7/incremental-state"
Executing benchmark diesel-1.4.8 (4/8)
Preparing diesel-1.4.8
[2024-08-30T03:33:22Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T03:33:22Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-08-30T03:33:45Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:33:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:33:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpJKzkRL" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpJKzkRL#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T03:33:54Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:33:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpJKzkRL" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpJKzkRL#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpJKzkRL/incremental-state"
[2024-08-30T03:34:04Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:34:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpJKzkRL" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpJKzkRL#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpJKzkRL/incremental-state"
[2024-08-30T03:34:08Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpJKzkRL"
[2024-08-30T03:34:08Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T03:34:08Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T03:34:08Z DEBUG collector::compile::execute] cd "/tmp/.tmpJKzkRL" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpJKzkRL#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpJKzkRL/incremental-state"
[2024-08-30T03:34:14Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:34:14Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:34:14Z DEBUG collector::compile::execute] cd "/tmp/.tmpvnTeWG" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvnTeWG#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T03:34:24Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-08-30T03:36:04Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:36:04Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:36:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpTspQ3S" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpTspQ3S#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T03:36:09Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:36:09Z DEBUG collector::compile::execute] cd "/tmp/.tmpTspQ3S" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpTspQ3S#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpTspQ3S/incremental-state"
[2024-08-30T03:36:14Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:36:14Z DEBUG collector::compile::execute] cd "/tmp/.tmpTspQ3S" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpTspQ3S#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpTspQ3S/incremental-state"
Executing benchmark token-stream-stress (7/8)
Preparing token-stream-stress
[2024-08-30T03:36:16Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None, backend=Llvm, phase=dependencies
[2024-08-30T03:36:16Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None, backend=Llvm, phase=dependencies
---
[2024-08-30T03:36:27Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:36:27Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:36:27Z DEBUG collector::compile::execute] cd "/tmp/.tmpxGSQYg" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpxGSQYg#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T03:36:30Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:36:30Z DEBUG collector::compile::execute] cd "/tmp/.tmpxGSQYg" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpxGSQYg#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpxGSQYg/incremental-state"
[2024-08-30T03:36:33Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:36:33Z DEBUG collector::compile::execute] cd "/tmp/.tmpxGSQYg" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpxGSQYg#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpxGSQYg/incremental-state"
[2024-08-30T03:36:35Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:36:35Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:36:35Z DEBUG collector::compile::execute] cd "/tmp/.tmp6ScjKL" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp6ScjKL#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T03:36:37Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-08-30T03:36:44Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:36:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:36:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpmzxRAI" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmzxRAI#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T03:36:49Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:36:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpmzxRAI" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmzxRAI#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpmzxRAI/incremental-state"
[2024-08-30T03:36:54Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:36:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpmzxRAI" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmzxRAI#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpmzxRAI/incremental-state"
[2024-08-30T03:36:56Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpmzxRAI"
[2024-08-30T03:36:56Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T03:36:56Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T03:36:56Z DEBUG collector::compile::execute] cd "/tmp/.tmpmzxRAI" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmzxRAI#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpmzxRAI/incremental-state"
[2024-08-30T03:37:01Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:37:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:37:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpoTgso6" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpoTgso6#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T03:37:06Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
---
[2024-08-30T03:37:15Z DEBUG collector::compile::execute] cd "/tmp/.tmpoTgso6" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpoTgso6#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpoTgso6/incremental-state"
Running tuple-stress: Opt + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm
[2024-08-30T03:37:21Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-08-30T03:37:21Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:37:21Z DEBUG collector::compile::execute] cd "/tmp/.tmpFZliGJ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpFZliGJ#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-08-30T03:37:26Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:37:26Z DEBUG collector::compile::execute] cd "/tmp/.tmpFZliGJ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpFZliGJ#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpFZliGJ/incremental-state"
[2024-08-30T03:37:31Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None, backend=Llvm, phase=benchmark
[2024-08-30T03:37:31Z DEBUG collector::compile::execute] cd "/tmp/.tmpFZliGJ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpFZliGJ#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpFZliGJ/incremental-state"
[2024-08-30T03:37:34Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpFZliGJ"
[2024-08-30T03:37:34Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T03:37:34Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" }), backend=Llvm, phase=benchmark
[2024-08-30T03:37:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpFZliGJ" && CARGO="/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpFZliGJ#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpFZliGJ/incremental-state"
[2024-08-30T03:37:40.502Z INFO  opt_dist::training] Merging rustc BOLT profiles from /tmp/.tmpGxUS7U/prof.fdata to /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata
##[endgroup]
##[group]Merging BOLT profiles
##[group]Merging BOLT profiles
[2024-08-30T03:37:40.504Z INFO  opt_dist::exec] Executing `merge-fdata /tmp/.tmpGxUS7U/prof.fdata.142294.fdata /tmp/.tmpGxUS7U/prof.fdata.142309.fdata /tmp/.tmpGxUS7U/prof.fdata.142310.fdata /tmp/.tmpGxUS7U/prof.fdata.142311.fdata /tmp/.tmpGxUS7U/prof.fdata.142315.fdata /tmp/.tmpGxUS7U/prof.fdata.142316.fdata /tmp/.tmpGxUS7U/prof.fdata.142317.fdata /tmp/.tmpGxUS7U/prof.fdata.142324.fdata /tmp/.tmpGxUS7U/prof.fdata.142325.fdata /tmp/.tmpGxUS7U/prof.fdata.142326.fdata /tmp/.tmpGxUS7U/prof.fdata.142333.fdata /tmp/.tmpGxUS7U/prof.fdata.142334.fdata /tmp/.tmpGxUS7U/prof.fdata.142335.fdata /tmp/.tmpGxUS7U/prof.fdata.142354.fdata /tmp/.tmpGxUS7U/prof.fdata.142364.fdata /tmp/.tmpGxUS7U/prof.fdata.142374.fdata /tmp/.tmpGxUS7U/prof.fdata.142385.fdata /tmp/.tmpGxUS7U/prof.fdata.142396.fdata /tmp/.tmpGxUS7U/prof.fdata.142407.fdata /tmp/.tmpGxUS7U/prof.fdata.142449.fdata /tmp/.tmpGxUS7U/prof.fdata.142492.fdata /tmp/.tmpGxUS7U/prof.fdata.142535.fdata /tmp/.tmpGxUS7U/prof.fdata.142549.fdata /tmp/.tmpGxUS7U/prof.fdata.142573.fdata /tmp/.tmpGxUS7U/prof.fdata.142591.fdata /tmp/.tmpGxUS7U/prof.fdata.142615.fdata /tmp/.tmpGxUS7U/prof.fdata.142616.fdata /tmp/.tmpGxUS7U/prof.fdata.142617.fdata /tmp/.tmpGxUS7U/prof.fdata.142621.fdata /tmp/.tmpGxUS7U/prof.fdata.142622.fdata /tmp/.tmpGxUS7U/prof.fdata.142623.fdata /tmp/.tmpGxUS7U/prof.fdata.142630.fdata /tmp/.tmpGxUS7U/prof.fdata.142631.fdata /tmp/.tmpGxUS7U/prof.fdata.142632.fdata /tmp/.tmpGxUS7U/prof.fdata.142639.fdata /tmp/.tmpGxUS7U/prof.fdata.142640.fdata /tmp/.tmpGxUS7U/prof.fdata.142641.fdata /tmp/.tmpGxUS7U/prof.fdata.142653.fdata /tmp/.tmpGxUS7U/prof.fdata.142654.fdata /tmp/.tmpGxUS7U/prof.fdata.142655.fdata /tmp/.tmpGxUS7U/prof.fdata.142656.fdata /tmp/.tmpGxUS7U/prof.fdata.142658.fdata /tmp/.tmpGxUS7U/prof.fdata.142659.fdata /tmp/.tmpGxUS7U/prof.fdata.142660.fdata /tmp/.tmpGxUS7U/prof.fdata.142664.fdata /tmp/.tmpGxUS7U/prof.fdata.142665.fdata /tmp/.tmpGxUS7U/prof.fdata.142669.fdata /tmp/.tmpGxUS7U/prof.fdata.142670.fdata /tmp/.tmpGxUS7U/prof.fdata.142672.fdata /tmp/.tmpGxUS7U/prof.fdata.142673.fdata /tmp/.tmpGxUS7U/prof.fdata.142675.fdata /tmp/.tmpGxUS7U/prof.fdata.142677.fdata /tmp/.tmpGxUS7U/prof.fdata.142680.fdata /tmp/.tmpGxUS7U/prof.fdata.142682.fdata /tmp/.tmpGxUS7U/prof.fdata.142690.fdata /tmp/.tmpGxUS7U/prof.fdata.142691.fdata /tmp/.tmpGxUS7U/prof.fdata.142840.fdata /tmp/.tmpGxUS7U/prof.fdata.142844.fdata /tmp/.tmpGxUS7U/prof.fdata.142850.fdata /tmp/.tmpGxUS7U/prof.fdata.142861.fdata /tmp/.tmpGxUS7U/prof.fdata.142873.fdata /tmp/.tmpGxUS7U/prof.fdata.142882.fdata /tmp/.tmpGxUS7U/prof.fdata.142885.fdata /tmp/.tmpGxUS7U/prof.fdata.142889.fdata /tmp/.tmpGxUS7U/prof.fdata.142896.fdata /tmp/.tmpGxUS7U/prof.fdata.142898.fdata /tmp/.tmpGxUS7U/prof.fdata.142903.fdata /tmp/.tmpGxUS7U/prof.fdata.142907.fdata /tmp/.tmpGxUS7U/prof.fdata.142909.fdata /tmp/.tmpGxUS7U/prof.fdata.142914.fdata /tmp/.tmpGxUS7U/prof.fdata.142919.fdata /tmp/.tmpGxUS7U/prof.fdata.142923.fdata /tmp/.tmpGxUS7U/prof.fdata.142930.fdata /tmp/.tmpGxUS7U/prof.fdata.142937.fdata /tmp/.tmpGxUS7U/prof.fdata.142943.fdata /tmp/.tmpGxUS7U/prof.fdata.142948.fdata /tmp/.tmpGxUS7U/prof.fdata.142952.fdata /tmp/.tmpGxUS7U/prof.fdata.142966.fdata /tmp/.tmpGxUS7U/prof.fdata.142980.fdata /tmp/.tmpGxUS7U/prof.fdata.142984.fdata /tmp/.tmpGxUS7U/prof.fdata.142994.fdata /tmp/.tmpGxUS7U/prof.fdata.143006.fdata /tmp/.tmpGxUS7U/prof.fdata.143011.fdata /tmp/.tmpGxUS7U/prof.fdata.143019.fdata /tmp/.tmpGxUS7U/prof.fdata.143026.fdata /tmp/.tmpGxUS7U/prof.fdata.143049.fdata /tmp/.tmpGxUS7U/prof.fdata.143053.fdata /tmp/.tmpGxUS7U/prof.fdata.143095.fdata /tmp/.tmpGxUS7U/prof.fdata.143102.fdata /tmp/.tmpGxUS7U/prof.fdata.143103.fdata /tmp/.tmpGxUS7U/prof.fdata.143118.fdata /tmp/.tmpGxUS7U/prof.fdata.143124.fdata /tmp/.tmpGxUS7U/prof.fdata.143128.fdata /tmp/.tmpGxUS7U/prof.fdata.143139.fdata /tmp/.tmpGxUS7U/prof.fdata.143154.fdata /tmp/.tmpGxUS7U/prof.fdata.143171.fdata /tmp/.tmpGxUS7U/prof.fdata.143181.fdata /tmp/.tmpGxUS7U/prof.fdata.143186.fdata /tmp/.tmpGxUS7U/prof.fdata.143203.fdata /tmp/.tmpGxUS7U/prof.fdata.143208.fdata /tmp/.tmpGxUS7U/prof.fdata.143212.fdata /tmp/.tmpGxUS7U/prof.fdata.143220.fdata /tmp/.tmpGxUS7U/prof.fdata.143225.fdata /tmp/.tmpGxUS7U/prof.fdata.143241.fdata /tmp/.tmpGxUS7U/prof.fdata.143265.fdata /tmp/.tmpGxUS7U/prof.fdata.143270.fdata /tmp/.tmpGxUS7U/prof.fdata.143286.fdata /tmp/.tmpGxUS7U/prof.fdata.143296.fdata /tmp/.tmpGxUS7U/prof.fdata.143304.fdata /tmp/.tmpGxUS7U/prof.fdata.143309.fdata /tmp/.tmpGxUS7U/prof.fdata.143313.fdata /tmp/.tmpGxUS7U/prof.fdata.143320.fdata /tmp/.tmpGxUS7U/prof.fdata.143327.fdata /tmp/.tmpGxUS7U/prof.fdata.143340.fdata /tmp/.tmpGxUS7U/prof.fdata.143344.fdata /tmp/.tmpGxUS7U/prof.fdata.143348.fdata /tmp/.tmpGxUS7U/prof.fdata.143359.fdata /tmp/.tmpGxUS7U/prof.fdata.143372.fdata /tmp/.tmpGxUS7U/prof.fdata.143420.fdata /tmp/.tmpGxUS7U/prof.fdata.143435.fdata /tmp/.tmpGxUS7U/prof.fdata.143448.fdata /tmp/.tmpGxUS7U/prof.fdata.143464.fdata /tmp/.tmpGxUS7U/prof.fdata.143469.fdata /tmp/.tmpGxUS7U/prof.fdata.143473.fdata /tmp/.tmpGxUS7U/prof.fdata.143502.fdata /tmp/.tmpGxUS7U/prof.fdata.143507.fdata /tmp/.tmpGxUS7U/prof.fdata.143520.fdata /tmp/.tmpGxUS7U/prof.fdata.143527.fdata /tmp/.tmpGxUS7U/prof.fdata.143531.fdata /tmp/.tmpGxUS7U/prof.fdata.143538.fdata /tmp/.tmpGxUS7U/prof.fdata.143548.fdata /tmp/.tmpGxUS7U/prof.fdata.143552.fdata /tmp/.tmpGxUS7U/prof.fdata.143569.fdata /tmp/.tmpGxUS7U/prof.fdata.143581.fdata /tmp/.tmpGxUS7U/prof.fdata.143586.fdata /tmp/.tmpGxUS7U/prof.fdata.143599.fdata /tmp/.tmpGxUS7U/prof.fdata.143601.fdata /tmp/.tmpGxUS7U/prof.fdata.143610.fdata /tmp/.tmpGxUS7U/prof.fdata.143621.fdata /tmp/.tmpGxUS7U/prof.fdata.143623.fdata /tmp/.tmpGxUS7U/prof.fdata.143625.fdata /tmp/.tmpGxUS7U/prof.fdata.143633.fdata /tmp/.tmpGxUS7U/prof.fdata.143645.fdata /tmp/.tmpGxUS7U/prof.fdata.143651.fdata /tmp/.tmpGxUS7U/prof.fdata.143658.fdata /tmp/.tmpGxUS7U/prof.fdata.143663.fdata /tmp/.tmpGxUS7U/prof.fdata.143669.fdata /tmp/.tmpGxUS7U/prof.fdata.143709.fdata /tmp/.tmpGxUS7U/prof.fdata.143730.fdata /tmp/.tmpGxUS7U/prof.fdata.143739.fdata /tmp/.tmpGxUS7U/prof.fdata.143745.fdata /tmp/.tmpGxUS7U/prof.fdata.143746.fdata /tmp/.tmpGxUS7U/prof.fdata.143755.fdata /tmp/.tmpGxUS7U/prof.fdata.143759.fdata /tmp/.tmpGxUS7U/prof.fdata.143772.fdata /tmp/.tmpGxUS7U/prof.fdata.143773.fdata /tmp/.tmpGxUS7U/prof.fdata.143780.fdata /tmp/.tmpGxUS7U/prof.fdata.143789.fdata /tmp/.tmpGxUS7U/prof.fdata.143811.fdata /tmp/.tmpGxUS7U/prof.fdata.143816.fdata /tmp/.tmpGxUS7U/prof.fdata.143822.fdata /tmp/.tmpGxUS7U/prof.fdata.143838.fdata /tmp/.tmpGxUS7U/prof.fdata.143845.fdata /tmp/.tmpGxUS7U/prof.fdata.143852.fdata /tmp/.tmpGxUS7U/prof.fdata.143857.fdata /tmp/.tmpGxUS7U/prof.fdata.143863.fdata /tmp/.tmpGxUS7U/prof.fdata.143873.fdata /tmp/.tmpGxUS7U/prof.fdata.143879.fdata /tmp/.tmpGxUS7U/prof.fdata.143888.fdata /tmp/.tmpGxUS7U/prof.fdata.143907.fdata /tmp/.tmpGxUS7U/prof.fdata.143912.fdata /tmp/.tmpGxUS7U/prof.fdata.143924.fdata /tmp/.tmpGxUS7U/prof.fdata.143940.fdata /tmp/.tmpGxUS7U/prof.fdata.143945.fdata /tmp/.tmpGxUS7U/prof.fdata.143960.fdata /tmp/.tmpGxUS7U/prof.fdata.143964.fdata /tmp/.tmpGxUS7U/prof.fdata.143966.fdata /tmp/.tmpGxUS7U/prof.fdata.143982.fdata /tmp/.tmpGxUS7U/prof.fdata.143996.fdata /tmp/.tmpGxUS7U/prof.fdata.144006.fdata /tmp/.tmpGxUS7U/prof.fdata.144018.fdata /tmp/.tmpGxUS7U/prof.fdata.144032.fdata /tmp/.tmpGxUS7U/prof.fdata.144044.fdata /tmp/.tmpGxUS7U/prof.fdata.144046.fdata /tmp/.tmpGxUS7U/prof.fdata.144056.fdata /tmp/.tmpGxUS7U/prof.fdata.144062.fdata /tmp/.tmpGxUS7U/prof.fdata.144071.fdata /tmp/.tmpGxUS7U/prof.fdata.144089.fdata /tmp/.tmpGxUS7U/prof.fdata.144094.fdata /tmp/.tmpGxUS7U/prof.fdata.144107.fdata /tmp/.tmpGxUS7U/prof.fdata.144138.fdata /tmp/.tmpGxUS7U/prof.fdata.144151.fdata /tmp/.tmpGxUS7U/prof.fdata.144165.fdata /tmp/.tmpGxUS7U/prof.fdata.144172.fdata /tmp/.tmpGxUS7U/prof.fdata.144179.fdata /tmp/.tmpGxUS7U/prof.fdata.144187.fdata /tmp/.tmpGxUS7U/prof.fdata.144190.fdata /tmp/.tmpGxUS7U/prof.fdata.144201.fdata /tmp/.tmpGxUS7U/prof.fdata.144204.fdata /tmp/.tmpGxUS7U/prof.fdata.144208.fdata /tmp/.tmpGxUS7U/prof.fdata.144215.fdata /tmp/.tmpGxUS7U/prof.fdata.144239.fdata /tmp/.tmpGxUS7U/prof.fdata.144259.fdata /tmp/.tmpGxUS7U/prof.fdata.144270.fdata /tmp/.tmpGxUS7U/prof.fdata.144283.fdata /tmp/.tmpGxUS7U/prof.fdata.144299.fdata /tmp/.tmpGxUS7U/prof.fdata.144303.fdata /tmp/.tmpGxUS7U/prof.fdata.144322.fdata /tmp/.tmpGxUS7U/prof.fdata.144326.fdata /tmp/.tmpGxUS7U/prof.fdata.144340.fdata /tmp/.tmpGxUS7U/prof.fdata.144346.fdata /tmp/.tmpGxUS7U/prof.fdata.144358.fdata /tmp/.tmpGxUS7U/prof.fdata.144381.fdata /tmp/.tmpGxUS7U/prof.fdata.144388.fdata /tmp/.tmpGxUS7U/prof.fdata.144407.fdata /tmp/.tmpGxUS7U/prof.fdata.144410.fdata /tmp/.tmpGxUS7U/prof.fdata.144434.fdata /tmp/.tmpGxUS7U/prof.fdata.144449.fdata /tmp/.tmpGxUS7U/prof.fdata.144451.fdata /tmp/.tmpGxUS7U/prof.fdata.144456.fdata /tmp/.tmpGxUS7U/prof.fdata.144470.fdata /tmp/.tmpGxUS7U/prof.fdata.144471.fdata /tmp/.tmpGxUS7U/prof.fdata.144476.fdata /tmp/.tmpGxUS7U/prof.fdata.144491.fdata /tmp/.tmpGxUS7U/prof.fdata.144496.fdata /tmp/.tmpGxUS7U/prof.fdata.144502.fdata /tmp/.tmpGxUS7U/prof.fdata.144510.fdata /tmp/.tmpGxUS7U/prof.fdata.144519.fdata /tmp/.tmpGxUS7U/prof.fdata.144524.fdata /tmp/.tmpGxUS7U/prof.fdata.144540.fdata /tmp/.tmpGxUS7U/prof.fdata.144541.fdata /tmp/.tmpGxUS7U/prof.fdata.144550.fdata /tmp/.tmpGxUS7U/prof.fdata.144553.fdata /tmp/.tmpGxUS7U/prof.fdata.144562.fdata /tmp/.tmpGxUS7U/prof.fdata.144574.fdata /tmp/.tmpGxUS7U/prof.fdata.144575.fdata /tmp/.tmpGxUS7U/prof.fdata.144578.fdata /tmp/.tmpGxUS7U/prof.fdata.144591.fdata /tmp/.tmpGxUS7U/prof.fdata.144603.fdata /tmp/.tmpGxUS7U/prof.fdata.144610.fdata /tmp/.tmpGxUS7U/prof.fdata.144616.fdata /tmp/.tmpGxUS7U/prof.fdata.144630.fdata /tmp/.tmpGxUS7U/prof.fdata.144643.fdata /tmp/.tmpGxUS7U/prof.fdata.144646.fdata /tmp/.tmpGxUS7U/prof.fdata.144657.fdata /tmp/.tmpGxUS7U/prof.fdata.144669.fdata /tmp/.tmpGxUS7U/prof.fdata.144679.fdata /tmp/.tmpGxUS7U/prof.fdata.144685.fdata /tmp/.tmpGxUS7U/prof.fdata.144706.fdata /tmp/.tmpGxUS7U/prof.fdata.144719.fdata /tmp/.tmpGxUS7U/prof.fdata.144725.fdata /tmp/.tmpGxUS7U/prof.fdata.144747.fdata /tmp/.tmpGxUS7U/prof.fdata.144753.fdata /tmp/.tmpGxUS7U/prof.fdata.144761.fdata /tmp/.tmpGxUS7U/prof.fdata.144766.fdata /tmp/.tmpGxUS7U/prof.fdata.144783.fdata /tmp/.tmpGxUS7U/prof.fdata.144803.fdata /tmp/.tmpGxUS7U/prof.fdata.144820.fdata /tmp/.tmpGxUS7U/prof.fdata.144824.fdata /tmp/.tmpGxUS7U/prof.fdata.144832.fdata /tmp/.tmpGxUS7U/prof.fdata.144841.fdata /tmp/.tmpGxUS7U/prof.fdata.144859.fdata /tmp/.tmpGxUS7U/prof.fdata.144866.fdata /tmp/.tmpGxUS7U/prof.fdata.144878.fdata /tmp/.tmpGxUS7U/prof.fdata.144879.fdata /tmp/.tmpGxUS7U/prof.fdata.144892.fdata /tmp/.tmpGxUS7U/prof.fdata.144896.fdata /tmp/.tmpGxUS7U/prof.fdata.144902.fdata /tmp/.tmpGxUS7U/prof.fdata.144910.fdata /tmp/.tmpGxUS7U/prof.fdata.144914.fdata /tmp/.tmpGxUS7U/prof.fdata.144924.fdata /tmp/.tmpGxUS7U/prof.fdata.144934.fdata /tmp/.tmpGxUS7U/prof.fdata.144946.fdata /tmp/.tmpGxUS7U/prof.fdata.144954.fdata /tmp/.tmpGxUS7U/prof.fdata.144992.fdata /tmp/.tmpGxUS7U/prof.fdata.144994.fdata /tmp/.tmpGxUS7U/prof.fdata.145009.fdata /tmp/.tmpGxUS7U/prof.fdata.145022.fdata /tmp/.tmpGxUS7U/prof.fdata.145031.fdata /tmp/.tmpGxUS7U/prof.fdata.145056.fdata /tmp/.tmpGxUS7U/prof.fdata.145063.fdata /tmp/.tmpGxUS7U/prof.fdata.145067.fdata /tmp/.tmpGxUS7U/prof.fdata.145077.fdata /tmp/.tmpGxUS7U/prof.fdata.145079.fdata /tmp/.tmpGxUS7U/prof.fdata.145102.fdata /tmp/.tmpGxUS7U/prof.fdata.145103.fdata /tmp/.tmpGxUS7U/prof.fdata.145124.fdata /tmp/.tmpGxUS7U/prof.fdata.145134.fdata /tmp/.tmpGxUS7U/prof.fdata.145136.fdata /tmp/.tmpGxUS7U/prof.fdata.145143.fdata /tmp/.tmpGxUS7U/prof.fdata.145147.fdata /tmp/.tmpGxUS7U/prof.fdata.145160.fdata /tmp/.tmpGxUS7U/prof.fdata.145165.fdata /tmp/.tmpGxUS7U/prof.fdata.145190.fdata /tmp/.tmpGxUS7U/prof.fdata.145199.fdata /tmp/.tmpGxUS7U/prof.fdata.145208.fdata /tmp/.tmpGxUS7U/prof.fdata.145213.fdata /tmp/.tmpGxUS7U/prof.fdata.145221.fdata /tmp/.tmpGxUS7U/prof.fdata.145223.fdata /tmp/.tmpGxUS7U/prof.fdata.145254.fdata /tmp/.tmpGxUS7U/prof.fdata.145264.fdata /tmp/.tmpGxUS7U/prof.fdata.145273.fdata /tmp/.tmpGxUS7U/prof.fdata.145277.fdata /tmp/.tmpGxUS7U/prof.fdata.145286.fdata /tmp/.tmpGxUS7U/prof.fdata.145292.fdata /tmp/.tmpGxUS7U/prof.fdata.145305.fdata /tmp/.tmpGxUS7U/prof.fdata.145307.fdata /tmp/.tmpGxUS7U/prof.fdata.145320.fdata /tmp/.tmpGxUS7U/prof.fdata.145325.fdata /tmp/.tmpGxUS7U/prof.fdata.145330.fdata /tmp/.tmpGxUS7U/prof.fdata.145343.fdata /tmp/.tmpGxUS7U/prof.fdata.145349.fdata /tmp/.tmpGxUS7U/prof.fdata.145354.fdata /tmp/.tmpGxUS7U/prof.fdata.145369.fdata /tmp/.tmpGxUS7U/prof.fdata.145374.fdata /tmp/.tmpGxUS7U/prof.fdata.145379.fdata /tmp/.tmpGxUS7U/prof.fdata.145383.fdata /tmp/.tmpGxUS7U/prof.fdata.145387.fdata /tmp/.tmpGxUS7U/prof.fdata.145391.fdata /tmp/.tmpGxUS7U/prof.fdata.145405.fdata /tmp/.tmpGxUS7U/prof.fdata.145409.fdata /tmp/.tmpGxUS7U/prof.fdata.145416.fdata /tmp/.tmpGxUS7U/prof.fdata.145423.fdata /tmp/.tmpGxUS7U/prof.fdata.145446.fdata /tmp/.tmpGxUS7U/prof.fdata.145450.fdata /tmp/.tmpGxUS7U/prof.fdata.145454.fdata /tmp/.tmpGxUS7U/prof.fdata.145470.fdata /tmp/.tmpGxUS7U/prof.fdata.145478.fdata /tmp/.tmpGxUS7U/prof.fdata.145482.fdata /tmp/.tmpGxUS7U/prof.fdata.145490.fdata /tmp/.tmpGxUS7U/prof.fdata.145507.fdata /tmp/.tmpGxUS7U/prof.fdata.145524.fdata /tmp/.tmpGxUS7U/prof.fdata.145536.fdata /tmp/.tmpGxUS7U/prof.fdata.145541.fdata /tmp/.tmpGxUS7U/prof.fdata.145556.fdata /tmp/.tmpGxUS7U/prof.fdata.145558.fdata /tmp/.tmpGxUS7U/prof.fdata.145569.fdata /tmp/.tmpGxUS7U/prof.fdata.145581.fdata /tmp/.tmpGxUS7U/prof.fdata.145589.fdata /tmp/.tmpGxUS7U/prof.fdata.145603.fdata /tmp/.tmpGxUS7U/prof.fdata.145608.fdata /tmp/.tmpGxUS7U/prof.fdata.145615.fdata /tmp/.tmpGxUS7U/prof.fdata.145617.fdata /tmp/.tmpGxUS7U/prof.fdata.145633.fdata /tmp/.tmpGxUS7U/prof.fdata.145641.fdata /tmp/.tmpGxUS7U/prof.fdata.145650.fdata /tmp/.tmpGxUS7U/prof.fdata.145651.fdata /tmp/.tmpGxUS7U/prof.fdata.145675.fdata /tmp/.tmpGxUS7U/prof.fdata.145682.fdata /tmp/.tmpGxUS7U/prof.fdata.145686.fdata /tmp/.tmpGxUS7U/prof.fdata.145694.fdata /tmp/.tmpGxUS7U/prof.fdata.145695.fdata /tmp/.tmpGxUS7U/prof.fdata.145715.fdata /tmp/.tmpGxUS7U/prof.fdata.145728.fdata /tmp/.tmpGxUS7U/prof.fdata.145748.fdata /tmp/.tmpGxUS7U/prof.fdata.145755.fdata /tmp/.tmpGxUS7U/prof.fdata.145768.fdata /tmp/.tmpGxUS7U/prof.fdata.145773.fdata /tmp/.tmpGxUS7U/prof.fdata.145784.fdata /tmp/.tmpGxUS7U/prof.fdata.145791.fdata /tmp/.tmpGxUS7U/prof.fdata.145795.fdata /tmp/.tmpGxUS7U/prof.fdata.145805.fdata /tmp/.tmpGxUS7U/prof.fdata.145811.fdata /tmp/.tmpGxUS7U/prof.fdata.145820.fdata /tmp/.tmpGxUS7U/prof.fdata.145825.fdata /tmp/.tmpGxUS7U/prof.fdata.145831.fdata /tmp/.tmpGxUS7U/prof.fdata.145845.fdata /tmp/.tmpGxUS7U/prof.fdata.145852.fdata /tmp/.tmpGxUS7U/prof.fdata.145857.fdata /tmp/.tmpGxUS7U/prof.fdata.145858.fdata /tmp/.tmpGxUS7U/prof.fdata.145871.fdata /tmp/.tmpGxUS7U/prof.fdata.145881.fdata /tmp/.tmpGxUS7U/prof.fdata.145885.fdata /tmp/.tmpGxUS7U/prof.fdata.145894.fdata /tmp/.tmpGxUS7U/prof.fdata.145895.fdata /tmp/.tmpGxUS7U/prof.fdata.145906.fdata /tmp/.tmpGxUS7U/prof.fdata.145915.fdata /tmp/.tmpGxUS7U/prof.fdata.145922.fdata /tmp/.tmpGxUS7U/prof.fdata.145927.fdata /tmp/.tmpGxUS7U/prof.fdata.145937.fdata /tmp/.tmpGxUS7U/prof.fdata.145960.fdata /tmp/.tmpGxUS7U/prof.fdata.145962.fdata /tmp/.tmpGxUS7U/prof.fdata.145972.fdata /tmp/.tmpGxUS7U/prof.fdata.145986.fdata /tmp/.tmpGxUS7U/prof.fdata.145990.fdata /tmp/.tmpGxUS7U/prof.fdata.146006.fdata /tmp/.tmpGxUS7U/prof.fdata.146019.fdata /tmp/.tmpGxUS7U/prof.fdata.146026.fdata /tmp/.tmpGxUS7U/prof.fdata.146032.fdata /tmp/.tmpGxUS7U/prof.fdata.146040.fdata /tmp/.tmpGxUS7U/prof.fdata.146045.fdata /tmp/.tmpGxUS7U/prof.fdata.146050.fdata /tmp/.tmpGxUS7U/prof.fdata.146054.fdata /tmp/.tmpGxUS7U/prof.fdata.146059.fdata /tmp/.tmpGxUS7U/prof.fdata.146060.fdata /tmp/.tmpGxUS7U/prof.fdata.146080.fdata /tmp/.tmpGxUS7U/prof.fdata.146084.fdata /tmp/.tmpGxUS7U/prof.fdata.146088.fdata /tmp/.tmpGxUS7U/prof.fdata.146099.fdata /tmp/.tmpGxUS7U/prof.fdata.146113.fdata /tmp/.tmpGxUS7U/prof.fdata.146126.fdata /tmp/.tmpGxUS7U/prof.fdata.146133.fdata /tmp/.tmpGxUS7U/prof.fdata.146144.fdata /tmp/.tmpGxUS7U/prof.fdata.146159.fdata /tmp/.tmpGxUS7U/prof.fdata.146160.fdata /tmp/.tmpGxUS7U/prof.fdata.146177.fdata /tmp/.tmpGxUS7U/prof.fdata.146188.fdata /tmp/.tmpGxUS7U/prof.fdata.146194.fdata /tmp/.tmpGxUS7U/prof.fdata.146202.fdata /tmp/.tmpGxUS7U/prof.fdata.146210.fdata /tmp/.tmpGxUS7U/prof.fdata.146214.fdata /tmp/.tmpGxUS7U/prof.fdata.146218.fdata /tmp/.tmpGxUS7U/prof.fdata.146230.fdata /tmp/.tmpGxUS7U/prof.fdata.146236.fdata /tmp/.tmpGxUS7U/prof.fdata.146244.fdata /tmp/.tmpGxUS7U/prof.fdata.146253.fdata /tmp/.tmpGxUS7U/prof.fdata.146254.fdata /tmp/.tmpGxUS7U/prof.fdata.146260.fdata /tmp/.tmpGxUS7U/prof.fdata.146264.fdata /tmp/.tmpGxUS7U/prof.fdata.146279.fdata /tmp/.tmpGxUS7U/prof.fdata.146299.fdata /tmp/.tmpGxUS7U/prof.fdata.146323.fdata /tmp/.tmpGxUS7U/prof.fdata.146326.fdata /tmp/.tmpGxUS7U/prof.fdata.146362.fdata /tmp/.tmpGxUS7U/prof.fdata.146373.fdata /tmp/.tmpGxUS7U/prof.fdata.146397.fdata /tmp/.tmpGxUS7U/prof.fdata.146423.fdata /tmp/.tmpGxUS7U/prof.fdata.146442.fdata /tmp/.tmpGxUS7U/prof.fdata.146480.fdata /tmp/.tmpGxUS7U/prof.fdata.146482.fdata /tmp/.tmpGxUS7U/prof.fdata.146510.fdata /tmp/.tmpGxUS7U/prof.fdata.146517.fdata /tmp/.tmpGxUS7U/prof.fdata.146524.fdata /tmp/.tmpGxUS7U/prof.fdata.146557.fdata /tmp/.tmpGxUS7U/prof.fdata.146563.fdata /tmp/.tmpGxUS7U/prof.fdata.146612.fdata /tmp/.tmpGxUS7U/prof.fdata.146637.fdata /tmp/.tmpGxUS7U/prof.fdata.146654.fdata /tmp/.tmpGxUS7U/prof.fdata.146669.fdata /tmp/.tmpGxUS7U/prof.fdata.146676.fdata /tmp/.tmpGxUS7U/prof.fdata.146687.fdata /tmp/.tmpGxUS7U/prof.fdata.146703.fdata /tmp/.tmpGxUS7U/prof.fdata.146705.fdata /tmp/.tmpGxUS7U/prof.fdata.146721.fdata /tmp/.tmpGxUS7U/prof.fdata.146726.fdata /tmp/.tmpGxUS7U/prof.fdata.146731.fdata /tmp/.tmpGxUS7U/prof.fdata.146738.fdata /tmp/.tmpGxUS7U/prof.fdata.146761.fdata /tmp/.tmpGxUS7U/prof.fdata.146790.fdata /tmp/.tmpGxUS7U/prof.fdata.146809.fdata /tmp/.tmpGxUS7U/prof.fdata.146818.fdata /tmp/.tmpGxUS7U/prof.fdata.146840.fdata /tmp/.tmpGxUS7U/prof.fdata.146856.fdata /tmp/.tmpGxUS7U/prof.fdata.146869.fdata /tmp/.tmpGxUS7U/prof.fdata.146880.fdata /tmp/.tmpGxUS7U/prof.fdata.146894.fdata /tmp/.tmpGxUS7U/prof.fdata.146913.fdata /tmp/.tmpGxUS7U/prof.fdata.146918.fdata /tmp/.tmpGxUS7U/prof.fdata.146971.fdata /tmp/.tmpGxUS7U/prof.fdata.146991.fdata /tmp/.tmpGxUS7U/prof.fdata.147025.fdata /tmp/.tmpGxUS7U/prof.fdata.147051.fdata /tmp/.tmpGxUS7U/prof.fdata.147061.fdata /tmp/.tmpGxUS7U/prof.fdata.147080.fdata /tmp/.tmpGxUS7U/prof.fdata.147136.fdata /tmp/.tmpGxUS7U/prof.fdata.147202.fdata /tmp/.tmpGxUS7U/prof.fdata.147373.fdata /tmp/.tmpGxUS7U/prof.fdata.147387.fdata /tmp/.tmpGxUS7U/prof.fdata.147453.fdata /tmp/.tmpGxUS7U/prof.fdata.147590.fdata /tmp/.tmpGxUS7U/prof.fdata.148712.fdata /tmp/.tmpGxUS7U/prof.fdata.148787.fdata /tmp/.tmpGxUS7U/prof.fdata.148925.fdata /tmp/.tmpGxUS7U/prof.fdata.149040.fdata /tmp/.tmpGxUS7U/prof.fdata.149169.fdata /tmp/.tmpGxUS7U/prof.fdata.149238.fdata /tmp/.tmpGxUS7U/prof.fdata.149443.fdata /tmp/.tmpGxUS7U/prof.fdata.149816.fdata /tmp/.tmpGxUS7U/prof.fdata.149916.fdata /tmp/.tmpGxUS7U/prof.fdata.149927.fdata /tmp/.tmpGxUS7U/prof.fdata.149936.fdata /tmp/.tmpGxUS7U/prof.fdata.149950.fdata /tmp/.tmpGxUS7U/prof.fdata.149955.fdata /tmp/.tmpGxUS7U/prof.fdata.149963.fdata /tmp/.tmpGxUS7U/prof.fdata.149992.fdata /tmp/.tmpGxUS7U/prof.fdata.149996.fdata /tmp/.tmpGxUS7U/prof.fdata.150000.fdata /tmp/.tmpGxUS7U/prof.fdata.150056.fdata /tmp/.tmpGxUS7U/prof.fdata.150069.fdata /tmp/.tmpGxUS7U/prof.fdata.150079.fdata /tmp/.tmpGxUS7U/prof.fdata.150089.fdata /tmp/.tmpGxUS7U/prof.fdata.150100.fdata /tmp/.tmpGxUS7U/prof.fdata.150111.fdata /tmp/.tmpGxUS7U/prof.fdata.150137.fdata /tmp/.tmpGxUS7U/prof.fdata.150403.fdata /tmp/.tmpGxUS7U/prof.fdata.150670.fdata /tmp/.tmpGxUS7U/prof.fdata.150937.fdata /tmp/.tmpGxUS7U/prof.fdata.150979.fdata /tmp/.tmpGxUS7U/prof.fdata.151501.fdata /tmp/.tmpGxUS7U/prof.fdata.151768.fdata /tmp/.tmpGxUS7U/prof.fdata.152042.fdata /tmp/.tmpGxUS7U/prof.fdata.152043.fdata /tmp/.tmpGxUS7U/prof.fdata.152044.fdata /tmp/.tmpGxUS7U/prof.fdata.152048.fdata /tmp/.tmpGxUS7U/prof.fdata.152049.fdata /tmp/.tmpGxUS7U/prof.fdata.152050.fdata /tmp/.tmpGxUS7U/prof.fdata.152057.fdata /tmp/.tmpGxUS7U/prof.fdata.152058.fdata /tmp/.tmpGxUS7U/prof.fdata.152059.fdata /tmp/.tmpGxUS7U/prof.fdata.152066.fdata /tmp/.tmpGxUS7U/prof.fdata.152067.fdata /tmp/.tmpGxUS7U/prof.fdata.152068.fdata /tmp/.tmpGxUS7U/prof.fdata.152087.fdata /tmp/.tmpGxUS7U/prof.fdata.152097.fdata /tmp/.tmpGxUS7U/prof.fdata.152107.fdata /tmp/.tmpGxUS7U/prof.fdata.152118.fdata /tmp/.tmpGxUS7U/prof.fdata.152129.fdata /tmp/.tmpGxUS7U/prof.fdata.152140.fdata /tmp/.tmpGxUS7U/prof.fdata.152152.fdata /tmp/.tmpGxUS7U/prof.fdata.152164.fdata /tmp/.tmpGxUS7U/prof.fdata.152176.fdata /tmp/.tmpGxUS7U/prof.fdata.152194.fdata /tmp/.tmpGxUS7U/prof.fdata.152195.fdata /tmp/.tmpGxUS7U/prof.fdata.152196.fdata /tmp/.tmpGxUS7U/prof.fdata.152200.fdata /tmp/.tmpGxUS7U/prof.fdata.152201.fdata /tmp/.tmpGxUS7U/prof.fdata.152202.fdata /tmp/.tmpGxUS7U/prof.fdata.152209.fdata /tmp/.tmpGxUS7U/prof.fdata.152210.fdata /tmp/.tmpGxUS7U/prof.fdata.152211.fdata /tmp/.tmpGxUS7U/prof.fdata.152218.fdata /tmp/.tmpGxUS7U/prof.fdata.152219.fdata /tmp/.tmpGxUS7U/prof.fdata.152220.fdata /tmp/.tmpGxUS7U/prof.fdata.152234.fdata /tmp/.tmpGxUS7U/prof.fdata.152235.fdata /tmp/.tmpGxUS7U/prof.fdata.152236.fdata /tmp/.tmpGxUS7U/prof.fdata.152237.fdata /tmp/.tmpGxUS7U/prof.fdata.152238.fdata /tmp/.tmpGxUS7U/prof.fdata.152239.fdata /tmp/.tmpGxUS7U/prof.fdata.152241.fdata /tmp/.tmpGxUS7U/prof.fdata.152243.fdata /tmp/.tmpGxUS7U/prof.fdata.152247.fdata /tmp/.tmpGxUS7U/prof.fdata.152248.fdata /tmp/.tmpGxUS7U/prof.fdata.152249.fdata /tmp/.tmpGxUS7U/prof.fdata.152250.fdata /tmp/.tmpGxUS7U/prof.fdata.152343.fdata /tmp/.tmpGxUS7U/prof.fdata.152347.fdata /tmp/.tmpGxUS7U/prof.fdata.152350.fdata /tmp/.tmpGxUS7U/prof.fdata.152354.fdata /tmp/.tmpGxUS7U/prof.fdata.152359.fdata /tmp/.tmpGxUS7U/prof.fdata.152363.fdata /tmp/.tmpGxUS7U/prof.fdata.152367.fdata /tmp/.tmpGxUS7U/prof.fdata.152371.fdata /tmp/.tmpGxUS7U/prof.fdata.152382.fdata /tmp/.tmpGxUS7U/prof.fdata.152401.fdata /tmp/.tmpGxUS7U/prof.fdata.152407.fdata /tmp/.tmpGxUS7U/prof.fdata.152414.fdata /tmp/.tmpGxUS7U/prof.fdata.152418.fdata /tmp/.tmpGxUS7U/prof.fdata.152423.fdata /tmp/.tmpGxUS7U/prof.fdata.152438.fdata /tmp/.tmpGxUS7U/prof.fdata.152498.fdata /tmp/.tmpGxUS7U/prof.fdata.152517.fdata /tmp/.tmpGxUS7U/prof.fdata.152534.fdata /tmp/.tmpGxUS7U/prof.fdata.152584.fdata /tmp/.tmpGxUS7U/prof.fdata.152594.fdata /tmp/.tmpGxUS7U/prof.fdata.152604.fdata /tmp/.tmpGxUS7U/prof.fdata.152615.fdata /tmp/.tmpGxUS7U/prof.fdata.152626.fdata /tmp/.tmpGxUS7U/prof.fdata.152637.fdata /tmp/.tmpGxUS7U/prof.fdata.152694.fdata /tmp/.tmpGxUS7U/prof.fdata.152752.fdata /tmp/.tmpGxUS7U/prof.fdata.152810.fdata /tmp/.tmpGxUS7U/prof.fdata.152822.fdata /tmp/.tmpGxUS7U/prof.fdata.152884.fdata /tmp/.tmpGxUS7U/prof.fdata.152921.fdata /tmp/.tmpGxUS7U/prof.fdata.152964.fdata /tmp/.tmpGxUS7U/prof.fdata.152965.fdata /tmp/.tmpGxUS7U/prof.fdata.152966.fdata /tmp/.tmpGxUS7U/prof.fdata.152970.fdata /tmp/.tmpGxUS7U/prof.fdata.152971.fdata /tmp/.tmpGxUS7U/prof.fdata.152972.fdata /tmp/.tmpGxUS7U/prof.fdata.152979.fdata /tmp/.tmpGxUS7U/prof.fdata.152980.fdata /tmp/.tmpGxUS7U/prof.fdata.152981.fdata /tmp/.tmpGxUS7U/prof.fdata.152988.fdata /tmp/.tmpGxUS7U/prof.fdata.152989.fdata /tmp/.tmpGxUS7U/prof.fdata.152990.fdata /tmp/.tmpGxUS7U/prof.fdata.153009.fdata /tmp/.tmpGxUS7U/prof.fdata.153019.fdata /tmp/.tmpGxUS7U/prof.fdata.153029.fdata /tmp/.tmpGxUS7U/prof.fdata.153040.fdata /tmp/.tmpGxUS7U/prof.fdata.153051.fdata /tmp/.tmpGxUS7U/prof.fdata.153062.fdata /tmp/.tmpGxUS7U/prof.fdata.153074.fdata /tmp/.tmpGxUS7U/prof.fdata.153086.fdata /tmp/.tmpGxUS7U/prof.fdata.153098.fdata /tmp/.tmpGxUS7U/prof.fdata.153116.fdata /tmp/.tmpGxUS7U/prof.fdata.153117.fdata /tmp/.tmpGxUS7U/prof.fdata.153118.fdata /tmp/.tmpGxUS7U/prof.fdata.153122.fdata /tmp/.tmpGxUS7U/prof.fdata.153123.fdata /tmp/.tmpGxUS7U/prof.fdata.153124.fdata /tmp/.tmpGxUS7U/prof.fdata.153131.fdata /tmp/.tmpGxUS7U/prof.fdata.153132.fdata /tmp/.tmpGxUS7U/prof.fdata.153133.fdata /tmp/.tmpGxUS7U/prof.fdata.153140.fdata /tmp/.tmpGxUS7U/prof.fdata.153141.fdata /tmp/.tmpGxUS7U/prof.fdata.153142.fdata /tmp/.tmpGxUS7U/prof.fdata.153161.fdata /tmp/.tmpGxUS7U/prof.fdata.153171.fdata /tmp/.tmpGxUS7U/prof.fdata.153181.fdata /tmp/.tmpGxUS7U/prof.fdata.153192.fdata /tmp/.tmpGxUS7U/prof.fdata.153203.fdata /tmp/.tmpGxUS7U/prof.fdata.153216.fdata /tmp/.tmpGxUS7U/prof.fdata.153230.fdata /tmp/.tmpGxUS7U/prof.fdata.153242.fdata /tmp/.tmpGxUS7U/prof.fdata.153258.fdata /tmp/.tmpGxUS7U/prof.fdata.153278.fdata /tmp/.tmpGxUS7U/prof.fdata.153279.fdata /tmp/.tmpGxUS7U/prof.fdata.153280.fdata /tmp/.tmpGxUS7U/prof.fdata.153284.fdata /tmp/.tmpGxUS7U/prof.fdata.153285.fdata /tmp/.tmpGxUS7U/prof.fdata.153290.fdata /tmp/.tmpGxUS7U/prof.fdata.153293.fdata /tmp/.tmpGxUS7U/prof.fdata.153294.fdata /tmp/.tmpGxUS7U/prof.fdata.153299.fdata /tmp/.tmpGxUS7U/prof.fdata.153302.fdata /tmp/.tmpGxUS7U/prof.fdata.153303.fdata /tmp/.tmpGxUS7U/prof.fdata.153306.fdata /tmp/.tmpGxUS7U/prof.fdata.153310.fdata /tmp/.tmpGxUS7U/prof.fdata.153313.fdata /tmp/.tmpGxUS7U/prof.fdata.153326.fdata /tmp/.tmpGxUS7U/prof.fdata.153353.fdata /tmp/.tmpGxUS7U/prof.fdata.153363.fdata /tmp/.tmpGxUS7U/prof.fdata.153373.fdata /tmp/.tmpGxUS7U/prof.fdata.153384.fdata /tmp/.tmpGxUS7U/prof.fdata.153398.fdata /tmp/.tmpGxUS7U/prof.fdata.153416.fdata /tmp/.tmpGxUS7U/prof.fdata.153435.fdata /tmp/.tmpGxUS7U/prof.fdata.153450.fdata /tmp/.tmpGxUS7U/prof.fdata.153469.fdata /tmp/.tmpGxUS7U/prof.fdata.153492.fdata /tmp/.tmpGxUS7U/prof.fdata.153493.fdata /tmp/.tmpGxUS7U/prof.fdata.153494.fdata /tmp/.tmpGxUS7U/prof.fdata.153498.fdata /tmp/.tmpGxUS7U/prof.fdata.153499.fdata /tmp/.tmpGxUS7U/prof.fdata.153500.fdata /tmp/.tmpGxUS7U/prof.fdata.153507.fdata /tmp/.tmpGxUS7U/prof.fdata.153508.fdata /tmp/.tmpGxUS7U/prof.fdata.153509.fdata /tmp/.tmpGxUS7U/prof.fdata.153516.fdata /tmp/.tmpGxUS7U/prof.fdata.153517.fdata /tmp/.tmpGxUS7U/prof.fdata.153518.fdata /tmp/.tmpGxUS7U/prof.fdata.153537.fdata /tmp/.tmpGxUS7U/prof.fdata.153547.fdata /tmp/.tmpGxUS7U/prof.fdata.153557.fdata /tmp/.tmpGxUS7U/prof.fdata.153568.fdata /tmp/.tmpGxUS7U/prof.fdata.153579.fdata /tmp/.tmpGxUS7U/prof.fdata.153593.fdata /tmp/.tmpGxUS7U/prof.fdata.153611.fdata /tmp/.tmpGxUS7U/prof.fdata.153630.fdata /tmp/.tmpGxUS7U/prof.fdata.153649.fdata /tmp/.tmpGxUS7U/prof.fdata.153664.fdata /tmp/.tmpGxUS7U/prof.fdata.153683.fdata /tmp/.tmpGxUS7U/prof.fdata.153700.fdata > "/tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata" [at /checkout/obj]`
Profile from 665 files merged.
##[endgroup]
[2024-08-30T03:37:53.563Z INFO  opt_dist::training] rustc BOLT statistics
[2024-08-30T03:37:53.563Z INFO  opt_dist::training] /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata: 174.65 MiB
---
    0: Cannot execute tests
    1: Command COMPILETEST_FORCE_STAGE0=1 python3 /checkout/x.py test --build x86_64-unknown-linux-gnu --stage 0 tests/assembly tests/codegen tests/codegen-units tests/incremental tests/mir-opt tests/pretty tests/run-pass-valgrind tests/ui tests/crashes --skip tests/ui/process/nofile-limit.rs [at /checkout/obj] has failed with exit code Some(1)

Stack backtrace:
   0: <anyhow::Error>::msg::<alloc::string::String>
             at /rust/deps/anyhow-1.0.86/src/backtrace.rs:27:14
   1: <opt_dist::exec::CmdBuilder>::run
             at /rustc/4c2bd195585d3489d4b39b51db8975582866ceba/src/tools/opt-dist/src/exec.rs:80:17
             at /rustc/4c2bd195585d3489d4b39b51db8975582866ceba/src/tools/opt-dist/src/tests.rs:105:5
   3: opt_dist::execute_pipeline::{closure#5}
             at /rustc/4c2bd195585d3489d4b39b51db8975582866ceba/src/tools/opt-dist/src/main.rs:350:40
             at /rustc/4c2bd195585d3489d4b39b51db8975582866ceba/src/tools/opt-dist/src/main.rs:350:40
   4: <opt_dist::timer::TimerSection>::section::<opt_dist::execute_pipeline::{closure#5}, ()>
             at /rustc/4c2bd195585d3489d4b39b51db8975582866ceba/src/tools/opt-dist/src/timer.rs:111:22
             at /rustc/4c2bd195585d3489d4b39b51db8975582866ceba/src/tools/opt-dist/src/main.rs:350:9
   6: opt_dist::main
             at /rustc/4c2bd195585d3489d4b39b51db8975582866ceba/src/tools/opt-dist/src/main.rs:401:18
   7: <fn() -> core::result::Result<(), anyhow::Error> as core::ops::function::FnOnce<()>>::call_once
   7: <fn() -> core::result::Result<(), anyhow::Error> as core::ops::function::FnOnce<()>>::call_once
             at /rustc/08328a323ecd80b443a8fcc72c6b1071f48e233f/library/core/src/ops/function.rs:250:5
   8: std::sys::backtrace::__rust_begin_short_backtrace::<fn() -> core::result::Result<(), anyhow::Error>, core::result::Result<(), anyhow::Error>>
             at /rustc/08328a323ecd80b443a8fcc72c6b1071f48e233f/library/std/src/sys/backtrace.rs:152:18
   9: std::rt::lang_start::<core::result::Result<(), anyhow::Error>>::{closure#0}
             at /rustc/08328a323ecd80b443a8fcc72c6b1071f48e233f/library/std/src/rt.rs:162:18
  10: core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once
  11: std::panicking::try::do_call
             at /rustc/08328a323ecd80b443a8fcc72c6b1071f48e233f/library/std/src/panicking.rs:557:40
  12: std::panicking::try
             at /rustc/08328a323ecd80b443a8fcc72c6b1071f48e233f/library/std/src/panicking.rs:521:19

@bors
Copy link
Contributor

bors commented Aug 30, 2024

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Aug 30, 2024
@workingjubilee workingjubilee deleted the rollup-6dm8m8j branch August 30, 2024 04:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-rustdoc-json Area: Rustdoc JSON backend O-unix Operating system: Unix-like O-wasi Operating system: Wasi, Webassembly System Interface rollup A PR which is a rollup S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.