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

Remove last rt::init allocation for thread info #123550

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

Conversation

GnomedDev
Copy link
Contributor

@GnomedDev GnomedDev commented Apr 6, 2024

Removes the last allocation pre-main by just not storing anything in std::thread::Thread for the main thread.

  • The thread name can just be a hard coded literal, as was done in Remove rt::init allocation for thread name #123433.
  • The ThreadId is always the 1 value, so ThreadId::new now starts at 2 and can fabricate the 1 value when needed.
  • Storing Parker in a static that is initialized once at startup. This uses SyncUnsafeCell and MaybeUninit as this is quite performance critical and we don't need synchronization or to store a tag value and possibly leave in a panic.

This also adds a UI test to make sure that allocations do not occur before main ever again.

@rustbot
Copy link
Collaborator

rustbot commented Apr 6, 2024

r? @Nilstrieb

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

Use r? to explicitly pick a reviewer

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-libs Relevant to the library team, which will review and decide on the PR/issue. labels Apr 6, 2024
@GnomedDev
Copy link
Contributor Author

I just checked and Option<Pin<Arc<T>>> does indeed niche, so this doesn't grow the size of std::thread::Thread.

@rust-log-analyzer

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

@saethlin
Copy link
Member

saethlin commented Apr 6, 2024

@bors try @rust-timer queue

@rust-timer

This comment has been minimized.

@rustbot rustbot added the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Apr 6, 2024
@bors
Copy link
Contributor

bors commented Apr 6, 2024

⌛ Trying commit d5b8b00 with merge 666bbff...

bors added a commit to rust-lang-ci/rust that referenced this pull request Apr 6, 2024
Remove last rt::init allocation for thread info

Removes the last allocation pre-main by just not storing anything in std::thread::Thread for the main thread.
- The thread name can just be a hard coded literal, as was done in rust-lang#123433.
- The ThreadId is always the `1` value, so `ThreadId::new` now starts at `2` and can fabricate the `1` value when needed.
- Storing Parker in a static that is initialized once at startup. This uses SyncUnsafeCell and MaybeUninit as this is quite performance critical and we don't need synchronization or to store a tag value and possibly leave in a panic.

This currently does not have a regression test to prevent future changes from re-adding allocations pre-main as I'm [having trouble](GnomedDev@6f7be53) implementing it, but if wanted I can draft this PR until that test is ready.
@bors
Copy link
Contributor

bors commented Apr 6, 2024

☀️ Try build successful - checks-actions
Build commit: 666bbff (666bbff29cc26856cc869d4b7e16f6843b105c4b)

@rust-timer

This comment has been minimized.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (666bbff): comparison URL.

Overall result: ❌ regressions - no action needed

Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR may lead to changes in compiler perf.

@bors rollup=never
@rustbot label: -S-waiting-on-perf -perf-regression

Instruction count

This is a highly reliable metric that was used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
0.4% [0.4%, 0.4%] 1
Regressions ❌
(secondary)
1.5% [1.5%, 1.5%] 1
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 0.4% [0.4%, 0.4%] 1

Max RSS (memory usage)

Results

This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
4.0% [2.6%, 5.2%] 3
Regressions ❌
(secondary)
4.3% [2.9%, 6.7%] 4
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 4.0% [2.6%, 5.2%] 3

Cycles

Results

This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
1.8% [1.4%, 2.2%] 2
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-2.1% [-2.1%, -2.1%] 1
All ❌✅ (primary) - - 0

Binary size

Results

This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
0.1% [0.0%, 0.1%] 23
Regressions ❌
(secondary)
0.1% [0.0%, 0.1%] 35
Improvements ✅
(primary)
-0.1% [-0.3%, -0.0%] 2
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) 0.0% [-0.3%, 0.1%] 25

Bootstrap: 666.761s -> 666.789s (0.00%)
Artifact size: 318.27 MiB -> 318.23 MiB (-0.01%)

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

@Nilstrieb Nilstrieb left a comment

Choose a reason for hiding this comment

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

I don't love the increased complexity and unsafety.. if you have some good justification for why this is important that would be great, but I'm inclined to accept it even without that, it certainly feels good to have this property.

tests/ui/runtime/no-allocation-before-main.rs Outdated Show resolved Hide resolved
tests/rustdoc/demo-allocator-54478.rs Outdated Show resolved Hide resolved
library/std/src/thread/mod.rs Outdated Show resolved Hide resolved
@GnomedDev
Copy link
Contributor Author

The increased complexity is a bit sad, but this is already a complex and unsafe process to initialise the basics for the runtime, so I felt that the increased performance and decreased compile time was worth a small amount of well documented unsafety.

@GnomedDev
Copy link
Contributor Author

Hmm, looking at the actual perf run, it seems quite negative which is certainly unexpected. How is this commonly debugged, as I don't want to go off vibes?

@Nilstrieb
Copy link
Member

Run the cachegrind command to see where in the compiler the diff occurs. Though FWIW, I would expect these results to be noise and wouldn't chase them further myself - I'd just treat it as "makes no difference".

@Nilstrieb
Copy link
Member

Nilstrieb commented Apr 6, 2024

that the increased performance and decreased compile time

so yeah, no real decreased compile time. as for increased performance, I doubt that this will be measurable, maybe fn main() {} (which is a pretty useless program). If you have a benchmark where this helps that would be great to have.

@GnomedDev
Copy link
Contributor Author

Okay, I don't have a benchmark (I never have a benchmark). Would you like me to rewrite this using OnceLock, just to see if that perf run is also neutral?

@GnomedDev GnomedDev force-pushed the remove-initial-arc branch 2 times, most recently from 778330b to ab8eba1 Compare April 7, 2024 11:17
@GnomedDev
Copy link
Contributor Author

Sorted the existing review comments, just waiting on a reply to my last comment.

@bors
Copy link
Contributor

bors commented Apr 14, 2024

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

@GnomedDev
Copy link
Contributor Author

Okay, @Nilstrieb I've been trying for the last week different ways to make this less unsafe and complex but it doesn't seem possible with the "Parker must be initialized in place" requirement. I cannot initialize a OnceLock or an Option in-place without increasing complexity significantly, so this seems like the least complex (and most performant) way to do this.

bors added a commit to rust-lang-ci/rust that referenced this pull request Apr 29, 2024
…trieb,saethlin

Remove last rt::init allocation for thread info

Removes the last allocation pre-main by just not storing anything in std::thread::Thread for the main thread.
- The thread name can just be a hard coded literal, as was done in rust-lang#123433.
- The ThreadId is always the `1` value, so `ThreadId::new` now starts at `2` and can fabricate the `1` value when needed.
- Storing Parker in a static that is initialized once at startup. This uses SyncUnsafeCell and MaybeUninit as this is quite performance critical and we don't need synchronization or to store a tag value and possibly leave in a panic.

This also adds a UI test to make sure that allocations do not occur before main ever again.
@bors
Copy link
Contributor

bors commented Apr 29, 2024

⌛ Testing commit 36ea953 with merge 14083c1...

@rust-log-analyzer

This comment has been minimized.

@bors
Copy link
Contributor

bors commented Apr 29, 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 Apr 29, 2024
@Nilstrieb
Copy link
Member

@bors try

bors added a commit to rust-lang-ci/rust that referenced this pull request Apr 30, 2024
Remove last rt::init allocation for thread info

Removes the last allocation pre-main by just not storing anything in std::thread::Thread for the main thread.
- The thread name can just be a hard coded literal, as was done in rust-lang#123433.
- The ThreadId is always the `1` value, so `ThreadId::new` now starts at `2` and can fabricate the `1` value when needed.
- Storing Parker in a static that is initialized once at startup. This uses SyncUnsafeCell and MaybeUninit as this is quite performance critical and we don't need synchronization or to store a tag value and possibly leave in a panic.

This also adds a UI test to make sure that allocations do not occur before main ever again.
@bors
Copy link
Contributor

bors commented Apr 30, 2024

⌛ Trying commit 519fe58 with merge 9e56cf1...

@bors
Copy link
Contributor

bors commented Apr 30, 2024

☀️ Try build successful - checks-actions
Build commit: 9e56cf1 (9e56cf11e558d425316e91bb7a1b83d6bfa681b1)

@Nilstrieb
Copy link
Member

hm. let's try again.
@bors r=Nilstrieb,saethlin

@bors
Copy link
Contributor

bors commented Apr 30, 2024

📌 Commit 519fe58 has been approved by Nilstrieb,saethlin

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 Apr 30, 2024
@bors
Copy link
Contributor

bors commented Apr 30, 2024

⌛ Testing commit 519fe58 with merge ec82ace...

bors added a commit to rust-lang-ci/rust that referenced this pull request Apr 30, 2024
…trieb,saethlin

Remove last rt::init allocation for thread info

Removes the last allocation pre-main by just not storing anything in std::thread::Thread for the main thread.
- The thread name can just be a hard coded literal, as was done in rust-lang#123433.
- The ThreadId is always the `1` value, so `ThreadId::new` now starts at `2` and can fabricate the `1` value when needed.
- Storing Parker in a static that is initialized once at startup. This uses SyncUnsafeCell and MaybeUninit as this is quite performance critical and we don't need synchronization or to store a tag value and possibly leave in a panic.

This also adds a UI test to make sure that allocations do not occur before main ever again.
@rust-log-analyzer
Copy link
Collaborator

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

Click to see the possible cause of the failure (guessed by this bot)
[2024-04-30T15:54:49Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T15:54:49Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-04-30T15:54:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpwWZmuT" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpwWZmuT#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T15:54:56Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-04-30T15:54:56Z DEBUG collector::compile::execute] cd "/tmp/.tmpwWZmuT" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpwWZmuT#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpwWZmuT/incremental-state"
[2024-04-30T15:55:05Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T15:55:05Z DEBUG collector::compile::execute] cd "/tmp/.tmpwWZmuT" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpwWZmuT#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpwWZmuT/incremental-state"
[2024-04-30T15:55:07Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpwWZmuT"
[2024-04-30T15:55:07Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-04-30T15:55:07Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-04-30T15:55:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpwWZmuT" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpwWZmuT#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpwWZmuT/incremental-state"
[2024-04-30T15:55:09Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T15:55:09Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T15:55:09Z DEBUG collector::compile::execute] cd "/tmp/.tmpF0VMkV" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpF0VMkV#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T15:55:29Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-04-30T15:55:29Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-04-30T15:55:29Z DEBUG collector::compile::execute] cd "/tmp/.tmpF0VMkV" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpF0VMkV#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpF0VMkV/incremental-state"
[2024-04-30T15:55:52Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T15:55:52Z DEBUG collector::compile::execute] cd "/tmp/.tmpF0VMkV" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpF0VMkV#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpF0VMkV/incremental-state"
[2024-04-30T15:55:56Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpF0VMkV"
[2024-04-30T15:55:56Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-04-30T15:55:56Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-04-30T15:55:56Z DEBUG collector::compile::execute] cd "/tmp/.tmpF0VMkV" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpF0VMkV#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpF0VMkV/incremental-state"
[2024-04-30T15:56:00Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T15:56:00Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T15:56:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpsAIjoh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpsAIjoh#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T15:56:31Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
Preparing diesel-1.4.8
[2024-04-30T15:57:38Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2024-04-30T15:57:38Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-04-30T15:57:38Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-04-30T15:57:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpHSAafB" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpHSAafB#diesel@1.4.8" "--" "--skip-this-rustc"
[2024-04-30T15:57:38Z DEBUG collector::compile::execute] cd "/tmp/.tmprhq877" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmprhq877#diesel@1.4.8" "--release" "--" "--skip-this-rustc"
[2024-04-30T15:57:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpP6fbEE" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpP6fbEE#diesel@1.4.8" "--profile" "check" "--" "--skip-this-rustc"
[2024-04-30T15:57:45Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T15:57:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-04-30T15:57:45Z DEBUG collector::compile::execute] cd "/tmp/.tmp6H6fYo" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp6H6fYo#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T15:57:50Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
---
[2024-04-30T15:57:58Z DEBUG collector::compile::execute] cd "/tmp/.tmp6H6fYo" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp6H6fYo#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp6H6fYo/incremental-state"
Running diesel-1.4.8: Debug + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2024-04-30T15:57:59Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T15:57:59Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T15:57:59Z DEBUG collector::compile::execute] cd "/tmp/.tmpfXReIP" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpfXReIP#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T15:58:05Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-04-30T15:58:05Z DEBUG collector::compile::execute] cd "/tmp/.tmpfXReIP" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpfXReIP#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfXReIP/incremental-state"
[2024-04-30T15:58:12Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T15:58:12Z DEBUG collector::compile::execute] cd "/tmp/.tmpfXReIP" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpfXReIP#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfXReIP/incremental-state"
[2024-04-30T15:58:13Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpfXReIP"
[2024-04-30T15:58: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" })
[2024-04-30T15:58: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" })
[2024-04-30T15:58:13Z DEBUG collector::compile::execute] cd "/tmp/.tmpfXReIP" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpfXReIP#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpfXReIP/incremental-state"
[2024-04-30T15:58:15Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T15:58:15Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T15:58:15Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T15:58:15Z DEBUG collector::compile::execute] cd "/tmp/.tmpUOzfWK" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpUOzfWK#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T15:58:21Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2024-04-30T15:58:21Z DEBUG collector::compile::execute] cd "/tmp/.tmpUOzfWK" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpUOzfWK#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpUOzfWK/incremental-state"
[2024-04-30T15:58:28Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T15:58:28Z DEBUG collector::compile::execute] cd "/tmp/.tmpUOzfWK" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpUOzfWK#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpUOzfWK/incremental-state"
[2024-04-30T15:58:30Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpUOzfWK"
[2024-04-30T15:58:30Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-04-30T15:58:30Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-04-30T15:58:30Z DEBUG collector::compile::execute] cd "/tmp/.tmpUOzfWK" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpUOzfWK#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpUOzfWK/incremental-state"
Executing benchmark externs (5/8)
Preparing externs
[2024-04-30T15:58:32Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-04-30T15:58:32Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
---
[2024-04-30T15:58:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpXsxSK4" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpXsxSK4#match-stress@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
Running match-stress: Check + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2024-04-30T15:58:34Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T15:58:34Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-04-30T15:58:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpekBqGA" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpekBqGA#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T15:58:35Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-04-30T15:58:35Z DEBUG collector::compile::execute] cd "/tmp/.tmpekBqGA" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpekBqGA#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpekBqGA/incremental-state"
[2024-04-30T15:58:36Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T15:58:36Z DEBUG collector::compile::execute] cd "/tmp/.tmpekBqGA" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpekBqGA#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpekBqGA/incremental-state"
[2024-04-30T15:58:37Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T15:58:37Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T15:58:37Z DEBUG collector::compile::execute] cd "/tmp/.tmpAmLTJw" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpAmLTJw#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T15:58:38Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-04-30T15:58:38Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-04-30T15:58:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpAmLTJw" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpAmLTJw#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpAmLTJw/incremental-state"
[2024-04-30T15:58:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T15:58:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpAmLTJw" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpAmLTJw#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpAmLTJw/incremental-state"
[2024-04-30T15:58:40Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T15:58:40Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T15:58:40Z DEBUG collector::compile::execute] cd "/tmp/.tmpPBNNhR" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpPBNNhR#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T15:58:41Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
Preparing tuple-stress
[2024-04-30T15:58:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2024-04-30T15:58:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-04-30T15:58:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-04-30T15:58:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpvLgSYc" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvLgSYc#tuple-stress@0.1.0" "--" "--skip-this-rustc"
[2024-04-30T15:58:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpvkDiZU" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvkDiZU#tuple-stress@0.1.0" "--release" "--" "--skip-this-rustc"
[2024-04-30T15:58:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpRR7sgY" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpRR7sgY#tuple-stress@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2024-04-30T15:58:44Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T15:58:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-04-30T15:58:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpv5Tt2N" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpv5Tt2N#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T15:58:46Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
---
[2024-04-30T15:58:50Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T15:58:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T15:58:50Z DEBUG collector::compile::execute] cd "/tmp/.tmp5umdYO" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp5umdYO#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T15:58:52Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-04-30T15:58:52Z DEBUG collector::compile::execute] cd "/tmp/.tmp5umdYO" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp5umdYO#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp5umdYO/incremental-state"
[2024-04-30T15:58:54Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T15:58:54Z DEBUG collector::compile::execute] cd "/tmp/.tmp5umdYO" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp5umdYO#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp5umdYO/incremental-state"
[2024-04-30T15:58:55Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmp5umdYO"
[2024-04-30T15:58:55Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" })
[2024-04-30T15:58:55Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" })
[2024-04-30T15:58:55Z DEBUG collector::compile::execute] cd "/tmp/.tmp5umdYO" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp5umdYO#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp5umdYO/incremental-state"
[2024-04-30T15:58:57Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T15:58:57Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T15:58:57Z DEBUG collector::compile::execute] cd "/tmp/.tmpSaRpm6" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpSaRpm6#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T15:58:59Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2024-04-30T15:58:59Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2024-04-30T15:58:59Z DEBUG collector::compile::execute] cd "/tmp/.tmpSaRpm6" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpSaRpm6#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpSaRpm6/incremental-state"
[2024-04-30T15:59:01Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T15:59:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpSaRpm6" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpSaRpm6#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpSaRpm6/incremental-state"
[2024-04-30T15:59:02Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpSaRpm6"
[2024-04-30T15:59:02Z 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" })
[2024-04-30T15:59:02Z 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" })
[2024-04-30T15:59:02Z DEBUG collector::compile::execute] cd "/tmp/.tmpSaRpm6" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpSaRpm6#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpSaRpm6/incremental-state"
[2024-04-30T15:59:04.727Z INFO  opt_dist::training] Merging Rustc PGO profiles to /tmp/tmp-multistage/opt-artifacts/rustc-pgo.profdata
[2024-04-30T15:59:04.727Z INFO  opt_dist::exec] Executing `/checkout/obj/build/x86_64-unknown-linux-gnu/llvm/build/bin/llvm-profdata merge -o /tmp/tmp-multistage/opt-artifacts/rustc-pgo.profdata /tmp/tmp-multistage/opt-artifacts/rustc-pgo [at /checkout/obj]`
##[endgroup]
[2024-04-30T15:59:19.169Z INFO  opt_dist::training] Rustc PGO statistics
---
[2024-04-30T16:13:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpBPbg0O" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpBPbg0O#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln"
Running cargo-0.60.0: Opt + [Full]
[2024-04-30T16:14:01Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:14:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T16:14:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpLmUrDL" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpLmUrDL#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark clap-3.1.6 (2/8)
Preparing clap-3.1.6
[2024-04-30T16:14:43Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-04-30T16:14:43Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-04-30T16:14:43Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-04-30T16:14:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpVOWmrj" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpVOWmrj#clap@3.1.6" "--" "--skip-this-rustc"
[2024-04-30T16:14:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpShQz1i" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpShQz1i#clap@3.1.6" "--release" "--" "--skip-this-rustc"
Running clap-3.1.6: Debug + [Full]
[2024-04-30T16:14:45Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:14:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T16:14:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpgEZHte" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpgEZHte#clap@3.1.6" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T16:14:48Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:14:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T16:14:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T16:14:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpUoknKk" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpUoknKk#clap@3.1.6" "--release" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark hyper-0.14.18 (3/8)
Preparing hyper-0.14.18
[2024-04-30T16:14:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-04-30T16:14:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
---
[2024-04-30T16:15:21Z DEBUG collector::compile::execute] cd "/tmp/.tmpBvartF" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpBvartF#regex@1.5.5" "--" "--wrap-rustc-with" "Eprintln"
Running regex-1.5.5: Opt + [Full]
[2024-04-30T16:15:23Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:15:23Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T16:15:23Z DEBUG collector::compile::execute] cd "/tmp/.tmpXcUnna" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpXcUnna#regex@1.5.5" "--release" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark ripgrep-13.0.0 (5/8)
Preparing ripgrep-13.0.0
[2024-04-30T16:15:29Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-04-30T16:15:29Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-04-30T16:15:29Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-04-30T16:15:29Z DEBUG collector::compile::execute] cd "/tmp/.tmpR3nN4a" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpR3nN4a#ripgrep@13.0.0" "--release" "--" "--skip-this-rustc"
[2024-04-30T16:15:29Z DEBUG collector::compile::execute] cd "/tmp/.tmpkgvYkN" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpkgvYkN#ripgrep@13.0.0" "--" "--skip-this-rustc"
[2024-04-30T16:15:48Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:15:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T16:15:48Z DEBUG collector::compile::execute] cd "/tmp/.tmp4baCat" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp4baCat#ripgrep@13.0.0" "--" "--wrap-rustc-with" "Eprintln"
Running ripgrep-13.0.0: Opt + [Full]
Running ripgrep-13.0.0: Opt + [Full]
[2024-04-30T16:15:50Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:15:51Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T16:15:51Z DEBUG collector::compile::execute] cd "/tmp/.tmpQw8C93" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpQw8C93#ripgrep@13.0.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
Finished benchmark ripgrep-13.0.0 (5/8)
Executing benchmark ripgrep-13.0.0-tiny (6/8)
Preparing ripgrep-13.0.0-tiny
[2024-04-30T16:15:58Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-04-30T16:15:58Z DEBUG collector::compile::execute] cd "/tmp/.tmpfEzKab" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpfEzKab#ripgrep@13.0.0" "--release" "--" "--skip-this-rustc"
[2024-04-30T16:16:06Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:16:06Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T16:16:06Z DEBUG collector::compile::execute] cd "/tmp/.tmpXt1Hdx" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpXt1Hdx#ripgrep@13.0.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
Finished benchmark ripgrep-13.0.0-tiny (6/8)
---
Executing benchmark cargo-0.60.0 (1/8)
Preparing cargo-0.60.0
[2024-04-30T16:37:28Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-04-30T16:37:28Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-04-30T16:37:28Z DEBUG collector::compile::execute] cd "/tmp/.tmpVokLDk" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpVokLDk#cargo@0.60.0" "--lib" "--" "--skip-this-rustc"
[2024-04-30T16:37:28Z DEBUG collector::compile::execute] cd "/tmp/.tmpCELfrO" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpCELfrO#cargo@0.60.0" "--release" "--lib" "--" "--skip-this-rustc"
[2024-04-30T16:38:27Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:38:28Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T16:38:28Z DEBUG collector::compile::execute] cd "/tmp/.tmpiaPCjm" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpiaPCjm#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln"
Running cargo-0.60.0: Opt + [Full]
---
Executing benchmark hyper-0.14.18 (3/8)
Preparing hyper-0.14.18
[2024-04-30T16:39:33Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-04-30T16:39:33Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-04-30T16:39:33Z DEBUG collector::compile::execute] cd "/tmp/.tmpTNiMUJ" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpTNiMUJ#hyper@0.14.18" "--release" "--features=client,http1,http2,server,stream" "--" "--skip-this-rustc"
[2024-04-30T16:39:33Z DEBUG collector::compile::execute] cd "/tmp/.tmpD34UIL" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpD34UIL#hyper@0.14.18" "--features=client,http1,http2,server,stream" "--" "--skip-this-rustc"
[2024-04-30T16:39:57Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:39:57Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T16:39:57Z DEBUG collector::compile::execute] cd "/tmp/.tmpgDXLHN" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpgDXLHN#hyper@0.14.18" "--features=client,http1,http2,server,stream" "--" "--wrap-rustc-with" "Eprintln"
Running hyper-0.14.18: Opt + [Full]
---
Executing benchmark regex-1.5.5 (4/8)
Preparing regex-1.5.5
[2024-04-30T16:40:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-04-30T16:40:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-04-30T16:40:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpMaMfoV" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpMaMfoV#regex@1.5.5" "--release" "--" "--skip-this-rustc"
[2024-04-30T16:40:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpmcvw9N" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmcvw9N#regex@1.5.5" "--" "--skip-this-rustc"
[2024-04-30T16:40:15Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:40:15Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T16:40:15Z DEBUG collector::compile::execute] cd "/tmp/.tmpQk6Mzt" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpQk6Mzt#regex@1.5.5" "--" "--wrap-rustc-with" "Eprintln"
Running regex-1.5.5: Opt + [Full]
---
Finished benchmark syn-1.0.89 (8/8)
[2024-04-30T16:42:11.859Z INFO  opt_dist::training] Merging LLVM BOLT profiles from /tmp/.tmpJvhVqu/prof.fdata to /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata
##[endgroup]
##[group]Merging BOLT profiles
[2024-04-30T16:42:11.860Z INFO  opt_dist::exec] Executing `merge-fdata /tmp/.tmpJvhVqu/prof.fdata.125971.fdata /tmp/.tmpJvhVqu/prof.fdata.125982.fdata /tmp/.tmpJvhVqu/prof.fdata.125983.fdata /tmp/.tmpJvhVqu/prof.fdata.125986.fdata /tmp/.tmpJvhVqu/prof.fdata.125987.fdata /tmp/.tmpJvhVqu/prof.fdata.125992.fdata /tmp/.tmpJvhVqu/prof.fdata.125993.fdata /tmp/.tmpJvhVqu/prof.fdata.126004.fdata /tmp/.tmpJvhVqu/prof.fdata.126005.fdata /tmp/.tmpJvhVqu/prof.fdata.126007.fdata /tmp/.tmpJvhVqu/prof.fdata.126009.fdata /tmp/.tmpJvhVqu/prof.fdata.126011.fdata /tmp/.tmpJvhVqu/prof.fdata.126012.fdata /tmp/.tmpJvhVqu/prof.fdata.126013.fdata /tmp/.tmpJvhVqu/prof.fdata.126014.fdata /tmp/.tmpJvhVqu/prof.fdata.126017.fdata /tmp/.tmpJvhVqu/prof.fdata.126020.fdata /tmp/.tmpJvhVqu/prof.fdata.126021.fdata /tmp/.tmpJvhVqu/prof.fdata.126023.fdata /tmp/.tmpJvhVqu/prof.fdata.126024.fdata /tmp/.tmpJvhVqu/prof.fdata.126026.fdata /tmp/.tmpJvhVqu/prof.fdata.126028.fdata /tmp/.tmpJvhVqu/prof.fdata.126031.fdata /tmp/.tmpJvhVqu/prof.fdata.126032.fdata /tmp/.tmpJvhVqu/prof.fdata.126046.fdata /tmp/.tmpJvhVqu/prof.fdata.126167.fdata /tmp/.tmpJvhVqu/prof.fdata.126169.fdata /tmp/.tmpJvhVqu/prof.fdata.126171.fdata /tmp/.tmpJvhVqu/prof.fdata.126178.fdata /tmp/.tmpJvhVqu/prof.fdata.126207.fdata /tmp/.tmpJvhVqu/prof.fdata.126223.fdata /tmp/.tmpJvhVqu/prof.fdata.126227.fdata /tmp/.tmpJvhVqu/prof.fdata.126235.fdata /tmp/.tmpJvhVqu/prof.fdata.126239.fdata /tmp/.tmpJvhVqu/prof.fdata.126243.fdata /tmp/.tmpJvhVqu/prof.fdata.126250.fdata /tmp/.tmpJvhVqu/prof.fdata.126255.fdata /tmp/.tmpJvhVqu/prof.fdata.126257.fdata /tmp/.tmpJvhVqu/prof.fdata.126261.fdata /tmp/.tmpJvhVqu/prof.fdata.126266.fdata /tmp/.tmpJvhVqu/prof.fdata.126269.fdata /tmp/.tmpJvhVqu/prof.fdata.126275.fdata /tmp/.tmpJvhVqu/prof.fdata.126281.fdata /tmp/.tmpJvhVqu/prof.fdata.126287.fdata /tmp/.tmpJvhVqu/prof.fdata.126291.fdata /tmp/.tmpJvhVqu/prof.fdata.126297.fdata /tmp/.tmpJvhVqu/prof.fdata.126306.fdata /tmp/.tmpJvhVqu/prof.fdata.126313.fdata /tmp/.tmpJvhVqu/prof.fdata.126317.fdata /tmp/.tmpJvhVqu/prof.fdata.126330.fdata /tmp/.tmpJvhVqu/prof.fdata.126337.fdata /tmp/.tmpJvhVqu/prof.fdata.126347.fdata /tmp/.tmpJvhVqu/prof.fdata.126350.fdata /tmp/.tmpJvhVqu/prof.fdata.126356.fdata /tmp/.tmpJvhVqu/prof.fdata.126371.fdata /tmp/.tmpJvhVqu/prof.fdata.126375.fdata /tmp/.tmpJvhVqu/prof.fdata.126397.fdata /tmp/.tmpJvhVqu/prof.fdata.126411.fdata /tmp/.tmpJvhVqu/prof.fdata.126420.fdata /tmp/.tmpJvhVqu/prof.fdata.126432.fdata /tmp/.tmpJvhVqu/prof.fdata.126437.fdata /tmp/.tmpJvhVqu/prof.fdata.126450.fdata /tmp/.tmpJvhVqu/prof.fdata.126451.fdata /tmp/.tmpJvhVqu/prof.fdata.126455.fdata /tmp/.tmpJvhVqu/prof.fdata.126462.fdata /tmp/.tmpJvhVqu/prof.fdata.126470.fdata /tmp/.tmpJvhVqu/prof.fdata.126475.fdata /tmp/.tmpJvhVqu/prof.fdata.126476.fdata /tmp/.tmpJvhVqu/prof.fdata.126502.fdata /tmp/.tmpJvhVqu/prof.fdata.126510.fdata /tmp/.tmpJvhVqu/prof.fdata.126516.fdata /tmp/.tmpJvhVqu/prof.fdata.126532.fdata /tmp/.tmpJvhVqu/prof.fdata.126550.fdata /tmp/.tmpJvhVqu/prof.fdata.126566.fdata /tmp/.tmpJvhVqu/prof.fdata.126578.fdata /tmp/.tmpJvhVqu/prof.fdata.126590.fdata /tmp/.tmpJvhVqu/prof.fdata.126595.fdata /tmp/.tmpJvhVqu/prof.fdata.126604.fdata /tmp/.tmpJvhVqu/prof.fdata.126612.fdata /tmp/.tmpJvhVqu/prof.fdata.126620.fdata /tmp/.tmpJvhVqu/prof.fdata.126630.fdata /tmp/.tmpJvhVqu/prof.fdata.126639.fdata /tmp/.tmpJvhVqu/prof.fdata.126640.fdata /tmp/.tmpJvhVqu/prof.fdata.126659.fdata /tmp/.tmpJvhVqu/prof.fdata.126671.fdata /tmp/.tmpJvhVqu/prof.fdata.126675.fdata /tmp/.tmpJvhVqu/prof.fdata.126693.fdata /tmp/.tmpJvhVqu/prof.fdata.126695.fdata /tmp/.tmpJvhVqu/prof.fdata.126705.fdata /tmp/.tmpJvhVqu/prof.fdata.126726.fdata /tmp/.tmpJvhVqu/prof.fdata.126732.fdata /tmp/.tmpJvhVqu/prof.fdata.126750.fdata /tmp/.tmpJvhVqu/prof.fdata.126766.fdata /tmp/.tmpJvhVqu/prof.fdata.126770.fdata /tmp/.tmpJvhVqu/prof.fdata.126791.fdata /tmp/.tmpJvhVqu/prof.fdata.126816.fdata /tmp/.tmpJvhVqu/prof.fdata.126820.fdata /tmp/.tmpJvhVqu/prof.fdata.126832.fdata /tmp/.tmpJvhVqu/prof.fdata.126842.fdata /tmp/.tmpJvhVqu/prof.fdata.126849.fdata /tmp/.tmpJvhVqu/prof.fdata.126853.fdata /tmp/.tmpJvhVqu/prof.fdata.126858.fdata /tmp/.tmpJvhVqu/prof.fdata.126859.fdata /tmp/.tmpJvhVqu/prof.fdata.126869.fdata /tmp/.tmpJvhVqu/prof.fdata.126886.fdata /tmp/.tmpJvhVqu/prof.fdata.126893.fdata /tmp/.tmpJvhVqu/prof.fdata.126894.fdata /tmp/.tmpJvhVqu/prof.fdata.126902.fdata /tmp/.tmpJvhVqu/prof.fdata.126905.fdata /tmp/.tmpJvhVqu/prof.fdata.126912.fdata /tmp/.tmpJvhVqu/prof.fdata.126921.fdata /tmp/.tmpJvhVqu/prof.fdata.126923.fdata /tmp/.tmpJvhVqu/prof.fdata.126925.fdata /tmp/.tmpJvhVqu/prof.fdata.126928.fdata /tmp/.tmpJvhVqu/prof.fdata.126947.fdata /tmp/.tmpJvhVqu/prof.fdata.126948.fdata /tmp/.tmpJvhVqu/prof.fdata.126960.fdata /tmp/.tmpJvhVqu/prof.fdata.126979.fdata /tmp/.tmpJvhVqu/prof.fdata.126985.fdata /tmp/.tmpJvhVqu/prof.fdata.126993.fdata /tmp/.tmpJvhVqu/prof.fdata.127035.fdata /tmp/.tmpJvhVqu/prof.fdata.127060.fdata /tmp/.tmpJvhVqu/prof.fdata.127062.fdata /tmp/.tmpJvhVqu/prof.fdata.127069.fdata /tmp/.tmpJvhVqu/prof.fdata.127073.fdata /tmp/.tmpJvhVqu/prof.fdata.127078.fdata /tmp/.tmpJvhVqu/prof.fdata.127100.fdata /tmp/.tmpJvhVqu/prof.fdata.127107.fdata /tmp/.tmpJvhVqu/prof.fdata.127111.fdata /tmp/.tmpJvhVqu/prof.fdata.127123.fdata /tmp/.tmpJvhVqu/prof.fdata.127124.fdata /tmp/.tmpJvhVqu/prof.fdata.127130.fdata /tmp/.tmpJvhVqu/prof.fdata.127137.fdata /tmp/.tmpJvhVqu/prof.fdata.127148.fdata /tmp/.tmpJvhVqu/prof.fdata.127157.fdata /tmp/.tmpJvhVqu/prof.fdata.127162.fdata /tmp/.tmpJvhVqu/prof.fdata.127174.fdata /tmp/.tmpJvhVqu/prof.fdata.127186.fdata /tmp/.tmpJvhVqu/prof.fdata.127187.fdata /tmp/.tmpJvhVqu/prof.fdata.127209.fdata /tmp/.tmpJvhVqu/prof.fdata.127210.fdata /tmp/.tmpJvhVqu/prof.fdata.127235.fdata /tmp/.tmpJvhVqu/prof.fdata.127256.fdata /tmp/.tmpJvhVqu/prof.fdata.127261.fdata /tmp/.tmpJvhVqu/prof.fdata.127296.fdata /tmp/.tmpJvhVqu/prof.fdata.127304.fdata /tmp/.tmpJvhVqu/prof.fdata.127312.fdata /tmp/.tmpJvhVqu/prof.fdata.127335.fdata /tmp/.tmpJvhVqu/prof.fdata.127350.fdata /tmp/.tmpJvhVqu/prof.fdata.127357.fdata /tmp/.tmpJvhVqu/prof.fdata.127378.fdata /tmp/.tmpJvhVqu/prof.fdata.127389.fdata /tmp/.tmpJvhVqu/prof.fdata.127394.fdata /tmp/.tmpJvhVqu/prof.fdata.127406.fdata /tmp/.tmpJvhVqu/prof.fdata.127425.fdata /tmp/.tmpJvhVqu/prof.fdata.127452.fdata /tmp/.tmpJvhVqu/prof.fdata.127468.fdata /tmp/.tmpJvhVqu/prof.fdata.127477.fdata /tmp/.tmpJvhVqu/prof.fdata.127496.fdata /tmp/.tmpJvhVqu/prof.fdata.127498.fdata /tmp/.tmpJvhVqu/prof.fdata.127520.fdata /tmp/.tmpJvhVqu/prof.fdata.127524.fdata /tmp/.tmpJvhVqu/prof.fdata.127546.fdata /tmp/.tmpJvhVqu/prof.fdata.127555.fdata /tmp/.tmpJvhVqu/prof.fdata.127563.fdata /tmp/.tmpJvhVqu/prof.fdata.127567.fdata /tmp/.tmpJvhVqu/prof.fdata.127588.fdata /tmp/.tmpJvhVqu/prof.fdata.127591.fdata /tmp/.tmpJvhVqu/prof.fdata.127603.fdata /tmp/.tmpJvhVqu/prof.fdata.127613.fdata /tmp/.tmpJvhVqu/prof.fdata.127634.fdata /tmp/.tmpJvhVqu/prof.fdata.127635.fdata /tmp/.tmpJvhVqu/prof.fdata.127637.fdata /tmp/.tmpJvhVqu/prof.fdata.127652.fdata /tmp/.tmpJvhVqu/prof.fdata.127659.fdata /tmp/.tmpJvhVqu/prof.fdata.127663.fdata /tmp/.tmpJvhVqu/prof.fdata.127672.fdata /tmp/.tmpJvhVqu/prof.fdata.127686.fdata /tmp/.tmpJvhVqu/prof.fdata.127696.fdata /tmp/.tmpJvhVqu/prof.fdata.127697.fdata /tmp/.tmpJvhVqu/prof.fdata.127701.fdata /tmp/.tmpJvhVqu/prof.fdata.127722.fdata /tmp/.tmpJvhVqu/prof.fdata.127729.fdata /tmp/.tmpJvhVqu/prof.fdata.127742.fdata /tmp/.tmpJvhVqu/prof.fdata.127750.fdata /tmp/.tmpJvhVqu/prof.fdata.127757.fdata /tmp/.tmpJvhVqu/prof.fdata.127762.fdata /tmp/.tmpJvhVqu/prof.fdata.127779.fdata /tmp/.tmpJvhVqu/prof.fdata.127787.fdata /tmp/.tmpJvhVqu/prof.fdata.127823.fdata /tmp/.tmpJvhVqu/prof.fdata.127827.fdata /tmp/.tmpJvhVqu/prof.fdata.127860.fdata /tmp/.tmpJvhVqu/prof.fdata.127867.fdata /tmp/.tmpJvhVqu/prof.fdata.127889.fdata /tmp/.tmpJvhVqu/prof.fdata.127893.fdata /tmp/.tmpJvhVqu/prof.fdata.127914.fdata /tmp/.tmpJvhVqu/prof.fdata.127926.fdata /tmp/.tmpJvhVqu/prof.fdata.127941.fdata /tmp/.tmpJvhVqu/prof.fdata.127960.fdata /tmp/.tmpJvhVqu/prof.fdata.127966.fdata /tmp/.tmpJvhVqu/prof.fdata.127973.fdata /tmp/.tmpJvhVqu/prof.fdata.127984.fdata /tmp/.tmpJvhVqu/prof.fdata.127988.fdata /tmp/.tmpJvhVqu/prof.fdata.127995.fdata /tmp/.tmpJvhVqu/prof.fdata.128014.fdata /tmp/.tmpJvhVqu/prof.fdata.128026.fdata /tmp/.tmpJvhVqu/prof.fdata.128032.fdata /tmp/.tmpJvhVqu/prof.fdata.128044.fdata /tmp/.tmpJvhVqu/prof.fdata.128063.fdata /tmp/.tmpJvhVqu/prof.fdata.128073.fdata /tmp/.tmpJvhVqu/prof.fdata.128085.fdata /tmp/.tmpJvhVqu/prof.fdata.128096.fdata /tmp/.tmpJvhVqu/prof.fdata.128101.fdata /tmp/.tmpJvhVqu/prof.fdata.128117.fdata /tmp/.tmpJvhVqu/prof.fdata.128120.fdata /tmp/.tmpJvhVqu/prof.fdata.128133.fdata /tmp/.tmpJvhVqu/prof.fdata.128150.fdata /tmp/.tmpJvhVqu/prof.fdata.128166.fdata /tmp/.tmpJvhVqu/prof.fdata.128178.fdata /tmp/.tmpJvhVqu/prof.fdata.128191.fdata /tmp/.tmpJvhVqu/prof.fdata.128202.fdata /tmp/.tmpJvhVqu/prof.fdata.128208.fdata /tmp/.tmpJvhVqu/prof.fdata.128212.fdata /tmp/.tmpJvhVqu/prof.fdata.128235.fdata /tmp/.tmpJvhVqu/prof.fdata.128254.fdata /tmp/.tmpJvhVqu/prof.fdata.128258.fdata /tmp/.tmpJvhVqu/prof.fdata.128302.fdata /tmp/.tmpJvhVqu/prof.fdata.128309.fdata /tmp/.tmpJvhVqu/prof.fdata.128313.fdata /tmp/.tmpJvhVqu/prof.fdata.128317.fdata /tmp/.tmpJvhVqu/prof.fdata.128337.fdata /tmp/.tmpJvhVqu/prof.fdata.128338.fdata /tmp/.tmpJvhVqu/prof.fdata.128349.fdata /tmp/.tmpJvhVqu/prof.fdata.128371.fdata /tmp/.tmpJvhVqu/prof.fdata.128376.fdata /tmp/.tmpJvhVqu/prof.fdata.128395.fdata /tmp/.tmpJvhVqu/prof.fdata.128412.fdata /tmp/.tmpJvhVqu/prof.fdata.128421.fdata /tmp/.tmpJvhVqu/prof.fdata.128426.fdata /tmp/.tmpJvhVqu/prof.fdata.128439.fdata /tmp/.tmpJvhVqu/prof.fdata.128442.fdata /tmp/.tmpJvhVqu/prof.fdata.128454.fdata /tmp/.tmpJvhVqu/prof.fdata.128463.fdata /tmp/.tmpJvhVqu/prof.fdata.128465.fdata /tmp/.tmpJvhVqu/prof.fdata.128472.fdata /tmp/.tmpJvhVqu/prof.fdata.128481.fdata /tmp/.tmpJvhVqu/prof.fdata.128497.fdata /tmp/.tmpJvhVqu/prof.fdata.128510.fdata /tmp/.tmpJvhVqu/prof.fdata.128515.fdata /tmp/.tmpJvhVqu/prof.fdata.128542.fdata /tmp/.tmpJvhVqu/prof.fdata.128547.fdata /tmp/.tmpJvhVqu/prof.fdata.128554.fdata /tmp/.tmpJvhVqu/prof.fdata.128575.fdata /tmp/.tmpJvhVqu/prof.fdata.128588.fdata /tmp/.tmpJvhVqu/prof.fdata.128603.fdata /tmp/.tmpJvhVqu/prof.fdata.128610.fdata /tmp/.tmpJvhVqu/prof.fdata.128629.fdata /tmp/.tmpJvhVqu/prof.fdata.128645.fdata /tmp/.tmpJvhVqu/prof.fdata.128661.fdata /tmp/.tmpJvhVqu/prof.fdata.128662.fdata /tmp/.tmpJvhVqu/prof.fdata.128705.fdata /tmp/.tmpJvhVqu/prof.fdata.128727.fdata /tmp/.tmpJvhVqu/prof.fdata.128731.fdata /tmp/.tmpJvhVqu/prof.fdata.128749.fdata /tmp/.tmpJvhVqu/prof.fdata.128761.fdata /tmp/.tmpJvhVqu/prof.fdata.128778.fdata /tmp/.tmpJvhVqu/prof.fdata.128780.fdata /tmp/.tmpJvhVqu/prof.fdata.128788.fdata /tmp/.tmpJvhVqu/prof.fdata.128801.fdata /tmp/.tmpJvhVqu/prof.fdata.128838.fdata /tmp/.tmpJvhVqu/prof.fdata.128848.fdata /tmp/.tmpJvhVqu/prof.fdata.128857.fdata /tmp/.tmpJvhVqu/prof.fdata.128864.fdata /tmp/.tmpJvhVqu/prof.fdata.128891.fdata /tmp/.tmpJvhVqu/prof.fdata.128922.fdata /tmp/.tmpJvhVqu/prof.fdata.128935.fdata /tmp/.tmpJvhVqu/prof.fdata.128961.fdata /tmp/.tmpJvhVqu/prof.fdata.128972.fdata /tmp/.tmpJvhVqu/prof.fdata.128993.fdata /tmp/.tmpJvhVqu/prof.fdata.129004.fdata /tmp/.tmpJvhVqu/prof.fdata.129025.fdata /tmp/.tmpJvhVqu/prof.fdata.129055.fdata /tmp/.tmpJvhVqu/prof.fdata.129063.fdata /tmp/.tmpJvhVqu/prof.fdata.129068.fdata /tmp/.tmpJvhVqu/prof.fdata.129080.fdata /tmp/.tmpJvhVqu/prof.fdata.129143.fdata /tmp/.tmpJvhVqu/prof.fdata.129152.fdata /tmp/.tmpJvhVqu/prof.fdata.129158.fdata /tmp/.tmpJvhVqu/prof.fdata.129160.fdata /tmp/.tmpJvhVqu/prof.fdata.129181.fdata /tmp/.tmpJvhVqu/prof.fdata.129297.fdata /tmp/.tmpJvhVqu/prof.fdata.129364.fdata /tmp/.tmpJvhVqu/prof.fdata.129570.fdata /tmp/.tmpJvhVqu/prof.fdata.129632.fdata /tmp/.tmpJvhVqu/prof.fdata.130341.fdata /tmp/.tmpJvhVqu/prof.fdata.130367.fdata /tmp/.tmpJvhVqu/prof.fdata.130501.fdata /tmp/.tmpJvhVqu/prof.fdata.130786.fdata /tmp/.tmpJvhVqu/prof.fdata.130830.fdata /tmp/.tmpJvhVqu/prof.fdata.130945.fdata /tmp/.tmpJvhVqu/prof.fdata.131218.fdata /tmp/.tmpJvhVqu/prof.fdata.131225.fdata /tmp/.tmpJvhVqu/prof.fdata.131243.fdata /tmp/.tmpJvhVqu/prof.fdata.131278.fdata /tmp/.tmpJvhVqu/prof.fdata.131283.fdata /tmp/.tmpJvhVqu/prof.fdata.131291.fdata /tmp/.tmpJvhVqu/prof.fdata.131348.fdata /tmp/.tmpJvhVqu/prof.fdata.131375.fdata /tmp/.tmpJvhVqu/prof.fdata.131420.fdata /tmp/.tmpJvhVqu/prof.fdata.131421.fdata /tmp/.tmpJvhVqu/prof.fdata.131424.fdata /tmp/.tmpJvhVqu/prof.fdata.131425.fdata /tmp/.tmpJvhVqu/prof.fdata.131430.fdata /tmp/.tmpJvhVqu/prof.fdata.131431.fdata /tmp/.tmpJvhVqu/prof.fdata.131445.fdata /tmp/.tmpJvhVqu/prof.fdata.131446.fdata /tmp/.tmpJvhVqu/prof.fdata.131447.fdata /tmp/.tmpJvhVqu/prof.fdata.131448.fdata /tmp/.tmpJvhVqu/prof.fdata.131452.fdata /tmp/.tmpJvhVqu/prof.fdata.131453.fdata /tmp/.tmpJvhVqu/prof.fdata.131455.fdata /tmp/.tmpJvhVqu/prof.fdata.131456.fdata /tmp/.tmpJvhVqu/prof.fdata.131458.fdata /tmp/.tmpJvhVqu/prof.fdata.131459.fdata /tmp/.tmpJvhVqu/prof.fdata.131460.fdata /tmp/.tmpJvhVqu/prof.fdata.131462.fdata /tmp/.tmpJvhVqu/prof.fdata.131463.fdata /tmp/.tmpJvhVqu/prof.fdata.131465.fdata /tmp/.tmpJvhVqu/prof.fdata.131466.fdata /tmp/.tmpJvhVqu/prof.fdata.131467.fdata /tmp/.tmpJvhVqu/prof.fdata.131609.fdata /tmp/.tmpJvhVqu/prof.fdata.131614.fdata /tmp/.tmpJvhVqu/prof.fdata.131624.fdata /tmp/.tmpJvhVqu/prof.fdata.131630.fdata /tmp/.tmpJvhVqu/prof.fdata.131635.fdata /tmp/.tmpJvhVqu/prof.fdata.131639.fdata /tmp/.tmpJvhVqu/prof.fdata.131649.fdata /tmp/.tmpJvhVqu/prof.fdata.131655.fdata /tmp/.tmpJvhVqu/prof.fdata.131659.fdata /tmp/.tmpJvhVqu/prof.fdata.131674.fdata /tmp/.tmpJvhVqu/prof.fdata.131683.fdata /tmp/.tmpJvhVqu/prof.fdata.131707.fdata /tmp/.tmpJvhVqu/prof.fdata.131717.fdata /tmp/.tmpJvhVqu/prof.fdata.131723.fdata /tmp/.tmpJvhVqu/prof.fdata.131743.fdata /tmp/.tmpJvhVqu/prof.fdata.131770.fdata /tmp/.tmpJvhVqu/prof.fdata.131815.fdata /tmp/.tmpJvhVqu/prof.fdata.131816.fdata /tmp/.tmpJvhVqu/prof.fdata.131819.fdata /tmp/.tmpJvhVqu/prof.fdata.131820.fdata /tmp/.tmpJvhVqu/prof.fdata.131825.fdata /tmp/.tmpJvhVqu/prof.fdata.131826.fdata /tmp/.tmpJvhVqu/prof.fdata.131844.fdata /tmp/.tmpJvhVqu/prof.fdata.131845.fdata /tmp/.tmpJvhVqu/prof.fdata.131846.fdata /tmp/.tmpJvhVqu/prof.fdata.131847.fdata /tmp/.tmpJvhVqu/prof.fdata.131848.fdata /tmp/.tmpJvhVqu/prof.fdata.131849.fdata /tmp/.tmpJvhVqu/prof.fdata.131851.fdata /tmp/.tmpJvhVqu/prof.fdata.131852.fdata /tmp/.tmpJvhVqu/prof.fdata.131854.fdata /tmp/.tmpJvhVqu/prof.fdata.131855.fdata /tmp/.tmpJvhVqu/prof.fdata.131856.fdata /tmp/.tmpJvhVqu/prof.fdata.131857.fdata /tmp/.tmpJvhVqu/prof.fdata.131859.fdata /tmp/.tmpJvhVqu/prof.fdata.131860.fdata /tmp/.tmpJvhVqu/prof.fdata.131863.fdata /tmp/.tmpJvhVqu/prof.fdata.131864.fdata /tmp/.tmpJvhVqu/prof.fdata.131865.fdata /tmp/.tmpJvhVqu/prof.fdata.131866.fdata /tmp/.tmpJvhVqu/prof.fdata.132004.fdata /tmp/.tmpJvhVqu/prof.fdata.132011.fdata /tmp/.tmpJvhVqu/prof.fdata.132012.fdata /tmp/.tmpJvhVqu/prof.fdata.132030.fdata /tmp/.tmpJvhVqu/prof.fdata.132041.fdata /tmp/.tmpJvhVqu/prof.fdata.132042.fdata /tmp/.tmpJvhVqu/prof.fdata.132055.fdata /tmp/.tmpJvhVqu/prof.fdata.132059.fdata /tmp/.tmpJvhVqu/prof.fdata.132070.fdata /tmp/.tmpJvhVqu/prof.fdata.132076.fdata /tmp/.tmpJvhVqu/prof.fdata.132082.fdata /tmp/.tmpJvhVqu/prof.fdata.132107.fdata /tmp/.tmpJvhVqu/prof.fdata.132108.fdata /tmp/.tmpJvhVqu/prof.fdata.132112.fdata /tmp/.tmpJvhVqu/prof.fdata.132119.fdata /tmp/.tmpJvhVqu/prof.fdata.132121.fdata /tmp/.tmpJvhVqu/prof.fdata.132127.fdata /tmp/.tmpJvhVqu/prof.fdata.132128.fdata /tmp/.tmpJvhVqu/prof.fdata.132137.fdata /tmp/.tmpJvhVqu/prof.fdata.132141.fdata /tmp/.tmpJvhVqu/prof.fdata.132144.fdata /tmp/.tmpJvhVqu/prof.fdata.132148.fdata /tmp/.tmpJvhVqu/prof.fdata.132155.fdata /tmp/.tmpJvhVqu/prof.fdata.132156.fdata /tmp/.tmpJvhVqu/prof.fdata.132165.fdata /tmp/.tmpJvhVqu/prof.fdata.132168.fdata /tmp/.tmpJvhVqu/prof.fdata.132185.fdata /tmp/.tmpJvhVqu/prof.fdata.132192.fdata /tmp/.tmpJvhVqu/prof.fdata.132209.fdata /tmp/.tmpJvhVqu/prof.fdata.132222.fdata /tmp/.tmpJvhVqu/prof.fdata.132236.fdata /tmp/.tmpJvhVqu/prof.fdata.132237.fdata /tmp/.tmpJvhVqu/prof.fdata.132253.fdata /tmp/.tmpJvhVqu/prof.fdata.132265.fdata /tmp/.tmpJvhVqu/prof.fdata.132270.fdata /tmp/.tmpJvhVqu/prof.fdata.132280.fdata /tmp/.tmpJvhVqu/prof.fdata.132291.fdata /tmp/.tmpJvhVqu/prof.fdata.132293.fdata /tmp/.tmpJvhVqu/prof.fdata.132313.fdata /tmp/.tmpJvhVqu/prof.fdata.132314.fdata /tmp/.tmpJvhVqu/prof.fdata.132325.fdata /tmp/.tmpJvhVqu/prof.fdata.132332.fdata /tmp/.tmpJvhVqu/prof.fdata.132341.fdata /tmp/.tmpJvhVqu/prof.fdata.132356.fdata /tmp/.tmpJvhVqu/prof.fdata.132365.fdata /tmp/.tmpJvhVqu/prof.fdata.132369.fdata /tmp/.tmpJvhVqu/prof.fdata.132373.fdata /tmp/.tmpJvhVqu/prof.fdata.132377.fdata /tmp/.tmpJvhVqu/prof.fdata.132384.fdata /tmp/.tmpJvhVqu/prof.fdata.132391.fdata /tmp/.tmpJvhVqu/prof.fdata.132406.fdata /tmp/.tmpJvhVqu/prof.fdata.132410.fdata /tmp/.tmpJvhVqu/prof.fdata.132417.fdata /tmp/.tmpJvhVqu/prof.fdata.132426.fdata /tmp/.tmpJvhVqu/prof.fdata.132436.fdata /tmp/.tmpJvhVqu/prof.fdata.132440.fdata /tmp/.tmpJvhVqu/prof.fdata.132452.fdata /tmp/.tmpJvhVqu/prof.fdata.132458.fdata /tmp/.tmpJvhVqu/prof.fdata.132463.fdata /tmp/.tmpJvhVqu/prof.fdata.132479.fdata /tmp/.tmpJvhVqu/prof.fdata.132495.fdata /tmp/.tmpJvhVqu/prof.fdata.132502.fdata /tmp/.tmpJvhVqu/prof.fdata.132513.fdata /tmp/.tmpJvhVqu/prof.fdata.132523.fdata /tmp/.tmpJvhVqu/prof.fdata.132530.fdata /tmp/.tmpJvhVqu/prof.fdata.132542.fdata /tmp/.tmpJvhVqu/prof.fdata.132551.fdata /tmp/.tmpJvhVqu/prof.fdata.132564.fdata /tmp/.tmpJvhVqu/prof.fdata.132568.fdata /tmp/.tmpJvhVqu/prof.fdata.132583.fdata /tmp/.tmpJvhVqu/prof.fdata.132592.fdata /tmp/.tmpJvhVqu/prof.fdata.132599.fdata /tmp/.tmpJvhVqu/prof.fdata.132619.fdata /tmp/.tmpJvhVqu/prof.fdata.132630.fdata /tmp/.tmpJvhVqu/prof.fdata.132644.fdata /tmp/.tmpJvhVqu/prof.fdata.132645.fdata /tmp/.tmpJvhVqu/prof.fdata.132652.fdata /tmp/.tmpJvhVqu/prof.fdata.132653.fdata /tmp/.tmpJvhVqu/prof.fdata.132721.fdata /tmp/.tmpJvhVqu/prof.fdata.132725.fdata /tmp/.tmpJvhVqu/prof.fdata.132729.fdata /tmp/.tmpJvhVqu/prof.fdata.132733.fdata /tmp/.tmpJvhVqu/prof.fdata.132743.fdata /tmp/.tmpJvhVqu/prof.fdata.132750.fdata /tmp/.tmpJvhVqu/prof.fdata.132763.fdata /tmp/.tmpJvhVqu/prof.fdata.132771.fdata /tmp/.tmpJvhVqu/prof.fdata.132817.fdata /tmp/.tmpJvhVqu/prof.fdata.132844.fdata /tmp/.tmpJvhVqu/prof.fdata.132858.fdata /tmp/.tmpJvhVqu/prof.fdata.132859.fdata /tmp/.tmpJvhVqu/prof.fdata.132862.fdata /tmp/.tmpJvhVqu/prof.fdata.132863.fdata /tmp/.tmpJvhVqu/prof.fdata.132868.fdata /tmp/.tmpJvhVqu/prof.fdata.132869.fdata /tmp/.tmpJvhVqu/prof.fdata.132878.fdata /tmp/.tmpJvhVqu/prof.fdata.132879.fdata /tmp/.tmpJvhVqu/prof.fdata.132880.fdata /tmp/.tmpJvhVqu/prof.fdata.132881.fdata /tmp/.tmpJvhVqu/prof.fdata.132907.fdata /tmp/.tmpJvhVqu/prof.fdata.132911.fdata /tmp/.tmpJvhVqu/prof.fdata.132938.fdata /tmp/.tmpJvhVqu/prof.fdata.132945.fdata /tmp/.tmpJvhVqu/prof.fdata.133037.fdata /tmp/.tmpJvhVqu/prof.fdata.133064.fdata /tmp/.tmpJvhVqu/prof.fdata.133109.fdata /tmp/.tmpJvhVqu/prof.fdata.133110.fdata /tmp/.tmpJvhVqu/prof.fdata.133113.fdata /tmp/.tmpJvhVqu/prof.fdata.133114.fdata /tmp/.tmpJvhVqu/prof.fdata.133119.fdata /tmp/.tmpJvhVqu/prof.fdata.133120.fdata /tmp/.tmpJvhVqu/prof.fdata.133131.fdata /tmp/.tmpJvhVqu/prof.fdata.133135.fdata /tmp/.tmpJvhVqu/prof.fdata.133136.fdata /tmp/.tmpJvhVqu/prof.fdata.133137.fdata /tmp/.tmpJvhVqu/prof.fdata.133139.fdata /tmp/.tmpJvhVqu/prof.fdata.133140.fdata /tmp/.tmpJvhVqu/prof.fdata.133142.fdata /tmp/.tmpJvhVqu/prof.fdata.133143.fdata /tmp/.tmpJvhVqu/prof.fdata.133145.fdata /tmp/.tmpJvhVqu/prof.fdata.133147.fdata /tmp/.tmpJvhVqu/prof.fdata.133148.fdata /tmp/.tmpJvhVqu/prof.fdata.133150.fdata /tmp/.tmpJvhVqu/prof.fdata.133151.fdata /tmp/.tmpJvhVqu/prof.fdata.133153.fdata /tmp/.tmpJvhVqu/prof.fdata.133157.fdata /tmp/.tmpJvhVqu/prof.fdata.133158.fdata /tmp/.tmpJvhVqu/prof.fdata.133175.fdata /tmp/.tmpJvhVqu/prof.fdata.133177.fdata /tmp/.tmpJvhVqu/prof.fdata.133289.fdata /tmp/.tmpJvhVqu/prof.fdata.133290.fdata /tmp/.tmpJvhVqu/prof.fdata.133292.fdata /tmp/.tmpJvhVqu/prof.fdata.133302.fdata /tmp/.tmpJvhVqu/prof.fdata.133321.fdata /tmp/.tmpJvhVqu/prof.fdata.133327.fdata /tmp/.tmpJvhVqu/prof.fdata.133337.fdata /tmp/.tmpJvhVqu/prof.fdata.133342.fdata /tmp/.tmpJvhVqu/prof.fdata.133348.fdata /tmp/.tmpJvhVqu/prof.fdata.133350.fdata /tmp/.tmpJvhVqu/prof.fdata.133354.fdata /tmp/.tmpJvhVqu/prof.fdata.133364.fdata /tmp/.tmpJvhVqu/prof.fdata.133371.fdata /tmp/.tmpJvhVqu/prof.fdata.133374.fdata /tmp/.tmpJvhVqu/prof.fdata.133377.fdata /tmp/.tmpJvhVqu/prof.fdata.133386.fdata /tmp/.tmpJvhVqu/prof.fdata.133387.fdata /tmp/.tmpJvhVqu/prof.fdata.133397.fdata /tmp/.tmpJvhVqu/prof.fdata.133399.fdata /tmp/.tmpJvhVqu/prof.fdata.133405.fdata /tmp/.tmpJvhVqu/prof.fdata.133408.fdata /tmp/.tmpJvhVqu/prof.fdata.133421.fdata /tmp/.tmpJvhVqu/prof.fdata.133440.fdata /tmp/.tmpJvhVqu/prof.fdata.133446.fdata /tmp/.tmpJvhVqu/prof.fdata.133450.fdata /tmp/.tmpJvhVqu/prof.fdata.133458.fdata /tmp/.tmpJvhVqu/prof.fdata.133462.fdata /tmp/.tmpJvhVqu/prof.fdata.133470.fdata /tmp/.tmpJvhVqu/prof.fdata.133484.fdata /tmp/.tmpJvhVqu/prof.fdata.133493.fdata /tmp/.tmpJvhVqu/prof.fdata.133503.fdata /tmp/.tmpJvhVqu/prof.fdata.133535.fdata /tmp/.tmpJvhVqu/prof.fdata.133542.fdata /tmp/.tmpJvhVqu/prof.fdata.133547.fdata /tmp/.tmpJvhVqu/prof.fdata.133557.fdata /tmp/.tmpJvhVqu/prof.fdata.133558.fdata /tmp/.tmpJvhVqu/prof.fdata.133575.fdata /tmp/.tmpJvhVqu/prof.fdata.133583.fdata /tmp/.tmpJvhVqu/prof.fdata.133598.fdata /tmp/.tmpJvhVqu/prof.fdata.133614.fdata /tmp/.tmpJvhVqu/prof.fdata.133615.fdata /tmp/.tmpJvhVqu/prof.fdata.133624.fdata /tmp/.tmpJvhVqu/prof.fdata.133631.fdata /tmp/.tmpJvhVqu/prof.fdata.133651.fdata /tmp/.tmpJvhVqu/prof.fdata.133660.fdata /tmp/.tmpJvhVqu/prof.fdata.133670.fdata /tmp/.tmpJvhVqu/prof.fdata.133706.fdata /tmp/.tmpJvhVqu/prof.fdata.133733.fdata /tmp/.tmpJvhVqu/prof.fdata.133747.fdata /tmp/.tmpJvhVqu/prof.fdata.133755.fdata /tmp/.tmpJvhVqu/prof.fdata.133773.fdata /tmp/.tmpJvhVqu/prof.fdata.133787.fdata /tmp/.tmpJvhVqu/prof.fdata.133790.fdata /tmp/.tmpJvhVqu/prof.fdata.133794.fdata /tmp/.tmpJvhVqu/prof.fdata.133830.fdata /tmp/.tmpJvhVqu/prof.fdata.133837.fdata /tmp/.tmpJvhVqu/prof.fdata.133843.fdata /tmp/.tmpJvhVqu/prof.fdata.133852.fdata /tmp/.tmpJvhVqu/prof.fdata.133860.fdata /tmp/.tmpJvhVqu/prof.fdata.133874.fdata /tmp/.tmpJvhVqu/prof.fdata.133888.fdata /tmp/.tmpJvhVqu/prof.fdata.133895.fdata /tmp/.tmpJvhVqu/prof.fdata.133905.fdata /tmp/.tmpJvhVqu/prof.fdata.133913.fdata /tmp/.tmpJvhVqu/prof.fdata.133921.fdata /tmp/.tmpJvhVqu/prof.fdata.133926.fdata /tmp/.tmpJvhVqu/prof.fdata.133932.fdata /tmp/.tmpJvhVqu/prof.fdata.133941.fdata /tmp/.tmpJvhVqu/prof.fdata.133942.fdata /tmp/.tmpJvhVqu/prof.fdata.133955.fdata /tmp/.tmpJvhVqu/prof.fdata.133957.fdata /tmp/.tmpJvhVqu/prof.fdata.133963.fdata /tmp/.tmpJvhVqu/prof.fdata.133975.fdata /tmp/.tmpJvhVqu/prof.fdata.134000.fdata /tmp/.tmpJvhVqu/prof.fdata.134008.fdata /tmp/.tmpJvhVqu/prof.fdata.134009.fdata /tmp/.tmpJvhVqu/prof.fdata.134030.fdata /tmp/.tmpJvhVqu/prof.fdata.134037.fdata /tmp/.tmpJvhVqu/prof.fdata.134041.fdata /tmp/.tmpJvhVqu/prof.fdata.134042.fdata /tmp/.tmpJvhVqu/prof.fdata.134049.fdata /tmp/.tmpJvhVqu/prof.fdata.134062.fdata /tmp/.tmpJvhVqu/prof.fdata.134067.fdata /tmp/.tmpJvhVqu/prof.fdata.134073.fdata /tmp/.tmpJvhVqu/prof.fdata.134085.fdata /tmp/.tmpJvhVqu/prof.fdata.134093.fdata /tmp/.tmpJvhVqu/prof.fdata.134097.fdata /tmp/.tmpJvhVqu/prof.fdata.134108.fdata /tmp/.tmpJvhVqu/prof.fdata.134121.fdata /tmp/.tmpJvhVqu/prof.fdata.134134.fdata /tmp/.tmpJvhVqu/prof.fdata.134142.fdata /tmp/.tmpJvhVqu/prof.fdata.134170.fdata /tmp/.tmpJvhVqu/prof.fdata.134180.fdata /tmp/.tmpJvhVqu/prof.fdata.134218.fdata /tmp/.tmpJvhVqu/prof.fdata.134220.fdata /tmp/.tmpJvhVqu/prof.fdata.134227.fdata /tmp/.tmpJvhVqu/prof.fdata.134242.fdata /tmp/.tmpJvhVqu/prof.fdata.134248.fdata /tmp/.tmpJvhVqu/prof.fdata.134282.fdata /tmp/.tmpJvhVqu/prof.fdata.134308.fdata /tmp/.tmpJvhVqu/prof.fdata.134314.fdata /tmp/.tmpJvhVqu/prof.fdata.134323.fdata /tmp/.tmpJvhVqu/prof.fdata.134333.fdata /tmp/.tmpJvhVqu/prof.fdata.134347.fdata /tmp/.tmpJvhVqu/prof.fdata.134351.fdata /tmp/.tmpJvhVqu/prof.fdata.134355.fdata /tmp/.tmpJvhVqu/prof.fdata.134381.fdata /tmp/.tmpJvhVqu/prof.fdata.134382.fdata /tmp/.tmpJvhVqu/prof.fdata.134394.fdata /tmp/.tmpJvhVqu/prof.fdata.134396.fdata /tmp/.tmpJvhVqu/prof.fdata.134409.fdata /tmp/.tmpJvhVqu/prof.fdata.134420.fdata /tmp/.tmpJvhVqu/prof.fdata.134430.fdata /tmp/.tmpJvhVqu/prof.fdata.134495.fdata /tmp/.tmpJvhVqu/prof.fdata.134510.fdata /tmp/.tmpJvhVqu/prof.fdata.134604.fdata /tmp/.tmpJvhVqu/prof.fdata.134631.fdata /tmp/.tmpJvhVqu/prof.fdata.134682.fdata /tmp/.tmpJvhVqu/prof.fdata.134705.fdata /tmp/.tmpJvhVqu/prof.fdata.134716.fdata /tmp/.tmpJvhVqu/prof.fdata.134761.fdata /tmp/.tmpJvhVqu/prof.fdata.134769.fdata /tmp/.tmpJvhVqu/prof.fdata.134786.fdata /tmp/.tmpJvhVqu/prof.fdata.134827.fdata /tmp/.tmpJvhVqu/prof.fdata.134862.fdata /tmp/.tmpJvhVqu/prof.fdata.134906.fdata /tmp/.tmpJvhVqu/prof.fdata.134908.fdata /tmp/.tmpJvhVqu/prof.fdata.134911.fdata /tmp/.tmpJvhVqu/prof.fdata.134922.fdata /tmp/.tmpJvhVqu/prof.fdata.134923.fdata /tmp/.tmpJvhVqu/prof.fdata.134925.fdata /tmp/.tmpJvhVqu/prof.fdata.134926.fdata /tmp/.tmpJvhVqu/prof.fdata.134928.fdata /tmp/.tmpJvhVqu/prof.fdata.134930.fdata /tmp/.tmpJvhVqu/prof.fdata.134931.fdata /tmp/.tmpJvhVqu/prof.fdata.134933.fdata /tmp/.tmpJvhVqu/prof.fdata.134935.fdata /tmp/.tmpJvhVqu/prof.fdata.134936.fdata /tmp/.tmpJvhVqu/prof.fdata.134938.fdata /tmp/.tmpJvhVqu/prof.fdata.134939.fdata /tmp/.tmpJvhVqu/prof.fdata.134941.fdata /tmp/.tmpJvhVqu/prof.fdata.134942.fdata /tmp/.tmpJvhVqu/prof.fdata.134943.fdata /tmp/.tmpJvhVqu/prof.fdata.134946.fdata /tmp/.tmpJvhVqu/prof.fdata.134947.fdata /tmp/.tmpJvhVqu/prof.fdata.135066.fdata /tmp/.tmpJvhVqu/prof.fdata.135070.fdata /tmp/.tmpJvhVqu/prof.fdata.135072.fdata /tmp/.tmpJvhVqu/prof.fdata.135090.fdata /tmp/.tmpJvhVqu/prof.fdata.135097.fdata /tmp/.tmpJvhVqu/prof.fdata.135103.fdata /tmp/.tmpJvhVqu/prof.fdata.135110.fdata /tmp/.tmpJvhVqu/prof.fdata.135122.fdata /tmp/.tmpJvhVqu/prof.fdata.135126.fdata /tmp/.tmpJvhVqu/prof.fdata.135129.fdata /tmp/.tmpJvhVqu/prof.fdata.135137.fdata /tmp/.tmpJvhVqu/prof.fdata.135139.fdata /tmp/.tmpJvhVqu/prof.fdata.135145.fdata /tmp/.tmpJvhVqu/prof.fdata.135151.fdata /tmp/.tmpJvhVqu/prof.fdata.135157.fdata /tmp/.tmpJvhVqu/prof.fdata.135161.fdata /tmp/.tmpJvhVqu/prof.fdata.135164.fdata /tmp/.tmpJvhVqu/prof.fdata.135165.fdata /tmp/.tmpJvhVqu/prof.fdata.135174.fdata /tmp/.tmpJvhVqu/prof.fdata.135176.fdata /tmp/.tmpJvhVqu/prof.fdata.135182.fdata /tmp/.tmpJvhVqu/prof.fdata.135200.fdata /tmp/.tmpJvhVqu/prof.fdata.135202.fdata /tmp/.tmpJvhVqu/prof.fdata.135207.fdata /tmp/.tmpJvhVqu/prof.fdata.135214.fdata /tmp/.tmpJvhVqu/prof.fdata.135227.fdata /tmp/.tmpJvhVqu/prof.fdata.135231.fdata /tmp/.tmpJvhVqu/prof.fdata.135233.fdata /tmp/.tmpJvhVqu/prof.fdata.135252.fdata /tmp/.tmpJvhVqu/prof.fdata.135262.fdata /tmp/.tmpJvhVqu/prof.fdata.135278.fdata /tmp/.tmpJvhVqu/prof.fdata.135285.fdata /tmp/.tmpJvhVqu/prof.fdata.135289.fdata /tmp/.tmpJvhVqu/prof.fdata.135293.fdata /tmp/.tmpJvhVqu/prof.fdata.135305.fdata /tmp/.tmpJvhVqu/prof.fdata.135309.fdata /tmp/.tmpJvhVqu/prof.fdata.135316.fdata /tmp/.tmpJvhVqu/prof.fdata.135320.fdata /tmp/.tmpJvhVqu/prof.fdata.135327.fdata /tmp/.tmpJvhVqu/prof.fdata.135331.fdata /tmp/.tmpJvhVqu/prof.fdata.135335.fdata /tmp/.tmpJvhVqu/prof.fdata.135354.fdata /tmp/.tmpJvhVqu/prof.fdata.135356.fdata /tmp/.tmpJvhVqu/prof.fdata.135363.fdata /tmp/.tmpJvhVqu/prof.fdata.135364.fdata /tmp/.tmpJvhVqu/prof.fdata.135368.fdata /tmp/.tmpJvhVqu/prof.fdata.135375.fdata /tmp/.tmpJvhVqu/prof.fdata.135386.fdata /tmp/.tmpJvhVqu/prof.fdata.135403.fdata /tmp/.tmpJvhVqu/prof.fdata.135407.fdata /tmp/.tmpJvhVqu/prof.fdata.135423.fdata /tmp/.tmpJvhVqu/prof.fdata.135457.fdata /tmp/.tmpJvhVqu/prof.fdata.135461.fdata /tmp/.tmpJvhVqu/prof.fdata.135500.fdata /tmp/.tmpJvhVqu/prof.fdata.135506.fdata /tmp/.tmpJvhVqu/prof.fdata.135513.fdata /tmp/.tmpJvhVqu/prof.fdata.135520.fdata /tmp/.tmpJvhVqu/prof.fdata.135540.fdata /tmp/.tmpJvhVqu/prof.fdata.135558.fdata /tmp/.tmpJvhVqu/prof.fdata.135559.fdata /tmp/.tmpJvhVqu/prof.fdata.135562.fdata /tmp/.tmpJvhVqu/prof.fdata.135563.fdata /tmp/.tmpJvhVqu/prof.fdata.135568.fdata /tmp/.tmpJvhVqu/prof.fdata.135569.fdata /tmp/.tmpJvhVqu/prof.fdata.135576.fdata /tmp/.tmpJvhVqu/prof.fdata.135577.fdata /tmp/.tmpJvhVqu/prof.fdata.135599.fdata /tmp/.tmpJvhVqu/prof.fdata.135600.fdata /tmp/.tmpJvhVqu/prof.fdata.135616.fdata /tmp/.tmpJvhVqu/prof.fdata.135631.fdata /tmp/.tmpJvhVqu/prof.fdata.135646.fdata /tmp/.tmpJvhVqu/prof.fdata.135647.fdata /tmp/.tmpJvhVqu/prof.fdata.135650.fdata /tmp/.tmpJvhVqu/prof.fdata.135651.fdata /tmp/.tmpJvhVqu/prof.fdata.135656.fdata /tmp/.tmpJvhVqu/prof.fdata.135657.fdata /tmp/.tmpJvhVqu/prof.fdata.135668.fdata /tmp/.tmpJvhVqu/prof.fdata.135669.fdata /tmp/.tmpJvhVqu/prof.fdata.135670.fdata /tmp/.tmpJvhVqu/prof.fdata.135671.fdata /tmp/.tmpJvhVqu/prof.fdata.135672.fdata /tmp/.tmpJvhVqu/prof.fdata.135673.fdata /tmp/.tmpJvhVqu/prof.fdata.135731.fdata /tmp/.tmpJvhVqu/prof.fdata.135732.fdata /tmp/.tmpJvhVqu/prof.fdata.135733.fdata /tmp/.tmpJvhVqu/prof.fdata.135739.fdata /tmp/.tmpJvhVqu/prof.fdata.135742.fdata /tmp/.tmpJvhVqu/prof.fdata.135746.fdata /tmp/.tmpJvhVqu/prof.fdata.135750.fdata /tmp/.tmpJvhVqu/prof.fdata.135754.fdata /tmp/.tmpJvhVqu/prof.fdata.135811.fdata /tmp/.tmpJvhVqu/prof.fdata.135841.fdata > "/tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata" [at /checkout/obj]`
Profile from 735 files merged.
##[endgroup]
[2024-04-30T16:42:20.776Z INFO  opt_dist::training] LLVM BOLT statistics
[2024-04-30T16:42:20.776Z INFO  opt_dist::training] /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata: 146.68 MiB
---
Preparing cargo-0.60.0
[2024-04-30T16:45:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-04-30T16:45:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-04-30T16:45:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2024-04-30T16:45:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpkpBCeW" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpkpBCeW#cargo@0.60.0" "--profile" "check" "--lib" "--" "--skip-this-rustc"
[2024-04-30T16:45:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpWsbCwW" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpWsbCwW#cargo@0.60.0" "--lib" "--" "--skip-this-rustc"
[2024-04-30T16:45:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpAMuoTi" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpAMuoTi#cargo@0.60.0" "--release" "--lib" "--" "--skip-this-rustc"
[2024-04-30T16:47:29Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:47:29Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-04-30T16:47:29Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-04-30T16:47:29Z DEBUG collector::compile::execute] cd "/tmp/.tmpKOJdwP" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKOJdwP#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T16:47:38Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-04-30T16:47:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpKOJdwP" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKOJdwP#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpKOJdwP/incremental-state"
[2024-04-30T16:47:49Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T16:47:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpKOJdwP" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKOJdwP#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpKOJdwP/incremental-state"
[2024-04-30T16:47:52Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpKOJdwP"
[2024-04-30T16:47:52Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-04-30T16:47:52Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-04-30T16:47:52Z DEBUG collector::compile::execute] cd "/tmp/.tmpKOJdwP" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKOJdwP#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpKOJdwP/incremental-state"
[2024-04-30T16:47:56Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:47:57Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T16:47:57Z DEBUG collector::compile::execute] cd "/tmp/.tmpl8WfbF" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpl8WfbF#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T16:48:17Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
---
[2024-04-30T16:50:23Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:50:23Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T16:50:23Z DEBUG collector::compile::execute] cd "/tmp/.tmpUdhSIN" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpUdhSIN#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T16:50:27Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2024-04-30T16:50:27Z DEBUG collector::compile::execute] cd "/tmp/.tmpUdhSIN" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpUdhSIN#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpUdhSIN/incremental-state"
[2024-04-30T16:50:32Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T16:50:32Z DEBUG collector::compile::execute] cd "/tmp/.tmpUdhSIN" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpUdhSIN#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpUdhSIN/incremental-state"
Executing benchmark diesel-1.4.8 (4/8)
Preparing diesel-1.4.8
[2024-04-30T16:50:34Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2024-04-30T16:50:34Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
---
[2024-04-30T16:51:57Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:51:57Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-04-30T16:51:57Z DEBUG collector::compile::execute] cd "/tmp/.tmpDqke3N" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpDqke3N#externs@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T16:51:58Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-04-30T16:51:58Z DEBUG collector::compile::execute] cd "/tmp/.tmpDqke3N" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpDqke3N#externs@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpDqke3N/incremental-state"
[2024-04-30T16:51:59Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T16:51:59Z DEBUG collector::compile::execute] cd "/tmp/.tmpDqke3N" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpDqke3N#externs@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpDqke3N/incremental-state"
[2024-04-30T16:52:00Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:52:00Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T16:52:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpIrI6uA" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpIrI6uA#externs@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T16:52:01Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
---
[2024-04-30T16:52:13Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:52:13Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T16:52:13Z DEBUG collector::compile::execute] cd "/tmp/.tmphDwA7A" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmphDwA7A#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T16:52:16Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-04-30T16:52:16Z DEBUG collector::compile::execute] cd "/tmp/.tmphDwA7A" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmphDwA7A#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmphDwA7A/incremental-state"
[2024-04-30T16:52:19Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T16:52:19Z DEBUG collector::compile::execute] cd "/tmp/.tmphDwA7A" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmphDwA7A#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmphDwA7A/incremental-state"
[2024-04-30T16:52:20Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:52:20Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T16:52:20Z DEBUG collector::compile::execute] cd "/tmp/.tmpDZHHX1" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpDZHHX1#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T16:52:23Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
[2024-04-30T16:52:30Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:52:30Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-04-30T16:52:30Z DEBUG collector::compile::execute] cd "/tmp/.tmpOmy5Vz" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpOmy5Vz#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T16:52:30Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-04-30T16:52:30Z DEBUG collector::compile::execute] cd "/tmp/.tmpOmy5Vz" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpOmy5Vz#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpOmy5Vz/incremental-state"
[2024-04-30T16:52:31Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T16:52:31Z DEBUG collector::compile::execute] cd "/tmp/.tmpOmy5Vz" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpOmy5Vz#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpOmy5Vz/incremental-state"
[2024-04-30T16:52:32Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:52:32Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T16:52:32Z DEBUG collector::compile::execute] cd "/tmp/.tmpK58dTM" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpK58dTM#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T16:52:33Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
---
[2024-04-30T16:52:48Z DEBUG collector::compile::execute] cd "/tmp/.tmpVkm3k2" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpVkm3k2#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpVkm3k2/incremental-state"
Running tuple-stress: Debug + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2024-04-30T16:52:51Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:52:51Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-04-30T16:52:51Z DEBUG collector::compile::execute] cd "/tmp/.tmpZjCLCB" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpZjCLCB#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T16:52:54Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-04-30T16:52:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpZjCLCB" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpZjCLCB#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpZjCLCB/incremental-state"
[2024-04-30T16:52:58Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T16:52:58Z DEBUG collector::compile::execute] cd "/tmp/.tmpZjCLCB" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpZjCLCB#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpZjCLCB/incremental-state"
[2024-04-30T16:53:00Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpZjCLCB"
[2024-04-30T16:53:00Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" })
[2024-04-30T16:53:00Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" })
[2024-04-30T16:53:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpZjCLCB" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpZjCLCB#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpZjCLCB/incremental-state"
[2024-04-30T16:53:03Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-04-30T16:53:03Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T16:53:03Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-04-30T16:53:03Z DEBUG collector::compile::execute] cd "/tmp/.tmpKvZAzG" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKvZAzG#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-04-30T16:53:07Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2024-04-30T16:53:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpKvZAzG" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKvZAzG#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpKvZAzG/incremental-state"
[2024-04-30T16:53:10Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2024-04-30T16:53:10Z DEBUG collector::compile::execute] cd "/tmp/.tmpKvZAzG" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKvZAzG#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpKvZAzG/incremental-state"
[2024-04-30T16:53:12Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpKvZAzG"
[2024-04-30T16:53:12Z 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" })
[2024-04-30T16:53:12Z 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" })
[2024-04-30T16:53:12Z DEBUG collector::compile::execute] cd "/tmp/.tmpKvZAzG" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKvZAzG#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpKvZAzG/incremental-state"
##[endgroup]
[2024-04-30T16:53:16.078Z INFO  opt_dist::training] Merging rustc BOLT profiles from /tmp/.tmpOjOy10/prof.fdata to /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata
##[group]Merging BOLT profiles
##[group]Merging BOLT profiles
[2024-04-30T16:53:16.079Z INFO  opt_dist::exec] Executing `merge-fdata /tmp/.tmpOjOy10/prof.fdata.135939.fdata /tmp/.tmpOjOy10/prof.fdata.135954.fdata /tmp/.tmpOjOy10/prof.fdata.135955.fdata /tmp/.tmpOjOy10/prof.fdata.135956.fdata /tmp/.tmpOjOy10/prof.fdata.135960.fdata /tmp/.tmpOjOy10/prof.fdata.135961.fdata /tmp/.tmpOjOy10/prof.fdata.135962.fdata /tmp/.tmpOjOy10/prof.fdata.135969.fdata /tmp/.tmpOjOy10/prof.fdata.135970.fdata /tmp/.tmpOjOy10/prof.fdata.135971.fdata /tmp/.tmpOjOy10/prof.fdata.135990.fdata /tmp/.tmpOjOy10/prof.fdata.136000.fdata /tmp/.tmpOjOy10/prof.fdata.136010.fdata /tmp/.tmpOjOy10/prof.fdata.136021.fdata /tmp/.tmpOjOy10/prof.fdata.136032.fdata /tmp/.tmpOjOy10/prof.fdata.136043.fdata /tmp/.tmpOjOy10/prof.fdata.136086.fdata /tmp/.tmpOjOy10/prof.fdata.136130.fdata /tmp/.tmpOjOy10/prof.fdata.136174.fdata /tmp/.tmpOjOy10/prof.fdata.136188.fdata /tmp/.tmpOjOy10/prof.fdata.136212.fdata /tmp/.tmpOjOy10/prof.fdata.136230.fdata /tmp/.tmpOjOy10/prof.fdata.136254.fdata /tmp/.tmpOjOy10/prof.fdata.136255.fdata /tmp/.tmpOjOy10/prof.fdata.136256.fdata /tmp/.tmpOjOy10/prof.fdata.136260.fdata /tmp/.tmpOjOy10/prof.fdata.136261.fdata /tmp/.tmpOjOy10/prof.fdata.136262.fdata /tmp/.tmpOjOy10/prof.fdata.136269.fdata /tmp/.tmpOjOy10/prof.fdata.136270.fdata /tmp/.tmpOjOy10/prof.fdata.136271.fdata /tmp/.tmpOjOy10/prof.fdata.136283.fdata /tmp/.tmpOjOy10/prof.fdata.136285.fdata /tmp/.tmpOjOy10/prof.fdata.136286.fdata /tmp/.tmpOjOy10/prof.fdata.136287.fdata /tmp/.tmpOjOy10/prof.fdata.136288.fdata /tmp/.tmpOjOy10/prof.fdata.136290.fdata /tmp/.tmpOjOy10/prof.fdata.136291.fdata /tmp/.tmpOjOy10/prof.fdata.136293.fdata /tmp/.tmpOjOy10/prof.fdata.136294.fdata /tmp/.tmpOjOy10/prof.fdata.136296.fdata /tmp/.tmpOjOy10/prof.fdata.136298.fdata /tmp/.tmpOjOy10/prof.fdata.136303.fdata /tmp/.tmpOjOy10/prof.fdata.136305.fdata /tmp/.tmpOjOy10/prof.fdata.136306.fdata /tmp/.tmpOjOy10/prof.fdata.136307.fdata /tmp/.tmpOjOy10/prof.fdata.136309.fdata /tmp/.tmpOjOy10/prof.fdata.136312.fdata /tmp/.tmpOjOy10/prof.fdata.136313.fdata /tmp/.tmpOjOy10/prof.fdata.136325.fdata /tmp/.tmpOjOy10/prof.fdata.136473.fdata /tmp/.tmpOjOy10/prof.fdata.136474.fdata /tmp/.tmpOjOy10/prof.fdata.136475.fdata /tmp/.tmpOjOy10/prof.fdata.136483.fdata /tmp/.tmpOjOy10/prof.fdata.136493.fdata /tmp/.tmpOjOy10/prof.fdata.136523.fdata /tmp/.tmpOjOy10/prof.fdata.136528.fdata /tmp/.tmpOjOy10/prof.fdata.136534.fdata /tmp/.tmpOjOy10/prof.fdata.136545.fdata /tmp/.tmpOjOy10/prof.fdata.136546.fdata /tmp/.tmpOjOy10/prof.fdata.136552.fdata /tmp/.tmpOjOy10/prof.fdata.136556.fdata /tmp/.tmpOjOy10/prof.fdata.136563.fdata /tmp/.tmpOjOy10/prof.fdata.136564.fdata /tmp/.tmpOjOy10/prof.fdata.136571.fdata /tmp/.tmpOjOy10/prof.fdata.136574.fdata /tmp/.tmpOjOy10/prof.fdata.136580.fdata /tmp/.tmpOjOy10/prof.fdata.136581.fdata /tmp/.tmpOjOy10/prof.fdata.136590.fdata /tmp/.tmpOjOy10/prof.fdata.136596.fdata /tmp/.tmpOjOy10/prof.fdata.136600.fdata /tmp/.tmpOjOy10/prof.fdata.136601.fdata /tmp/.tmpOjOy10/prof.fdata.136607.fdata /tmp/.tmpOjOy10/prof.fdata.136614.fdata /tmp/.tmpOjOy10/prof.fdata.136618.fdata /tmp/.tmpOjOy10/prof.fdata.136631.fdata /tmp/.tmpOjOy10/prof.fdata.136643.fdata /tmp/.tmpOjOy10/prof.fdata.136644.fdata /tmp/.tmpOjOy10/prof.fdata.136670.fdata /tmp/.tmpOjOy10/prof.fdata.136684.fdata /tmp/.tmpOjOy10/prof.fdata.136688.fdata /tmp/.tmpOjOy10/prof.fdata.136721.fdata /tmp/.tmpOjOy10/prof.fdata.136742.fdata /tmp/.tmpOjOy10/prof.fdata.136746.fdata /tmp/.tmpOjOy10/prof.fdata.136762.fdata /tmp/.tmpOjOy10/prof.fdata.136767.fdata /tmp/.tmpOjOy10/prof.fdata.136783.fdata /tmp/.tmpOjOy10/prof.fdata.136788.fdata /tmp/.tmpOjOy10/prof.fdata.136800.fdata /tmp/.tmpOjOy10/prof.fdata.136824.fdata /tmp/.tmpOjOy10/prof.fdata.136830.fdata /tmp/.tmpOjOy10/prof.fdata.136849.fdata /tmp/.tmpOjOy10/prof.fdata.136864.fdata /tmp/.tmpOjOy10/prof.fdata.136871.fdata /tmp/.tmpOjOy10/prof.fdata.136879.fdata /tmp/.tmpOjOy10/prof.fdata.136889.fdata /tmp/.tmpOjOy10/prof.fdata.136909.fdata /tmp/.tmpOjOy10/prof.fdata.136919.fdata /tmp/.tmpOjOy10/prof.fdata.136945.fdata /tmp/.tmpOjOy10/prof.fdata.136950.fdata /tmp/.tmpOjOy10/prof.fdata.136953.fdata /tmp/.tmpOjOy10/prof.fdata.136971.fdata /tmp/.tmpOjOy10/prof.fdata.136983.fdata /tmp/.tmpOjOy10/prof.fdata.136991.fdata /tmp/.tmpOjOy10/prof.fdata.137011.fdata /tmp/.tmpOjOy10/prof.fdata.137016.fdata /tmp/.tmpOjOy10/prof.fdata.137029.fdata /tmp/.tmpOjOy10/prof.fdata.137035.fdata /tmp/.tmpOjOy10/prof.fdata.137049.fdata /tmp/.tmpOjOy10/prof.fdata.137059.fdata /tmp/.tmpOjOy10/prof.fdata.137078.fdata /tmp/.tmpOjOy10/prof.fdata.137109.fdata /tmp/.tmpOjOy10/prof.fdata.137117.fdata /tmp/.tmpOjOy10/prof.fdata.137124.fdata /tmp/.tmpOjOy10/prof.fdata.137155.fdata /tmp/.tmpOjOy10/prof.fdata.137160.fdata /tmp/.tmpOjOy10/prof.fdata.137165.fdata /tmp/.tmpOjOy10/prof.fdata.137182.fdata /tmp/.tmpOjOy10/prof.fdata.137191.fdata /tmp/.tmpOjOy10/prof.fdata.137196.fdata /tmp/.tmpOjOy10/prof.fdata.137208.fdata /tmp/.tmpOjOy10/prof.fdata.137211.fdata /tmp/.tmpOjOy10/prof.fdata.137254.fdata /tmp/.tmpOjOy10/prof.fdata.137261.fdata /tmp/.tmpOjOy10/prof.fdata.137274.fdata /tmp/.tmpOjOy10/prof.fdata.137279.fdata /tmp/.tmpOjOy10/prof.fdata.137290.fdata /tmp/.tmpOjOy10/prof.fdata.137296.fdata /tmp/.tmpOjOy10/prof.fdata.137300.fdata /tmp/.tmpOjOy10/prof.fdata.137305.fdata /tmp/.tmpOjOy10/prof.fdata.137309.fdata /tmp/.tmpOjOy10/prof.fdata.137315.fdata /tmp/.tmpOjOy10/prof.fdata.137334.fdata /tmp/.tmpOjOy10/prof.fdata.137350.fdata /tmp/.tmpOjOy10/prof.fdata.137371.fdata /tmp/.tmpOjOy10/prof.fdata.137394.fdata /tmp/.tmpOjOy10/prof.fdata.137401.fdata /tmp/.tmpOjOy10/prof.fdata.137419.fdata /tmp/.tmpOjOy10/prof.fdata.137429.fdata /tmp/.tmpOjOy10/prof.fdata.137438.fdata /tmp/.tmpOjOy10/prof.fdata.137444.fdata /tmp/.tmpOjOy10/prof.fdata.137464.fdata /tmp/.tmpOjOy10/prof.fdata.137478.fdata /tmp/.tmpOjOy10/prof.fdata.137483.fdata /tmp/.tmpOjOy10/prof.fdata.137492.fdata /tmp/.tmpOjOy10/prof.fdata.137499.fdata /tmp/.tmpOjOy10/prof.fdata.137517.fdata /tmp/.tmpOjOy10/prof.fdata.137522.fdata /tmp/.tmpOjOy10/prof.fdata.137553.fdata /tmp/.tmpOjOy10/prof.fdata.137556.fdata /tmp/.tmpOjOy10/prof.fdata.137563.fdata /tmp/.tmpOjOy10/prof.fdata.137571.fdata /tmp/.tmpOjOy10/prof.fdata.137575.fdata /tmp/.tmpOjOy10/prof.fdata.137585.fdata /tmp/.tmpOjOy10/prof.fdata.137592.fdata /tmp/.tmpOjOy10/prof.fdata.137609.fdata /tmp/.tmpOjOy10/prof.fdata.137616.fdata /tmp/.tmpOjOy10/prof.fdata.137627.fdata /tmp/.tmpOjOy10/prof.fdata.137635.fdata /tmp/.tmpOjOy10/prof.fdata.137656.fdata /tmp/.tmpOjOy10/prof.fdata.137678.fdata /tmp/.tmpOjOy10/prof.fdata.137722.fdata /tmp/.tmpOjOy10/prof.fdata.137739.fdata /tmp/.tmpOjOy10/prof.fdata.137749.fdata /tmp/.tmpOjOy10/prof.fdata.137756.fdata /tmp/.tmpOjOy10/prof.fdata.137757.fdata /tmp/.tmpOjOy10/prof.fdata.137784.fdata /tmp/.tmpOjOy10/prof.fdata.137792.fdata /tmp/.tmpOjOy10/prof.fdata.137807.fdata /tmp/.tmpOjOy10/prof.fdata.137820.fdata /tmp/.tmpOjOy10/prof.fdata.137823.fdata /tmp/.tmpOjOy10/prof.fdata.137828.fdata /tmp/.tmpOjOy10/prof.fdata.137832.fdata /tmp/.tmpOjOy10/prof.fdata.137867.fdata /tmp/.tmpOjOy10/prof.fdata.137872.fdata /tmp/.tmpOjOy10/prof.fdata.137876.fdata /tmp/.tmpOjOy10/prof.fdata.137881.fdata /tmp/.tmpOjOy10/prof.fdata.137883.fdata /tmp/.tmpOjOy10/prof.fdata.137892.fdata /tmp/.tmpOjOy10/prof.fdata.137903.fdata /tmp/.tmpOjOy10/prof.fdata.137919.fdata /tmp/.tmpOjOy10/prof.fdata.137937.fdata /tmp/.tmpOjOy10/prof.fdata.137947.fdata /tmp/.tmpOjOy10/prof.fdata.137953.fdata /tmp/.tmpOjOy10/prof.fdata.137972.fdata /tmp/.tmpOjOy10/prof.fdata.138029.fdata /tmp/.tmpOjOy10/prof.fdata.138031.fdata /tmp/.tmpOjOy10/prof.fdata.138047.fdata /tmp/.tmpOjOy10/prof.fdata.138051.fdata /tmp/.tmpOjOy10/prof.fdata.138057.fdata /tmp/.tmpOjOy10/prof.fdata.138060.fdata /tmp/.tmpOjOy10/prof.fdata.138073.fdata /tmp/.tmpOjOy10/prof.fdata.138090.fdata /tmp/.tmpOjOy10/prof.fdata.138106.fdata /tmp/.tmpOjOy10/prof.fdata.138113.fdata /tmp/.tmpOjOy10/prof.fdata.138131.fdata /tmp/.tmpOjOy10/prof.fdata.138141.fdata /tmp/.tmpOjOy10/prof.fdata.138174.fdata /tmp/.tmpOjOy10/prof.fdata.138220.fdata /tmp/.tmpOjOy10/prof.fdata.138230.fdata /tmp/.tmpOjOy10/prof.fdata.138231.fdata /tmp/.tmpOjOy10/prof.fdata.138233.fdata /tmp/.tmpOjOy10/prof.fdata.138238.fdata /tmp/.tmpOjOy10/prof.fdata.138248.fdata /tmp/.tmpOjOy10/prof.fdata.138272.fdata /tmp/.tmpOjOy10/prof.fdata.138302.fdata /tmp/.tmpOjOy10/prof.fdata.138338.fdata /tmp/.tmpOjOy10/prof.fdata.138356.fdata /tmp/.tmpOjOy10/prof.fdata.138368.fdata /tmp/.tmpOjOy10/prof.fdata.138392.fdata /tmp/.tmpOjOy10/prof.fdata.138410.fdata /tmp/.tmpOjOy10/prof.fdata.138418.fdata /tmp/.tmpOjOy10/prof.fdata.138433.fdata /tmp/.tmpOjOy10/prof.fdata.138440.fdata /tmp/.tmpOjOy10/prof.fdata.138452.fdata /tmp/.tmpOjOy10/prof.fdata.138465.fdata /tmp/.tmpOjOy10/prof.fdata.138491.fdata /tmp/.tmpOjOy10/prof.fdata.138505.fdata /tmp/.tmpOjOy10/prof.fdata.138512.fdata /tmp/.tmpOjOy10/prof.fdata.138538.fdata /tmp/.tmpOjOy10/prof.fdata.138540.fdata /tmp/.tmpOjOy10/prof.fdata.138545.fdata /tmp/.tmpOjOy10/prof.fdata.138549.fdata /tmp/.tmpOjOy10/prof.fdata.138556.fdata /tmp/.tmpOjOy10/prof.fdata.138561.fdata /tmp/.tmpOjOy10/prof.fdata.138573.fdata /tmp/.tmpOjOy10/prof.fdata.138595.fdata /tmp/.tmpOjOy10/prof.fdata.138612.fdata /tmp/.tmpOjOy10/prof.fdata.138618.fdata /tmp/.tmpOjOy10/prof.fdata.138623.fdata /tmp/.tmpOjOy10/prof.fdata.138629.fdata /tmp/.tmpOjOy10/prof.fdata.138651.fdata /tmp/.tmpOjOy10/prof.fdata.138654.fdata /tmp/.tmpOjOy10/prof.fdata.138658.fdata /tmp/.tmpOjOy10/prof.fdata.138674.fdata /tmp/.tmpOjOy10/prof.fdata.138675.fdata /tmp/.tmpOjOy10/prof.fdata.138689.fdata /tmp/.tmpOjOy10/prof.fdata.138695.fdata /tmp/.tmpOjOy10/prof.fdata.138700.fdata /tmp/.tmpOjOy10/prof.fdata.138714.fdata /tmp/.tmpOjOy10/prof.fdata.138718.fdata /tmp/.tmpOjOy10/prof.fdata.138733.fdata /tmp/.tmpOjOy10/prof.fdata.138734.fdata /tmp/.tmpOjOy10/prof.fdata.138741.fdata /tmp/.tmpOjOy10/prof.fdata.138767.fdata /tmp/.tmpOjOy10/prof.fdata.138771.fdata /tmp/.tmpOjOy10/prof.fdata.138785.fdata /tmp/.tmpOjOy10/prof.fdata.138796.fdata /tmp/.tmpOjOy10/prof.fdata.138807.fdata /tmp/.tmpOjOy10/prof.fdata.138808.fdata /tmp/.tmpOjOy10/prof.fdata.138818.fdata /tmp/.tmpOjOy10/prof.fdata.138838.fdata /tmp/.tmpOjOy10/prof.fdata.138843.fdata /tmp/.tmpOjOy10/prof.fdata.138846.fdata /tmp/.tmpOjOy10/prof.fdata.138862.fdata /tmp/.tmpOjOy10/prof.fdata.138863.fdata /tmp/.tmpOjOy10/prof.fdata.138873.fdata /tmp/.tmpOjOy10/prof.fdata.138888.fdata /tmp/.tmpOjOy10/prof.fdata.138902.fdata /tmp/.tmpOjOy10/prof.fdata.138904.fdata /tmp/.tmpOjOy10/prof.fdata.138922.fdata /tmp/.tmpOjOy10/prof.fdata.138957.fdata /tmp/.tmpOjOy10/prof.fdata.138975.fdata /tmp/.tmpOjOy10/prof.fdata.138990.fdata /tmp/.tmpOjOy10/prof.fdata.139009.fdata /tmp/.tmpOjOy10/prof.fdata.139025.fdata /tmp/.tmpOjOy10/prof.fdata.139040.fdata /tmp/.tmpOjOy10/prof.fdata.139044.fdata /tmp/.tmpOjOy10/prof.fdata.139048.fdata /tmp/.tmpOjOy10/prof.fdata.139066.fdata /tmp/.tmpOjOy10/prof.fdata.139076.fdata /tmp/.tmpOjOy10/prof.fdata.139081.fdata /tmp/.tmpOjOy10/prof.fdata.139084.fdata /tmp/.tmpOjOy10/prof.fdata.139086.fdata /tmp/.tmpOjOy10/prof.fdata.139097.fdata /tmp/.tmpOjOy10/prof.fdata.139104.fdata /tmp/.tmpOjOy10/prof.fdata.139117.fdata /tmp/.tmpOjOy10/prof.fdata.139122.fdata /tmp/.tmpOjOy10/prof.fdata.139127.fdata /tmp/.tmpOjOy10/prof.fdata.139141.fdata /tmp/.tmpOjOy10/prof.fdata.139150.fdata /tmp/.tmpOjOy10/prof.fdata.139152.fdata /tmp/.tmpOjOy10/prof.fdata.139160.fdata /tmp/.tmpOjOy10/prof.fdata.139162.fdata /tmp/.tmpOjOy10/prof.fdata.139174.fdata /tmp/.tmpOjOy10/prof.fdata.139182.fdata /tmp/.tmpOjOy10/prof.fdata.139188.fdata /tmp/.tmpOjOy10/prof.fdata.139192.fdata /tmp/.tmpOjOy10/prof.fdata.139210.fdata /tmp/.tmpOjOy10/prof.fdata.139217.fdata /tmp/.tmpOjOy10/prof.fdata.139222.fdata /tmp/.tmpOjOy10/prof.fdata.139229.fdata /tmp/.tmpOjOy10/prof.fdata.139236.fdata /tmp/.tmpOjOy10/prof.fdata.139239.fdata /tmp/.tmpOjOy10/prof.fdata.139241.fdata /tmp/.tmpOjOy10/prof.fdata.139247.fdata /tmp/.tmpOjOy10/prof.fdata.139265.fdata /tmp/.tmpOjOy10/prof.fdata.139276.fdata /tmp/.tmpOjOy10/prof.fdata.139283.fdata /tmp/.tmpOjOy10/prof.fdata.139289.fdata /tmp/.tmpOjOy10/prof.fdata.139299.fdata /tmp/.tmpOjOy10/prof.fdata.139301.fdata /tmp/.tmpOjOy10/prof.fdata.139317.fdata /tmp/.tmpOjOy10/prof.fdata.139318.fdata /tmp/.tmpOjOy10/prof.fdata.139341.fdata /tmp/.tmpOjOy10/prof.fdata.139362.fdata /tmp/.tmpOjOy10/prof.fdata.139368.fdata /tmp/.tmpOjOy10/prof.fdata.139373.fdata /tmp/.tmpOjOy10/prof.fdata.139386.fdata /tmp/.tmpOjOy10/prof.fdata.139392.fdata /tmp/.tmpOjOy10/prof.fdata.139401.fdata /tmp/.tmpOjOy10/prof.fdata.139413.fdata /tmp/.tmpOjOy10/prof.fdata.139415.fdata /tmp/.tmpOjOy10/prof.fdata.139417.fdata /tmp/.tmpOjOy10/prof.fdata.139428.fdata /tmp/.tmpOjOy10/prof.fdata.139437.fdata /tmp/.tmpOjOy10/prof.fdata.139453.fdata /tmp/.tmpOjOy10/prof.fdata.139458.fdata /tmp/.tmpOjOy10/prof.fdata.139465.fdata /tmp/.tmpOjOy10/prof.fdata.139473.fdata /tmp/.tmpOjOy10/prof.fdata.139478.fdata /tmp/.tmpOjOy10/prof.fdata.139480.fdata /tmp/.tmpOjOy10/prof.fdata.139483.fdata /tmp/.tmpOjOy10/prof.fdata.139503.fdata /tmp/.tmpOjOy10/prof.fdata.139512.fdata /tmp/.tmpOjOy10/prof.fdata.139534.fdata /tmp/.tmpOjOy10/prof.fdata.139539.fdata /tmp/.tmpOjOy10/prof.fdata.139544.fdata /tmp/.tmpOjOy10/prof.fdata.139563.fdata /tmp/.tmpOjOy10/prof.fdata.139571.fdata /tmp/.tmpOjOy10/prof.fdata.139577.fdata /tmp/.tmpOjOy10/prof.fdata.139586.fdata /tmp/.tmpOjOy10/prof.fdata.139596.fdata /tmp/.tmpOjOy10/prof.fdata.139597.fdata /tmp/.tmpOjOy10/prof.fdata.139603.fdata /tmp/.tmpOjOy10/prof.fdata.139610.fdata /tmp/.tmpOjOy10/prof.fdata.139621.fdata /tmp/.tmpOjOy10/prof.fdata.139635.fdata /tmp/.tmpOjOy10/prof.fdata.139649.fdata /tmp/.tmpOjOy10/prof.fdata.139661.fdata /tmp/.tmpOjOy10/prof.fdata.139669.fdata /tmp/.tmpOjOy10/prof.fdata.139674.fdata /tmp/.tmpOjOy10/prof.fdata.139679.fdata /tmp/.tmpOjOy10/prof.fdata.139694.fdata /tmp/.tmpOjOy10/prof.fdata.139699.fdata /tmp/.tmpOjOy10/prof.fdata.139700.fdata /tmp/.tmpOjOy10/prof.fdata.139713.fdata /tmp/.tmpOjOy10/prof.fdata.139718.fdata /tmp/.tmpOjOy10/prof.fdata.139727.fdata /tmp/.tmpOjOy10/prof.fdata.139745.fdata /tmp/.tmpOjOy10/prof.fdata.139758.fdata /tmp/.tmpOjOy10/prof.fdata.139761.fdata /tmp/.tmpOjOy10/prof.fdata.139771.fdata /tmp/.tmpOjOy10/prof.fdata.139777.fdata /tmp/.tmpOjOy10/prof.fdata.139779.fdata /tmp/.tmpOjOy10/prof.fdata.139802.fdata /tmp/.tmpOjOy10/prof.fdata.139808.fdata /tmp/.tmpOjOy10/prof.fdata.139817.fdata /tmp/.tmpOjOy10/prof.fdata.139819.fdata /tmp/.tmpOjOy10/prof.fdata.139828.fdata /tmp/.tmpOjOy10/prof.fdata.139830.fdata /tmp/.tmpOjOy10/prof.fdata.139840.fdata /tmp/.tmpOjOy10/prof.fdata.139851.fdata /tmp/.tmpOjOy10/prof.fdata.139861.fdata /tmp/.tmpOjOy10/prof.fdata.139871.fdata /tmp/.tmpOjOy10/prof.fdata.139875.fdata /tmp/.tmpOjOy10/prof.fdata.139879.fdata /tmp/.tmpOjOy10/prof.fdata.139886.fdata /tmp/.tmpOjOy10/prof.fdata.139897.fdata /tmp/.tmpOjOy10/prof.fdata.139905.fdata /tmp/.tmpOjOy10/prof.fdata.139910.fdata /tmp/.tmpOjOy10/prof.fdata.139915.fdata /tmp/.tmpOjOy10/prof.fdata.139929.fdata /tmp/.tmpOjOy10/prof.fdata.139939.fdata /tmp/.tmpOjOy10/prof.fdata.139945.fdata /tmp/.tmpOjOy10/prof.fdata.139949.fdata /tmp/.tmpOjOy10/prof.fdata.139955.fdata /tmp/.tmpOjOy10/prof.fdata.139957.fdata /tmp/.tmpOjOy10/prof.fdata.139958.fdata /tmp/.tmpOjOy10/prof.fdata.139984.fdata /tmp/.tmpOjOy10/prof.fdata.139988.fdata /tmp/.tmpOjOy10/prof.fdata.139998.fdata /tmp/.tmpOjOy10/prof.fdata.140004.fdata /tmp/.tmpOjOy10/prof.fdata.140008.fdata /tmp/.tmpOjOy10/prof.fdata.140016.fdata /tmp/.tmpOjOy10/prof.fdata.140021.fdata /tmp/.tmpOjOy10/prof.fdata.140028.fdata /tmp/.tmpOjOy10/prof.fdata.140031.fdata /tmp/.tmpOjOy10/prof.fdata.140038.fdata /tmp/.tmpOjOy10/prof.fdata.140045.fdata /tmp/.tmpOjOy10/prof.fdata.140057.fdata /tmp/.tmpOjOy10/prof.fdata.140064.fdata /tmp/.tmpOjOy10/prof.fdata.140070.fdata /tmp/.tmpOjOy10/prof.fdata.140078.fdata /tmp/.tmpOjOy10/prof.fdata.140083.fdata /tmp/.tmpOjOy10/prof.fdata.140085.fdata /tmp/.tmpOjOy10/prof.fdata.140089.fdata /tmp/.tmpOjOy10/prof.fdata.140098.fdata /tmp/.tmpOjOy10/prof.fdata.140102.fdata /tmp/.tmpOjOy10/prof.fdata.140117.fdata /tmp/.tmpOjOy10/prof.fdata.140121.fdata /tmp/.tmpOjOy10/prof.fdata.140134.fdata /tmp/.tmpOjOy10/prof.fdata.140136.fdata /tmp/.tmpOjOy10/prof.fdata.140158.fdata /tmp/.tmpOjOy10/prof.fdata.140162.fdata /tmp/.tmpOjOy10/prof.fdata.140164.fdata /tmp/.tmpOjOy10/prof.fdata.140170.fdata /tmp/.tmpOjOy10/prof.fdata.140174.fdata /tmp/.tmpOjOy10/prof.fdata.140178.fdata /tmp/.tmpOjOy10/prof.fdata.140190.fdata /tmp/.tmpOjOy10/prof.fdata.140196.fdata /tmp/.tmpOjOy10/prof.fdata.140199.fdata /tmp/.tmpOjOy10/prof.fdata.140219.fdata /tmp/.tmpOjOy10/prof.fdata.140223.fdata /tmp/.tmpOjOy10/prof.fdata.140227.fdata /tmp/.tmpOjOy10/prof.fdata.140233.fdata /tmp/.tmpOjOy10/prof.fdata.140242.fdata /tmp/.tmpOjOy10/prof.fdata.140246.fdata /tmp/.tmpOjOy10/prof.fdata.140255.fdata /tmp/.tmpOjOy10/prof.fdata.140262.fdata /tmp/.tmpOjOy10/prof.fdata.140268.fdata /tmp/.tmpOjOy10/prof.fdata.140276.fdata /tmp/.tmpOjOy10/prof.fdata.140283.fdata /tmp/.tmpOjOy10/prof.fdata.140286.fdata /tmp/.tmpOjOy10/prof.fdata.140292.fdata /tmp/.tmpOjOy10/prof.fdata.140293.fdata /tmp/.tmpOjOy10/prof.fdata.140302.fdata /tmp/.tmpOjOy10/prof.fdata.140304.fdata /tmp/.tmpOjOy10/prof.fdata.140319.fdata /tmp/.tmpOjOy10/prof.fdata.140324.fdata /tmp/.tmpOjOy10/prof.fdata.140329.fdata /tmp/.tmpOjOy10/prof.fdata.140336.fdata /tmp/.tmpOjOy10/prof.fdata.140348.fdata /tmp/.tmpOjOy10/prof.fdata.140359.fdata /tmp/.tmpOjOy10/prof.fdata.140367.fdata /tmp/.tmpOjOy10/prof.fdata.140373.fdata /tmp/.tmpOjOy10/prof.fdata.140388.fdata /tmp/.tmpOjOy10/prof.fdata.140410.fdata /tmp/.tmpOjOy10/prof.fdata.140423.fdata /tmp/.tmpOjOy10/prof.fdata.140425.fdata /tmp/.tmpOjOy10/prof.fdata.140431.fdata /tmp/.tmpOjOy10/prof.fdata.140435.fdata /tmp/.tmpOjOy10/prof.fdata.140448.fdata /tmp/.tmpOjOy10/prof.fdata.140455.fdata /tmp/.tmpOjOy10/prof.fdata.140460.fdata /tmp/.tmpOjOy10/prof.fdata.140470.fdata /tmp/.tmpOjOy10/prof.fdata.140480.fdata /tmp/.tmpOjOy10/prof.fdata.140489.fdata /tmp/.tmpOjOy10/prof.fdata.140513.fdata /tmp/.tmpOjOy10/prof.fdata.140519.fdata /tmp/.tmpOjOy10/prof.fdata.140529.fdata /tmp/.tmpOjOy10/prof.fdata.140536.fdata /tmp/.tmpOjOy10/prof.fdata.140541.fdata /tmp/.tmpOjOy10/prof.fdata.140545.fdata /tmp/.tmpOjOy10/prof.fdata.140578.fdata /tmp/.tmpOjOy10/prof.fdata.140611.fdata /tmp/.tmpOjOy10/prof.fdata.140624.fdata /tmp/.tmpOjOy10/prof.fdata.140629.fdata /tmp/.tmpOjOy10/prof.fdata.140867.fdata /tmp/.tmpOjOy10/prof.fdata.140962.fdata /tmp/.tmpOjOy10/prof.fdata.140988.fdata /tmp/.tmpOjOy10/prof.fdata.141044.fdata /tmp/.tmpOjOy10/prof.fdata.141062.fdata /tmp/.tmpOjOy10/prof.fdata.141099.fdata /tmp/.tmpOjOy10/prof.fdata.142612.fdata /tmp/.tmpOjOy10/prof.fdata.142623.fdata /tmp/.tmpOjOy10/prof.fdata.142700.fdata /tmp/.tmpOjOy10/prof.fdata.142732.fdata /tmp/.tmpOjOy10/prof.fdata.142791.fdata /tmp/.tmpOjOy10/prof.fdata.142966.fdata /tmp/.tmpOjOy10/prof.fdata.143035.fdata /tmp/.tmpOjOy10/prof.fdata.143129.fdata /tmp/.tmpOjOy10/prof.fdata.143604.fdata /tmp/.tmpOjOy10/prof.fdata.143616.fdata /tmp/.tmpOjOy10/prof.fdata.143625.fdata /tmp/.tmpOjOy10/prof.fdata.143630.fdata /tmp/.tmpOjOy10/prof.fdata.143643.fdata /tmp/.tmpOjOy10/prof.fdata.143648.fdata /tmp/.tmpOjOy10/prof.fdata.143652.fdata /tmp/.tmpOjOy10/prof.fdata.143660.fdata /tmp/.tmpOjOy10/prof.fdata.143691.fdata /tmp/.tmpOjOy10/prof.fdata.143743.fdata /tmp/.tmpOjOy10/prof.fdata.143756.fdata /tmp/.tmpOjOy10/prof.fdata.143766.fdata /tmp/.tmpOjOy10/prof.fdata.143776.fdata /tmp/.tmpOjOy10/prof.fdata.143787.fdata /tmp/.tmpOjOy10/prof.fdata.143798.fdata /tmp/.tmpOjOy10/prof.fdata.143824.fdata /tmp/.tmpOjOy10/prof.fdata.144090.fdata /tmp/.tmpOjOy10/prof.fdata.144357.fdata /tmp/.tmpOjOy10/prof.fdata.144624.fdata /tmp/.tmpOjOy10/prof.fdata.144666.fdata /tmp/.tmpOjOy10/prof.fdata.145188.fdata /tmp/.tmpOjOy10/prof.fdata.145455.fdata /tmp/.tmpOjOy10/prof.fdata.145729.fdata /tmp/.tmpOjOy10/prof.fdata.145730.fdata /tmp/.tmpOjOy10/prof.fdata.145731.fdata /tmp/.tmpOjOy10/prof.fdata.145735.fdata /tmp/.tmpOjOy10/prof.fdata.145736.fdata /tmp/.tmpOjOy10/prof.fdata.145737.fdata /tmp/.tmpOjOy10/prof.fdata.145744.fdata /tmp/.tmpOjOy10/prof.fdata.145745.fdata /tmp/.tmpOjOy10/prof.fdata.145746.fdata /tmp/.tmpOjOy10/prof.fdata.145765.fdata /tmp/.tmpOjOy10/prof.fdata.145775.fdata /tmp/.tmpOjOy10/prof.fdata.145785.fdata /tmp/.tmpOjOy10/prof.fdata.145796.fdata /tmp/.tmpOjOy10/prof.fdata.145807.fdata /tmp/.tmpOjOy10/prof.fdata.145819.fdata /tmp/.tmpOjOy10/prof.fdata.145832.fdata /tmp/.tmpOjOy10/prof.fdata.145844.fdata /tmp/.tmpOjOy10/prof.fdata.145856.fdata /tmp/.tmpOjOy10/prof.fdata.145874.fdata /tmp/.tmpOjOy10/prof.fdata.145875.fdata /tmp/.tmpOjOy10/prof.fdata.145876.fdata /tmp/.tmpOjOy10/prof.fdata.145880.fdata /tmp/.tmpOjOy10/prof.fdata.145881.fdata /tmp/.tmpOjOy10/prof.fdata.145882.fdata /tmp/.tmpOjOy10/prof.fdata.145889.fdata /tmp/.tmpOjOy10/prof.fdata.145890.fdata /tmp/.tmpOjOy10/prof.fdata.145891.fdata /tmp/.tmpOjOy10/prof.fdata.145910.fdata /tmp/.tmpOjOy10/prof.fdata.145911.fdata /tmp/.tmpOjOy10/prof.fdata.145912.fdata /tmp/.tmpOjOy10/prof.fdata.145913.fdata /tmp/.tmpOjOy10/prof.fdata.145914.fdata /tmp/.tmpOjOy10/prof.fdata.145915.fdata /tmp/.tmpOjOy10/prof.fdata.145916.fdata /tmp/.tmpOjOy10/prof.fdata.145917.fdata /tmp/.tmpOjOy10/prof.fdata.145918.fdata /tmp/.tmpOjOy10/prof.fdata.145919.fdata /tmp/.tmpOjOy10/prof.fdata.145920.fdata /tmp/.tmpOjOy10/prof.fdata.145921.fdata /tmp/.tmpOjOy10/prof.fdata.146014.fdata /tmp/.tmpOjOy10/prof.fdata.146018.fdata /tmp/.tmpOjOy10/prof.fdata.146022.fdata /tmp/.tmpOjOy10/prof.fdata.146028.fdata /tmp/.tmpOjOy10/prof.fdata.146029.fdata /tmp/.tmpOjOy10/prof.fdata.146034.fdata /tmp/.tmpOjOy10/prof.fdata.146038.fdata /tmp/.tmpOjOy10/prof.fdata.146039.fdata /tmp/.tmpOjOy10/prof.fdata.146045.fdata /tmp/.tmpOjOy10/prof.fdata.146052.fdata /tmp/.tmpOjOy10/prof.fdata.146054.fdata /tmp/.tmpOjOy10/prof.fdata.146068.fdata /tmp/.tmpOjOy10/prof.fdata.146095.fdata /tmp/.tmpOjOy10/prof.fdata.146099.fdata /tmp/.tmpOjOy10/prof.fdata.146111.fdata /tmp/.tmpOjOy10/prof.fdata.146172.fdata /tmp/.tmpOjOy10/prof.fdata.146176.fdata /tmp/.tmpOjOy10/prof.fdata.146180.fdata /tmp/.tmpOjOy10/prof.fdata.146258.fdata /tmp/.tmpOjOy10/prof.fdata.146268.fdata /tmp/.tmpOjOy10/prof.fdata.146278.fdata /tmp/.tmpOjOy10/prof.fdata.146289.fdata /tmp/.tmpOjOy10/prof.fdata.146300.fdata /tmp/.tmpOjOy10/prof.fdata.146311.fdata /tmp/.tmpOjOy10/prof.fdata.146366.fdata /tmp/.tmpOjOy10/prof.fdata.146422.fdata /tmp/.tmpOjOy10/prof.fdata.146478.fdata /tmp/.tmpOjOy10/prof.fdata.146490.fdata /tmp/.tmpOjOy10/prof.fdata.146550.fdata /tmp/.tmpOjOy10/prof.fdata.146586.fdata /tmp/.tmpOjOy10/prof.fdata.146628.fdata /tmp/.tmpOjOy10/prof.fdata.146629.fdata /tmp/.tmpOjOy10/prof.fdata.146630.fdata /tmp/.tmpOjOy10/prof.fdata.146634.fdata /tmp/.tmpOjOy10/prof.fdata.146635.fdata /tmp/.tmpOjOy10/prof.fdata.146636.fdata /tmp/.tmpOjOy10/prof.fdata.146643.fdata /tmp/.tmpOjOy10/prof.fdata.146644.fdata /tmp/.tmpOjOy10/prof.fdata.146645.fdata /tmp/.tmpOjOy10/prof.fdata.146664.fdata /tmp/.tmpOjOy10/prof.fdata.146674.fdata /tmp/.tmpOjOy10/prof.fdata.146684.fdata /tmp/.tmpOjOy10/prof.fdata.146695.fdata /tmp/.tmpOjOy10/prof.fdata.146706.fdata /tmp/.tmpOjOy10/prof.fdata.146717.fdata /tmp/.tmpOjOy10/prof.fdata.146729.fdata /tmp/.tmpOjOy10/prof.fdata.146741.fdata /tmp/.tmpOjOy10/prof.fdata.146753.fdata /tmp/.tmpOjOy10/prof.fdata.146771.fdata /tmp/.tmpOjOy10/prof.fdata.146772.fdata /tmp/.tmpOjOy10/prof.fdata.146773.fdata /tmp/.tmpOjOy10/prof.fdata.146777.fdata /tmp/.tmpOjOy10/prof.fdata.146778.fdata /tmp/.tmpOjOy10/prof.fdata.146779.fdata /tmp/.tmpOjOy10/prof.fdata.146786.fdata /tmp/.tmpOjOy10/prof.fdata.146787.fdata /tmp/.tmpOjOy10/prof.fdata.146788.fdata /tmp/.tmpOjOy10/prof.fdata.146807.fdata /tmp/.tmpOjOy10/prof.fdata.146817.fdata /tmp/.tmpOjOy10/prof.fdata.146827.fdata /tmp/.tmpOjOy10/prof.fdata.146838.fdata /tmp/.tmpOjOy10/prof.fdata.146849.fdata /tmp/.tmpOjOy10/prof.fdata.146862.fdata /tmp/.tmpOjOy10/prof.fdata.146876.fdata /tmp/.tmpOjOy10/prof.fdata.146888.fdata /tmp/.tmpOjOy10/prof.fdata.146904.fdata /tmp/.tmpOjOy10/prof.fdata.146924.fdata /tmp/.tmpOjOy10/prof.fdata.146925.fdata /tmp/.tmpOjOy10/prof.fdata.146926.fdata /tmp/.tmpOjOy10/prof.fdata.146930.fdata /tmp/.tmpOjOy10/prof.fdata.146931.fdata /tmp/.tmpOjOy10/prof.fdata.146932.fdata /tmp/.tmpOjOy10/prof.fdata.146939.fdata /tmp/.tmpOjOy10/prof.fdata.146940.fdata /tmp/.tmpOjOy10/prof.fdata.146941.fdata /tmp/.tmpOjOy10/prof.fdata.146951.fdata /tmp/.tmpOjOy10/prof.fdata.146952.fdata /tmp/.tmpOjOy10/prof.fdata.146953.fdata /tmp/.tmpOjOy10/prof.fdata.146990.fdata /tmp/.tmpOjOy10/prof.fdata.147000.fdata /tmp/.tmpOjOy10/prof.fdata.147010.fdata /tmp/.tmpOjOy10/prof.fdata.147021.fdata /tmp/.tmpOjOy10/prof.fdata.147035.fdata /tmp/.tmpOjOy10/prof.fdata.147053.fdata /tmp/.tmpOjOy10/prof.fdata.147072.fdata /tmp/.tmpOjOy10/prof.fdata.147087.fdata /tmp/.tmpOjOy10/prof.fdata.147106.fdata /tmp/.tmpOjOy10/prof.fdata.147129.fdata /tmp/.tmpOjOy10/prof.fdata.147130.fdata /tmp/.tmpOjOy10/prof.fdata.147131.fdata /tmp/.tmpOjOy10/prof.fdata.147135.fdata /tmp/.tmpOjOy10/prof.fdata.147136.fdata /tmp/.tmpOjOy10/prof.fdata.147137.fdata /tmp/.tmpOjOy10/prof.fdata.147144.fdata /tmp/.tmpOjOy10/prof.fdata.147145.fdata /tmp/.tmpOjOy10/prof.fdata.147146.fdata /tmp/.tmpOjOy10/prof.fdata.147165.fdata /tmp/.tmpOjOy10/prof.fdata.147175.fdata /tmp/.tmpOjOy10/prof.fdata.147185.fdata /tmp/.tmpOjOy10/prof.fdata.147196.fdata /tmp/.tmpOjOy10/prof.fdata.147207.fdata /tmp/.tmpOjOy10/prof.fdata.147221.fdata /tmp/.tmpOjOy10/prof.fdata.147239.fdata /tmp/.tmpOjOy10/prof.fdata.147258.fdata /tmp/.tmpOjOy10/prof.fdata.147277.fdata /tmp/.tmpOjOy10/prof.fdata.147292.fdata /tmp/.tmpOjOy10/prof.fdata.147311.fdata /tmp/.tmpOjOy10/prof.fdata.147328.fdata > "/tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata" [at /checkout/obj]`
Profile from 641 files merged.
[2024-04-30T16:53:26.517Z INFO  opt_dist::training] rustc BOLT statistics
[2024-04-30T16:53:26.517Z INFO  opt_dist::training] /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata: 163.08 MiB
##[endgroup]
---
failures:

---- [ui] tests/ui/runtime/no-allocation-before-main.rs stdout ----

error: test run failed!
status: signal: 6 (SIGABRT) (core dumped)
command: cd "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/runtime/no-allocation-before-main" && RUST_TEST_THREADS="16" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/runtime/no-allocation-before-main/a"
--- stdout -------------------------------
   0: <no_allocation_before_main::aux::AbortingAllocator as core::alloc::global::GlobalAlloc>::alloc
   2: std::thread::set_current
   3: std::rt::lang_start_internal
   4: main
   5: __libc_start_main
---
    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.81/src/error.rs:83:36
   1: <opt_dist::exec::CmdBuilder>::run
             at /rustc/ec82acebc42195553b13756c97c068f940651bc0/src/tools/opt-dist/src/exec.rs:78:17
             at /rustc/ec82acebc42195553b13756c97c068f940651bc0/src/tools/opt-dist/src/tests.rs:104:5
   3: opt_dist::execute_pipeline::{closure#5}
             at /rustc/ec82acebc42195553b13756c97c068f940651bc0/src/tools/opt-dist/src/main.rs:335:40
             at /rustc/ec82acebc42195553b13756c97c068f940651bc0/src/tools/opt-dist/src/main.rs:335:40
   4: <opt_dist::timer::TimerSection>::section::<opt_dist::execute_pipeline::{closure#5}, ()>
             at /rustc/ec82acebc42195553b13756c97c068f940651bc0/src/tools/opt-dist/src/timer.rs:111:22
   5: opt_dist::execute_pipeline
             at /rustc/ec82acebc42195553b13756c97c068f940651bc0/src/tools/opt-dist/src/main.rs:335:9
             at /rustc/ec82acebc42195553b13756c97c068f940651bc0/src/tools/opt-dist/src/main.rs:386:18
   7: <fn() -> core::result::Result<(), anyhow::Error> as core::ops::function::FnOnce<()>>::call_once
             at /rustc/efd9d2df12b5e17fac0b4d0fb89f612ecd79f259/library/core/src/ops/function.rs:250:5
   8: std::sys_common::backtrace::__rust_begin_short_backtrace::<fn() -> core::result::Result<(), anyhow::Error>, core::result::Result<(), anyhow::Error>>
   8: std::sys_common::backtrace::__rust_begin_short_backtrace::<fn() -> core::result::Result<(), anyhow::Error>, core::result::Result<(), anyhow::Error>>
             at /rustc/efd9d2df12b5e17fac0b4d0fb89f612ecd79f259/library/std/src/sys_common/backtrace.rs:155:18
   9: std::rt::lang_start::<core::result::Result<(), anyhow::Error>>::{closure#0}
             at /rustc/efd9d2df12b5e17fac0b4d0fb89f612ecd79f259/library/std/src/rt.rs:166:18
  10: core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once
  11: std::panicking::try::do_call
             at /rustc/efd9d2df12b5e17fac0b4d0fb89f612ecd79f259/library/std/src/panicking.rs:552:40
  12: std::panicking::try
             at /rustc/efd9d2df12b5e17fac0b4d0fb89f612ecd79f259/library/std/src/panicking.rs:516:19

@bors
Copy link
Contributor

bors commented Apr 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 Apr 30, 2024
@workingjubilee
Copy link
Contributor

I'm so sorry?

@Nilstrieb
Copy link
Member

Nilstrieb commented Apr 30, 2024

good luck @GnomedDev , looks like the debuginfo does not like you today, probably overriden by compiletest despite the flag?

@GnomedDev
Copy link
Contributor Author

Should I just kill the test for now and try getting it merged separately?

@workingjubilee
Copy link
Contributor

0: anyhow::Error::msg::alloc::string::String
at /rust/deps/anyhow-1.0.81/src/error.rs:83:36

somewhat baffled here...

@GnomedDev
Copy link
Contributor Author

Isn't that the error from the test runner, not the actual test?

@Nilstrieb
Copy link
Member

Should I just kill the test for now and try getting it merged separately?

I am not comfortable merging this with a failing test like that. I'd recommend running the docker image yourself locally and adding interactive prompts with bash into it to try to debug what's going on.

@fmease
Copy link
Member

fmease commented May 3, 2024

(sync)
@bors r-

@bors bors added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels May 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet