Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Rollup of 5 pull requests #116563

Closed
wants to merge 97 commits into from

Conversation

matthiaskrgr
Copy link
Member

Successful merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

eduardosm and others added 30 commits September 5, 2023 20:06
Those were removed from stdarch in rust-lang/stdarch#1463 (`<*mut _>::write_unaligned` is used instead)
…ediate intrinsics

Those were removed from stdarch in rust-lang/stdarch#1463 (`simd_shl` and `simd_shr` are used instead)
…dtwco,bjorn3

Update stdarch submodule and remove special handling in cranelift codegen for some AVX and SSE2 LLVM intrinsics

rust-lang/stdarch#1463 reimplemented some x86 intrinsics to avoid using some x86-specific LLVM intrinsics:

* Store unaligned (`_mm*_storeu_*`) use `<*mut _>::write_unaligned` instead of `llvm.x86.*.storeu.*`.
* Shift by immediate (`_mm*_s{ll,rl,ra}i_epi*`) use `if` (srl, sll) or `min` (sra) to simulate the behaviour when the RHS is out of range. RHS is constant, so the `if`/`min` will be optimized away.

This PR updates the stdarch submodule to pull these changes and removes special handling for those LLVM intrinsics from cranelift codegen. I left gcc codegen untouched because there are some autogenerated lists.
…orn3

Sync rustc_codegen_cranelift

Not much changed this time. Mostly doing this sync to make it easier to run the entire test suite on the in-tree version.

r? `@ghost`

`@rustbot` label +A-codegen +A-cranelift +T-compiler
Use `Freeze` for `SourceFile`

This uses the `Freeze` type in `SourceFile` to let accessing `external_src` and `lines` be lock-free.

Behavior of `add_external_src` is changed to set `ExternalSourceKind::AbsentErr` on a hash mismatch which matches the documentation. `ExternalSourceKind::Unneeded` was removed as it's unused.

Based on rust-lang#115401.
Remove `verbose_generic_activity_with_arg`

This removes `verbose_generic_activity_with_arg` and changes users to `generic_activity_with_arg`. This keeps the output of `-Z time` readable while these repeated events are still available with the self profiling mechanism.
…iser

add helper method for finding the one non-1-ZST field
Signed-off-by: onur-ozkan <work@onurozkan.dev>
organize import sections with rustfmt `group_imports`
also share the code that emits the actual error
nnethercote and others added 11 commits October 9, 2023 14:06
The assertion in `assert-long-condition.rs` used to be fail like this, all on
one line:
```
thread 'main' panicked at 'assertion failed: 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18\n                                + 19 + 20 + 21 + 22 + 23 + 24 + 25 == 0', tests/ui/macros/assert-long-condition.rs:7:5
```
The `\n` and subsequent indent is because the condition is pretty-printed, and
the pretty-printer inserts a newline. Printing the newline in this way is
arguably reasonable given that the message appears within single quotes, which
is very similar to a string literal.

However, after the assertion printing improvements that were released in 1.73,
the assertion now fails like this:
```
thread 'main' panicked at tests/ui/macros/assert-long-condition.rs:7:5:
assertion failed: 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18\n                                + 19 + 20 + 21 + 22 + 23 + 24 + 25 == 0
```
Now that there are no single quotes around the pretty-printed condition, the
`\n` is quite strange.

This commit gets rid of the `\n`, by removing the `escape_debug` done on the
pretty-printed message. This results in the following:
```
thread 'main' panicked at tests/ui/macros/assert-long-condition.rs:7:5:
assertion failed: 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18
                                + 19 + 20 + 21 + 22 + 23 + 24 + 25 == 0
```
The overly-large indent is still strange, but that's a separate pretty-printing issue.

This change helps with rust-lang#108341.
…piler-errors

improve the suggestion of `generic_bound_failure`

- Fixes rust-lang#115375
- suggest the bound in the correct scope: trait or impl header vs assoc item. See `tests/ui/suggestions/lifetimes/type-param-bound-scope.rs`
- don't suggest a lifetime name that conflicts with the other late-bound regions of the function:
```rust
type Inv<'a> = *mut &'a ();
fn check_bound<'a, T: 'a>(_: T, _: Inv<'a>) {}
fn test<'a, T>(_: &'a str, t: T, lt: Inv<'_>) { // suggests a new name `'a`
    check_bound(t, lt); //~ ERROR
}
```
…ompiler-errors

Fix suggestion span involving wrongly placed generic arg on variant

Fixes rust-lang#116473

The span computation was wrong. It went from the end of the variant to the end of the (wrongly placed) args. However, the variant lived in a different expansion and this resulted in a nonsensical span that overlaps with another and thereby leads to the ICE.

In the fix I've changed span computation to not be based on the location of the variant, but purely on the location of the args. I simply extend the start of the args span 2 positions to the left and that includes the `::` and that's all we need apparently.

This approach produces a correct span regardless of which macro/expansion the args reside in and where the variant is.
In smir `find_crates` returns `Vec<Crate>` instead of `Option<Crate>`

Addresses rust-lang/project-stable-mir#40

r? `@oli-obk`
… r=matthewjasper

Improve handling of assertion failures with very long conditions

It's not perfectly clear what the best behaviour is here, but I think this is an improvement.

r? `@matthewjasper`
cc `@m-ou-se`
…bjorn3

Sync rustc_codegen_cranelift

The highlights this time are improved simd and inline asm support, `is_x86_feature_detected!()` returning the actual cpu features when inline asm support is enabled and a couple of bug fixes.

r? `@ghost`

`@rustbot` label +A-codegen +A-cranelift +T-compiler +subtree-sync
@rustbot rustbot added A-testsuite Area: The testsuite used to check the correctness of rustc S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. rollup A PR which is a rollup labels Oct 9, 2023
@matthiaskrgr
Copy link
Member Author

@bors r+ rollup=never p=5

@bors
Copy link
Contributor

bors commented Oct 9, 2023

📌 Commit 33b894c has been approved by matthiaskrgr

It is now in the queue for this repository.

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

bors commented Oct 9, 2023

⌛ Testing commit 33b894c with merge 95049a4...

bors added a commit to rust-lang-ci/rust that referenced this pull request Oct 9, 2023
…iaskrgr

Rollup of 5 pull requests

Successful merges:

 - rust-lang#115882 (improve the suggestion of `generic_bound_failure`)
 - rust-lang#116537 (Fix suggestion span involving wrongly placed generic arg on variant)
 - rust-lang#116543 (In smir `find_crates` returns `Vec<Crate>` instead of `Option<Crate>`)
 - rust-lang#116548 (Improve handling of assertion failures with very long conditions)
 - rust-lang#116556 (Sync rustc_codegen_cranelift)

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

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

Click to see the possible cause of the failure (guessed by this bot)
[2023-10-09T12:02:44Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:02:44Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:02:44Z DEBUG collector::execute] cd "/tmp/.tmpQecK1q" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpQecK1q#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:02:45Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-10-09T12:02:45Z DEBUG collector::execute] cd "/tmp/.tmpQecK1q" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpQecK1q#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpQecK1q/incremental-state"
[2023-10-09T12:02:46Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:02:46Z DEBUG collector::execute] cd "/tmp/.tmpQecK1q" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpQecK1q#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpQecK1q/incremental-state"
[2023-10-09T12:02:46Z DEBUG collector::benchmark::patch] applying println to "/tmp/.tmpQecK1q"
[2023-10-09T12:02:46Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2023-10-09T12:02:46Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2023-10-09T12:02:46Z DEBUG collector::execute] cd "/tmp/.tmpQecK1q" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpQecK1q#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpQecK1q/incremental-state"
[2023-10-09T12:02:47Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:02:47Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-10-09T12:02:47Z DEBUG collector::execute] cd "/tmp/.tmpw1fvkM" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpw1fvkM#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:02:48Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
[2023-10-09T12:03:37Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:03:38Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:03:38Z DEBUG collector::execute] cd "/tmp/.tmpO7RVsl" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpO7RVsl#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:03:45Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-10-09T12:03:45Z DEBUG collector::execute] cd "/tmp/.tmpO7RVsl" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpO7RVsl#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpO7RVsl/incremental-state"
[2023-10-09T12:03:54Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:03:54Z DEBUG collector::execute] cd "/tmp/.tmpO7RVsl" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpO7RVsl#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpO7RVsl/incremental-state"
[2023-10-09T12:03:55Z DEBUG collector::benchmark::patch] applying println to "/tmp/.tmpO7RVsl"
[2023-10-09T12:03:55Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2023-10-09T12:03:55Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2023-10-09T12:03:55Z DEBUG collector::execute] cd "/tmp/.tmpO7RVsl" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpO7RVsl#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpO7RVsl/incremental-state"
[2023-10-09T12:03:57Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:03:58Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:03:58Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:03:58Z DEBUG collector::execute] cd "/tmp/.tmpQrNFhE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpQrNFhE#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:04:19Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-10-09T12:04:19Z DEBUG collector::execute] cd "/tmp/.tmpQrNFhE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpQrNFhE#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpQrNFhE/incremental-state"
[2023-10-09T12:04:43Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:04:43Z DEBUG collector::execute] cd "/tmp/.tmpQrNFhE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpQrNFhE#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpQrNFhE/incremental-state"
[2023-10-09T12:04:47Z DEBUG collector::benchmark::patch] applying println to "/tmp/.tmpQrNFhE"
[2023-10-09T12:04:47Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2023-10-09T12:04:47Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2023-10-09T12:04:47Z DEBUG collector::execute] cd "/tmp/.tmpQrNFhE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpQrNFhE#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpQrNFhE/incremental-state"
[2023-10-09T12:04:51Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:04:51Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-10-09T12:04:51Z DEBUG collector::execute] cd "/tmp/.tmp7C291g" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp7C291g#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:05:26Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
Preparing ctfe-stress-5
[2023-10-09T12:06:12Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:06:12Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-10-09T12:06:12Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-10-09T12:06:12Z DEBUG collector::execute] cd "/tmp/.tmpwdbdwE" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpwdbdwE#ctfe-stress-5@0.1.0" "--" "--skip-this-rustc"
[2023-10-09T12:06:12Z DEBUG collector::execute] cd "/tmp/.tmp7ycXrZ" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp7ycXrZ#ctfe-stress-5@0.1.0" "--release" "--" "--skip-this-rustc"
[2023-10-09T12:06:12Z DEBUG collector::execute] cd "/tmp/.tmpuXb1OK" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpuXb1OK#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2023-10-09T12:06:12Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:06:12Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:06:12Z DEBUG collector::execute] cd "/tmp/.tmpAK9wRW" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpAK9wRW#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:06:16Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
---
[2023-10-09T12:06:30Z DEBUG collector::execute] cd "/tmp/.tmpjpiS5n" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpjpiS5n#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpjpiS5n/incremental-state"
Running ctfe-stress-5: Opt + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2023-10-09T12:06:31Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:06:31Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-10-09T12:06:31Z DEBUG collector::execute] cd "/tmp/.tmpdsyzSY" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpdsyzSY#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:06:35Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-10-09T12:06:35Z DEBUG collector::execute] cd "/tmp/.tmpdsyzSY" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpdsyzSY#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpdsyzSY/incremental-state"
[2023-10-09T12:06:39Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:06:39Z DEBUG collector::execute] cd "/tmp/.tmpdsyzSY" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpdsyzSY#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpdsyzSY/incremental-state"
Executing benchmark diesel-1.4.8 (4/8)
Preparing diesel-1.4.8
[2023-10-09T12:06:39Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-10-09T12:06:39Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:06:39Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:06:39Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-10-09T12:06:39Z DEBUG collector::execute] cd "/tmp/.tmpWnuoaK" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpWnuoaK#diesel@1.4.8" "--release" "--" "--skip-this-rustc"
[2023-10-09T12:06:39Z DEBUG collector::execute] cd "/tmp/.tmpZUAT2n" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpZUAT2n#diesel@1.4.8" "--profile" "check" "--" "--skip-this-rustc"
[2023-10-09T12:06:39Z DEBUG collector::execute] cd "/tmp/.tmp7CJQEb" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp7CJQEb#diesel@1.4.8" "--" "--skip-this-rustc"
[2023-10-09T12:06:48Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:06:48Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:06:48Z DEBUG collector::execute] cd "/tmp/.tmp2MvvyU" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp2MvvyU#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:06:54Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
---
[2023-10-09T12:07:19Z DEBUG collector::execute] cd "/tmp/.tmphL60up" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmphL60up#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmphL60up/incremental-state"
Running diesel-1.4.8: Opt + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2023-10-09T12:07:21Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:07:21Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-10-09T12:07:21Z DEBUG collector::execute] cd "/tmp/.tmpomRDRo" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpomRDRo#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:07:28Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:28Z DEBUG collector::execute] cd "/tmp/.tmpomRDRo" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpomRDRo#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpomRDRo/incremental-state"
[2023-10-09T12:07:36Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:07:36Z DEBUG collector::execute] cd "/tmp/.tmpomRDRo" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpomRDRo#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpomRDRo/incremental-state"
[2023-10-09T12:07:38Z DEBUG collector::benchmark::patch] applying println to "/tmp/.tmpomRDRo"
[2023-10-09T12:07:38Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2023-10-09T12:07:38Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2023-10-09T12:07:38Z DEBUG collector::execute] cd "/tmp/.tmpomRDRo" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpomRDRo#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpomRDRo/incremental-state"
Executing benchmark externs (5/8)
Preparing externs
[2023-10-09T12:07:39Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:07:39Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
---
[2023-10-09T12:07:40Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:07:40Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:07:40Z DEBUG collector::execute] cd "/tmp/.tmpKcvfqW" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpKcvfqW#externs@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:07:40Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:40Z DEBUG collector::execute] cd "/tmp/.tmpKcvfqW" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpKcvfqW#externs@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpKcvfqW/incremental-state"
[2023-10-09T12:07:41Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:07:41Z DEBUG collector::execute] cd "/tmp/.tmpKcvfqW" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpKcvfqW#externs@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpKcvfqW/incremental-state"
[2023-10-09T12:07:41Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:07:41Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-10-09T12:07:41Z DEBUG collector::execute] cd "/tmp/.tmp4NRB5A" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp4NRB5A#externs@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:07:41Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:41Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:41Z DEBUG collector::execute] cd "/tmp/.tmp4NRB5A" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp4NRB5A#externs@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp4NRB5A/incremental-state"
[2023-10-09T12:07:41Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:07:41Z DEBUG collector::execute] cd "/tmp/.tmp4NRB5A" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp4NRB5A#externs@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp4NRB5A/incremental-state"
Executing benchmark match-stress (6/8)
Preparing match-stress
[2023-10-09T12:07:42Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:07:42Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-10-09T12:07:42Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-10-09T12:07:42Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-10-09T12:07:42Z DEBUG collector::execute] cd "/tmp/.tmpxPgarl" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpxPgarl#match-stress@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2023-10-09T12:07:42Z DEBUG collector::execute] cd "/tmp/.tmp916oUl" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp916oUl#match-stress@0.1.0" "--" "--skip-this-rustc"
[2023-10-09T12:07:42Z DEBUG collector::execute] cd "/tmp/.tmpaSrfLN" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpaSrfLN#match-stress@0.1.0" "--release" "--" "--skip-this-rustc"
[2023-10-09T12:07:42Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:07:42Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:07:42Z DEBUG collector::execute] cd "/tmp/.tmpzDdSWG" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpzDdSWG#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:07:43Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:43Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:43Z DEBUG collector::execute] cd "/tmp/.tmpzDdSWG" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpzDdSWG#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpzDdSWG/incremental-state"
[2023-10-09T12:07:44Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:07:44Z DEBUG collector::execute] cd "/tmp/.tmpzDdSWG" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpzDdSWG#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpzDdSWG/incremental-state"
[2023-10-09T12:07:44Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:07:44Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:07:44Z DEBUG collector::execute] cd "/tmp/.tmpglJivu" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpglJivu#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:07:45Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:45Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:45Z DEBUG collector::execute] cd "/tmp/.tmpglJivu" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpglJivu#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpglJivu/incremental-state"
[2023-10-09T12:07:46Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:07:46Z DEBUG collector::execute] cd "/tmp/.tmpglJivu" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpglJivu#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpglJivu/incremental-state"
[2023-10-09T12:07:47Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:07:47Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-10-09T12:07:47Z DEBUG collector::execute] cd "/tmp/.tmpwF1dvC" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpwF1dvC#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:07:48Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:48Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:48Z DEBUG collector::execute] cd "/tmp/.tmpwF1dvC" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpwF1dvC#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpwF1dvC/incremental-state"
[2023-10-09T12:07:49Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:07:49Z DEBUG collector::execute] cd "/tmp/.tmpwF1dvC" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpwF1dvC#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpwF1dvC/incremental-state"
Executing benchmark token-stream-stress (7/8)
Preparing token-stream-stress
[2023-10-09T12:07:49Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-10-09T12:07:49Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:07:49Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:07:49Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-10-09T12:07:50Z DEBUG collector::execute] cd "/tmp/.tmpk7vnoO" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpk7vnoO#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2023-10-09T12:07:50Z DEBUG collector::execute] cd "/tmp/.tmpUYJB1U" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpUYJB1U#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2023-10-09T12:07:50Z DEBUG collector::execute] cd "/tmp/.tmpCD2y11" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpCD2y11#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2023-10-09T12:07:50Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:07:50Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:07:50Z DEBUG collector::execute] cd "/tmp/.tmpDUWn0m" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpDUWn0m#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:07:50Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:50Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:50Z DEBUG collector::execute] cd "/tmp/.tmpDUWn0m" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpDUWn0m#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpDUWn0m/incremental-state"
[2023-10-09T12:07:50Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:07:50Z DEBUG collector::execute] cd "/tmp/.tmpDUWn0m" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpDUWn0m#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpDUWn0m/incremental-state"
Running token-stream-stress: Debug + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2023-10-09T12:07:50Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:07:50Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:07:50Z DEBUG collector::execute] cd "/tmp/.tmpXKqHLg" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpXKqHLg#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:07:50Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:50Z DEBUG collector::execute] cd "/tmp/.tmpXKqHLg" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpXKqHLg#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpXKqHLg/incremental-state"
[2023-10-09T12:07:50Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:07:50Z DEBUG collector::execute] cd "/tmp/.tmpXKqHLg" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpXKqHLg#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpXKqHLg/incremental-state"
[2023-10-09T12:07:50Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:07:50Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-10-09T12:07:50Z DEBUG collector::execute] cd "/tmp/.tmpSQcHx4" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpSQcHx4#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:07:51Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
[2023-10-09T12:07:51Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:07:51Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:07:51Z DEBUG collector::execute] cd "/tmp/.tmpZc4KoL" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpZc4KoL#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:07:53Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2023-10-09T12:07:53Z DEBUG collector::execute] cd "/tmp/.tmpZc4KoL" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpZc4KoL#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpZc4KoL/incremental-state"
[2023-10-09T12:07:55Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:07:55Z DEBUG collector::execute] cd "/tmp/.tmpZc4KoL" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpZc4KoL#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpZc4KoL/incremental-state"
[2023-10-09T12:07:55Z DEBUG collector::benchmark::patch] applying new row to "/tmp/.tmpZc4KoL"
[2023-10-09T12:07:55Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" })
[2023-10-09T12:07:55Z INFO  collector::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" })
[2023-10-09T12:07:55Z DEBUG collector::execute] cd "/tmp/.tmpZc4KoL" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpZc4KoL#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpZc4KoL/incremental-state"
[2023-10-09T12:07:57Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:07:57Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:07:57Z DEBUG collector::execute] cd "/tmp/.tmpAG4Yd8" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpAG4Yd8#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:07:59Z INFO  collector::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
---
[2023-10-09T12:08:04Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:08:04Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-10-09T12:08:04Z DEBUG collector::execute] cd "/tmp/.tmpcCVJkE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpcCVJkE#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:08:06Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2023-10-09T12:08:06Z DEBUG collector::execute] cd "/tmp/.tmpcCVJkE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpcCVJkE#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpcCVJkE/incremental-state"
[2023-10-09T12:08:08Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2023-10-09T12:08:08Z DEBUG collector::execute] cd "/tmp/.tmpcCVJkE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpcCVJkE#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpcCVJkE/incremental-state"
[2023-10-09T12:08:09Z DEBUG collector::benchmark::patch] applying new row to "/tmp/.tmpcCVJkE"
[2023-10-09T12:08:09Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" })
[2023-10-09T12:08:09Z INFO  collector::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" })
[2023-10-09T12:08:09Z DEBUG collector::execute] cd "/tmp/.tmpcCVJkE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpcCVJkE#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpcCVJkE/incremental-state"
[2023-10-09T12:08:11.351Z INFO  opt_dist::training] Merging Rustc PGO profiles to /tmp/tmp-multistage/opt-artifacts/rustc-pgo.profdata
[2023-10-09T12:08:11.351Z INFO  opt_dist::exec] Executing `/checkout/obj/build/x86_64-unknown-linux-gnu/llvm/build/bin/llvm-profdata merge -o /tmp/tmp-multistage/opt-artifacts/rustc-pgo.profdata /tmp/tmp-multistage/opt-artifacts/rustc-pgo [at /checkout/obj]`
##[endgroup]
[2023-10-09T12:08:22.300Z INFO  opt_dist::training] Rustc PGO statistics
---
[RUSTC-TIMING] tracing_log test:false 1.384
   Compiling rustc_ast v0.0.0 (/checkout/compiler/rustc_ast)
[RUSTC-TIMING] serde_json test:false 3.290
   Compiling rustc_error_messages v0.0.0 (/checkout/compiler/rustc_error_messages)
warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtB4_6option6OptionINtNtCsemrkInvIJKG_5alloc3vec3VecNtCscKJQijBGP8h_10stable_mir6OpaqueEEEB1B_ Hash = 1096621589489675600 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtB4_6option6OptionNtNtCscKJQijBGP8h_10stable_mir2ty10GenericDefEEB16_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtB4_6option6OptionNtNtCscKJQijBGP8h_10stable_mir2ty4SpanEEB16_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtB4_6option6OptionNtNtNtCscKJQijBGP8h_10stable_mir3mir4body5PlaceEEB18_ Hash = 1063705161908944610 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtB4_6option6OptionNtNtNtCscKJQijBGP8h_10stable_mir3mir4body7OperandEEB18_ Hash = 784007056844089447 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtB4_6option6OptionjEECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCscKJQijBGP8h_10stable_mir2ty6BinderNtBJ_20ExistentialPredicateEEBL_ Hash = 238984481941143025 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecINtNtB4_6option6OptionhEEECscKJQijBGP8h_10stable_mir Hash = 679210745886084866 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecINtNtCscKJQijBGP8h_10stable_mir2ty6BinderNtB1g_20ExistentialPredicateEEEB1i_ Hash = 135188634562680690 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtCscKJQijBGP8h_10stable_mir2ty14GenericArgKindEEB1h_ Hash = 135188634562680690 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtCscKJQijBGP8h_10stable_mir2ty15GenericParamDefEEB1h_ Hash = 798733566801274259 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtCscKJQijBGP8h_10stable_mir2ty17BoundVariableKindEEB1h_ Hash = 135188634562680690 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtCscKJQijBGP8h_10stable_mir2ty2TyEEB1h_ Hash = 784007056844089447 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body10BasicBlockEEB1j_ Hash = 135188634562680690 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body12SwitchTargetEEB1j_ Hash = 784007056844089447 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body16InlineAsmOperandEEB1j_ Hash = 135188634562680690 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body7OperandEEB1j_ Hash = 135188634562680690 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body9StatementEEB1j_ Hash = 135188634562680690 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecTNtNtCscKJQijBGP8h_10stable_mir2ty10GenericDefmEEEB1i_ Hash = 784007056844089447 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNvNtCs5Qntoa8xDtv_3std9panicking11begin_panic7PayloadReEECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty10BrNamedDefEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty10ClosureDefEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty10GenericDefEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty11GenericArgsEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty12ConstantKindEBK_ Hash = 1111451245941089747 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty12GeneratorDefEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty13ProvenanceMapEBK_ Hash = 784007056844089447 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty14GenericArgKindEBK_ Hash = 1063705158850053342 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty17BoundVariableKindEBK_ Hash = 928018417390613361 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty20ExistentialPredicateEBK_ Hash = 753202733034588215 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty23TraitSpecializationKindEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty2TyEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty4SpanEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty5ConstEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty5FnDefEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty5FnSigEBK_ Hash = 784007056844089447 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty6AdtDefEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty6RegionEBK_ Hash = 93478049729719886 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty6TyKindEBK_ Hash = 709651041435277889 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty7AliasTyEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty8AliasDefEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty8ConstDefEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty8ParamDefEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty8TermKindEBK_ Hash = 784007056844089447 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty8TraitDefEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty8TraitRefEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty9AliasKindEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty9RegionDefEBK_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCsemrkInvIJKG_5alloc6string6StringECscKJQijBGP8h_10stable_mir Hash = 784007056844089447 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body10BasicBlockEBM_ Hash = 238984481941143025 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body10BorrowKindEBM_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body10MutabilityEBM_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body13AggregateKindEBM_ Hash = 607699197744924154 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body13AssertMessageEBM_ Hash = 647472252099359144 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body13FakeReadCauseEBM_ Hash = 844982797501036650 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body13StatementKindEBM_ Hash = 888579791630379082 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body14TerminatorKindEBM_ Hash = 44612227720851332 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body16InlineAsmOperandEBM_ Hash = 650973719552161433 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body18UserTypeProjectionEBM_ Hash = 784007056844089447 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body4UnOpEBM_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body5BinOpEBM_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body5PlaceEBM_ Hash = 784007056844089447 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body6NullOpEBM_ Hash = 1063705161908944610 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body6RvalueEBM_ Hash = 338375135799920213 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body6SafetyEBM_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body7OperandEBM_ Hash = 798733564832300476 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body8CastKindEBM_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body9RetagKindEBM_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtB4_6option6OptionhEECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtB4_6option6OptionjEECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtB4_6option6OptionmEECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtCscKJQijBGP8h_10stable_mir2ty11PlaceholderNtBK_11BoundRegionEEBM_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtCscKJQijBGP8h_10stable_mir2ty17OutlivesPredicateNtBK_2TyNtBK_6RegionEEBM_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtCscKJQijBGP8h_10stable_mir2ty17OutlivesPredicateNtBK_6RegionB1y_EEBM_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtCscKJQijBGP8h_10stable_mir2ty6BinderNtBK_20ExistentialPredicateEEBM_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtCscKJQijBGP8h_10stable_mir2ty6BinderNtBK_5FnSigEEBM_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtCsemrkInvIJKG_5alloc3vec3VecNtCscKJQijBGP8h_10stable_mir6OpaqueEEB1g_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtCscKJQijBGP8h_10stable_mir2ty14GenericArgKindEEB1i_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtCscKJQijBGP8h_10stable_mir2ty17BoundVariableKindEEB1i_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtCscKJQijBGP8h_10stable_mir2ty2TyEEB1i_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body7OperandEEB1k_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body9LocalDeclEEB1k_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtCsemrkInvIJKG_5alloc3vec3VecTjNtNtCscKJQijBGP8h_10stable_mir2ty4ProvEEEB1k_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtCsemrkInvIJKG_5alloc3vec3VecjEECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtCscKJQijBGP8h_10stable_mir5DefIdEBJ_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtCscKJQijBGP8h_10stable_mir6OpaqueEBJ_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtCscKJQijBGP8h_10stable_mir7AllocIdEBJ_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtCscKJQijBGP8h_10stable_mir9CrateItemEBJ_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty10AllocationEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty10ClauseKindEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty10ForeignDefEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty10GenericDefEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty10MovabilityEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty10ParamConstEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty10RegionKindEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty11BoundRegionEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty11BoundTyKindEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty11ClosureKindEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty11GenericArgsEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty12ImplPolarityEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty14GenericArgKindEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty14TraitPredicateEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty15BoundRegionKindEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty15CoercePredicateEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty15GenericParamDefEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty16EarlyBoundRegionEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty16SubtypePredicateEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty16UnevaluatedConstEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty17BoundVariableKindEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty19ExistentialTraitRefEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty19GenericParamDefKindEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty19ProjectionPredicateEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty21ExistentialProjectionEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty22AliasRelationDirectionEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty2TyEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty3AbiEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty4ProvEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty4SpanEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty5ConstEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty5IntTyEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty6RegionEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty6UintTyEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty7AliasTyEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty7BoundTyEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty7DynKindEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty7FloatTyEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty7ParamTyEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty7RigidTyEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty8TermKindEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCscKJQijBGP8h_10stable_mir2ty8TraitDefEBL_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCsemrkInvIJKG_5alloc6string6StringECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body10BasicBlockEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body10MutabilityEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body10TerminatorEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body12SwitchTargetEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body12UnwindActionEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body13GeneratorKindEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body13MutBorrowKindEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body15PointerCoercionEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body16InlineAsmOperandEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body18AsyncGeneratorKindEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body18CopyNonOverlappingEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body21NonDivergingIntrinsicEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body5PlaceEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body6RvalueEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body6SafetyEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body7OperandEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body8ConstantEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body8VarianceEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body9LocalDeclEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body9StatementEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRTNtNtCscKJQijBGP8h_10stable_mir2ty10GenericDefmEEBM_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRTjNtNtCscKJQijBGP8h_10stable_mir2ty4ProvEEBN_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRbECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeReECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRhECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRjECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRmECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placebECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placejECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placemECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeoECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeyECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtCs5Qntoa8xDtv_3std9panicking11begin_panicReECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RINvNtNtCs5Qntoa8xDtv_3std10sys_common9backtrace26___rust_end_short_backtraceNCINvNtB6_9panicking11begin_panicReE0zECscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNCINvNtCs5Qntoa8xDtv_3std9panicking11begin_panicReE0CscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXNtCs1vzJ4rSbbC5_4core3anyReNtB2_3Any7type_idCscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsM_NtCs1vzJ4rSbbC5_4core6optionINtB5_6OptionINtNtCsemrkInvIJKG_5alloc3vec3VecNtCscKJQijBGP8h_10stable_mir6OpaqueEENtNtB7_3fmt5Debug3fmtB1j_ Hash = 146835647075900052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsM_NtCs1vzJ4rSbbC5_4core6optionINtB5_6OptionNtNtCscKJQijBGP8h_10stable_mir2ty10GenericDefENtNtB7_3fmt5Debug3fmtBO_ Hash = 146835647075900052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsM_NtCs1vzJ4rSbbC5_4core6optionINtB5_6OptionNtNtCscKJQijBGP8h_10stable_mir2ty4SpanENtNtB7_3fmt5Debug3fmtBO_ Hash = 146835647075900052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsM_NtCs1vzJ4rSbbC5_4core6optionINtB5_6OptionNtNtNtCscKJQijBGP8h_10stable_mir3mir4body5PlaceENtNtB7_3fmt5Debug3fmtBQ_ Hash = 146835647075900052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsM_NtCs1vzJ4rSbbC5_4core6optionINtB5_6OptionNtNtNtCscKJQijBGP8h_10stable_mir3mir4body7OperandENtNtB7_3fmt5Debug3fmtBQ_ Hash = 146835647075900052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsM_NtCs1vzJ4rSbbC5_4core6optionINtB5_6OptionjENtNtB7_3fmt5Debug3fmtCscKJQijBGP8h_10stable_mir Hash = 146835647075900052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtB7_6option6OptionhENtB5_5Debug3fmtCscKJQijBGP8h_10stable_mir Hash = 146835647075900052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtB7_6option6OptionjENtB5_5Debug3fmtCscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtB7_6option6OptionmENtB5_5Debug3fmtCscKJQijBGP8h_10stable_mir Hash = 146835647075900052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCscKJQijBGP8h_10stable_mir2ty11PlaceholderNtBy_11BoundRegionENtB5_5Debug3fmtBA_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCscKJQijBGP8h_10stable_mir2ty17OutlivesPredicateNtBy_2TyNtBy_6RegionENtB5_5Debug3fmtBA_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCscKJQijBGP8h_10stable_mir2ty17OutlivesPredicateNtBy_6RegionB1m_ENtB5_5Debug3fmtBA_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCscKJQijBGP8h_10stable_mir2ty6BinderNtBy_20ExistentialPredicateENtB5_5Debug3fmtBA_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCscKJQijBGP8h_10stable_mir2ty6BinderNtBy_5FnSigENtB5_5Debug3fmtBA_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCsemrkInvIJKG_5alloc3vec3VecNtCscKJQijBGP8h_10stable_mir6OpaqueENtB5_5Debug3fmtB14_ Hash = 146835646621254984 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtCscKJQijBGP8h_10stable_mir2ty14GenericArgKindENtB5_5Debug3fmtB16_ Hash = 146835646621254984 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtCscKJQijBGP8h_10stable_mir2ty17BoundVariableKindENtB5_5Debug3fmtB16_ Hash = 146835646621254984 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtCscKJQijBGP8h_10stable_mir2ty2TyENtB5_5Debug3fmtB16_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body7OperandENtB5_5Debug3fmtB18_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body9LocalDeclENtB5_5Debug3fmtB18_ Hash = 146835646621254984 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCsemrkInvIJKG_5alloc3vec3VecTjNtNtCscKJQijBGP8h_10stable_mir2ty4ProvEENtB5_5Debug3fmtB18_ Hash = 146835646621254984 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCsemrkInvIJKG_5alloc3vec3VecjENtB5_5Debug3fmtCscKJQijBGP8h_10stable_mir Hash = 146835646621254984 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtCscKJQijBGP8h_10stable_mir5DefIdNtB5_5Debug3fmtBx_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtCscKJQijBGP8h_10stable_mir6OpaqueNtB5_5Debug3fmtBx_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtCscKJQijBGP8h_10stable_mir7AllocIdNtB5_5Debug3fmtBx_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtCscKJQijBGP8h_10stable_mir9CrateItemNtB5_5Debug3fmtBx_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty10AllocationNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty10ClauseKindNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty10ForeignDefNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty10GenericDefNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty10MovabilityNtB5_5Debug3fmtBz_ Hash = 702941992757231615 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty10ParamConstNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty10RegionKindNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty11BoundRegionNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty11BoundTyKindNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty11ClosureKindNtB5_5Debug3fmtBz_ Hash = 1124680653842163584 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty11GenericArgsNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty12ImplPolarityNtB5_5Debug3fmtBz_ Hash = 1124680653842163584 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty14GenericArgKindNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty14TraitPredicateNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty15BoundRegionKindNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty15CoercePredicateNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty15GenericParamDefNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty16EarlyBoundRegionNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty16SubtypePredicateNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty16UnevaluatedConstNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty17BoundVariableKindNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty19ExistentialTraitRefNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty19GenericParamDefKindNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty19ProjectionPredicateNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty21ExistentialProjectionNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty22AliasRelationDirectionNtB5_5Debug3fmtBz_ Hash = 702941992757231615 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty2TyNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty3AbiNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty4ProvNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty4SpanNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty5ConstNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty5IntTyNtB5_5Debug3fmtBz_ Hash = 287486626987461054 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty6RegionNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty6UintTyNtB5_5Debug3fmtBz_ Hash = 287486626987461054 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty7AliasTyNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty7BoundTyNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty7DynKindNtB5_5Debug3fmtBz_ Hash = 702941992757231615 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty7FloatTyNtB5_5Debug3fmtBz_ Hash = 382993475055910911 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty7ParamTyNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty7RigidTyNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty8TermKindNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCscKJQijBGP8h_10stable_mir2ty8TraitDefNtB5_5Debug3fmtBz_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCsemrkInvIJKG_5alloc6string6StringNtB5_5Debug3fmtCscKJQijBGP8h_10stable_mir Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body10BasicBlockNtB5_5Debug3fmtBB_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body10MutabilityNtB5_5Debug3fmtBB_ Hash = 382993475055910911 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body10TerminatorNtB5_5Debug3fmtBB_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body12SwitchTargetNtB5_5Debug3fmtBB_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body12UnwindActionNtB5_5Debug3fmtBB_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body13GeneratorKindNtB5_5Debug3fmtBB_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body13MutBorrowKindNtB5_5Debug3fmtBB_ Hash = 1124680653842163584 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body15PointerCoercionNtB5_5Debug3fmtBB_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body16InlineAsmOperandNtB5_5Debug3fmtBB_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body18AsyncGeneratorKindNtB5_5Debug3fmtBB_ Hash = 1124680653842163584 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body18CopyNonOverlappingNtB5_5Debug3fmtBB_ Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCscKJQijBGP8h_10stable_mir3mir4body21NonDivergingIntrinsicNtB5_5Debug3fmtBB_ Hash = 742261418966908927 up to 0 count discarded

---
warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _ZN58_$LT$alloc..string..String$u20$as$u20$core..fmt..Debug$GT$3fmt17h0cd7eb53661be73bE Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _ZN60_$LT$alloc..string..String$u20$as$u20$core..fmt..Display$GT$3fmt17hd3a8f49c44c7ca0fE Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsf_NtCscKJQijBGP8h_10stable_mir4foldNtNtB7_2ty11GenericArgsNtB5_6Folder7fold_ty Hash = 135188635138055229 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsf_NtCscKJQijBGP8h_10stable_mir4foldNtNtB7_2ty11GenericArgsNtB5_6Folder10fold_const Hash = 146835647075900052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXNtCscKJQijBGP8h_10stable_mir2tyNtB2_2TyNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 536873292802566628 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvMs_NtCscKJQijBGP8h_10stable_mir2tyNtB4_2Ty4kind Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs0_NtCscKJQijBGP8h_10stable_mir2tyNtB5_2TyINtNtCs1vzJ4rSbbC5_4core7convert4FromNtB5_6TyKindE4from Hash = 965012997117340301 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs1_NtCscKJQijBGP8h_10stable_mir2tyNtB5_4SpanNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 675064527835702008 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvMs2_NtCscKJQijBGP8h_10stable_mir2tyNtB5_5FnDef4body Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3_NtCscKJQijBGP8h_10stable_mir2tyNtB5_11GenericArgsINtNtNtCs1vzJ4rSbbC5_4core3ops5index5IndexNtB5_7ParamTyE5index Hash = 694937217591377052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs4_NtCscKJQijBGP8h_10stable_mir2tyNtB5_11GenericArgsINtNtNtCs1vzJ4rSbbC5_4core3ops5index5IndexNtB5_10ParamConstE5index Hash = 694937217591377052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvMs5_NtCscKJQijBGP8h_10stable_mir2tyNtB5_14GenericArgKind9expect_ty Hash = 784007058953177093 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvMs5_NtCscKJQijBGP8h_10stable_mir2tyNtB5_14GenericArgKind12expect_const Hash = 784007058953177093 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvMs6_NtCscKJQijBGP8h_10stable_mir2tyNtB5_9TraitDecl11generics_of Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvMs6_NtCscKJQijBGP8h_10stable_mir2tyNtB5_9TraitDecl13predicates_of Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvMs6_NtCscKJQijBGP8h_10stable_mir2tyNtB5_9TraitDecl22explicit_predicates_of Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXCscKJQijBGP8h_10stable_mirNtB2_5DefIdNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 675064527835702008 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvMs_CscKJQijBGP8h_10stable_mirNtB4_9CrateItem4body Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvMs_CscKJQijBGP8h_10stable_mirNtB4_9CrateItem4span Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvMs_CscKJQijBGP8h_10stable_mirNtB4_9CrateItem4name Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvMs_CscKJQijBGP8h_10stable_mirNtB4_9CrateItem4kind Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvCscKJQijBGP8h_10stable_mir8entry_fn Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvCscKJQijBGP8h_10stable_mir11local_crate Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvCscKJQijBGP8h_10stable_mir11find_crates Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvCscKJQijBGP8h_10stable_mir15external_crates Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvCscKJQijBGP8h_10stable_mir15all_local_items Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvCscKJQijBGP8h_10stable_mir15all_trait_decls Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvCscKJQijBGP8h_10stable_mir10trait_decl Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvCscKJQijBGP8h_10stable_mir15all_trait_impls Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvCscKJQijBGP8h_10stable_mir10trait_impl Hash = 811594940213542385 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs0_CscKJQijBGP8h_10stable_mirNtB5_6OpaqueNtNtCs1vzJ4rSbbC5_4core3fmt7Display3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs1_CscKJQijBGP8h_10stable_mirNtB5_6OpaqueNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB4_4BodyNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs1_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_9LocalDeclNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_10BasicBlockNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs5_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_10TerminatorNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs7_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_14TerminatorKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 1127386595538178765 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs9_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_16InlineAsmOperandNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsb_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_12UnwindActionNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 798733567640361085 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsd_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_13AssertMessageNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 135188633623736868 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsf_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_5BinOpNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 894595279633594734 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsh_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_4UnOpNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 382993475055910911 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsj_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_13GeneratorKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 146835647075900052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsl_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_18AsyncGeneratorKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 1124680653842163584 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsn_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_13FakeReadCauseNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 1096621589111647192 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsp_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_9RetagKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 844982796561153337 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsr_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_8VarianceNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 844982796561153337 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXst_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_18CopyNonOverlappingNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsv_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_21NonDivergingIntrinsicNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 146835647075900052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsx_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_9StatementNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsz_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_13StatementKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 567991000299095647 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsB_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_6RvalueNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 421769325804223770 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsD_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_13AggregateKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 11922954036587480 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsF_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_7OperandNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 536873290278838000 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsH_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_5PlaceNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsJ_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_18UserTypeProjectionNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsL_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_8ConstantNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsN_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_12SwitchTargetNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsP_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_10BorrowKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 536873290278838000 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsR_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_13MutBorrowKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 1124680653842163584 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsT_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_10MutabilityNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 382993475055910911 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsW_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_6SafetyNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 382993475055910911 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsY_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB5_15PointerCoercionNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 484499720195134499 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs10_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB6_8CastKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 1127386595538178765 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs12_NtNtCscKJQijBGP8h_10stable_mir3mir4bodyNtB6_6NullOpNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 536873290278838000 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs9_NtCscKJQijBGP8h_10stable_mir2tyNtB5_5ConstNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsb_NtCscKJQijBGP8h_10stable_mir2tyNtB5_6RegionNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsd_NtCscKJQijBGP8h_10stable_mir2tyNtB5_10RegionKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 1096621589111647192 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsf_NtCscKJQijBGP8h_10stable_mir2tyNtB5_16EarlyBoundRegionNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsh_NtCscKJQijBGP8h_10stable_mir2tyNtB5_11BoundRegionNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXss_NtCscKJQijBGP8h_10stable_mir2tyNtB5_6TyKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 290495010558859389 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsu_NtCscKJQijBGP8h_10stable_mir2tyNtB5_7RigidTyNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 574663148917272112 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsx_NtCscKJQijBGP8h_10stable_mir2tyNtB5_5IntTyNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 287486626987461054 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsE_NtCscKJQijBGP8h_10stable_mir2tyNtB5_6UintTyNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 287486626987461054 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsL_NtCscKJQijBGP8h_10stable_mir2tyNtB5_7FloatTyNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 382993475055910911 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsS_NtCscKJQijBGP8h_10stable_mir2tyNtB5_10MovabilityNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 702941992757231615 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs13_NtCscKJQijBGP8h_10stable_mir2tyNtB6_10ForeignDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs1a_NtCscKJQijBGP8h_10stable_mir2tyNtB6_5FnDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs1h_NtCscKJQijBGP8h_10stable_mir2tyNtB6_10ClosureDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs1o_NtCscKJQijBGP8h_10stable_mir2tyNtB6_12GeneratorDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs1v_NtCscKJQijBGP8h_10stable_mir2tyNtB6_8ParamDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs1C_NtCscKJQijBGP8h_10stable_mir2tyNtB6_10BrNamedDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs1J_NtCscKJQijBGP8h_10stable_mir2tyNtB6_6AdtDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs1Q_NtCscKJQijBGP8h_10stable_mir2tyNtB6_8AliasDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs1X_NtCscKJQijBGP8h_10stable_mir2tyNtB6_8TraitDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs24_NtCscKJQijBGP8h_10stable_mir2tyNtB6_10GenericDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2b_NtCscKJQijBGP8h_10stable_mir2tyNtB6_8ConstDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2h_NtCscKJQijBGP8h_10stable_mir2tyNtB6_7ImplDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2n_NtCscKJQijBGP8h_10stable_mir2tyNtB6_9RegionDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2p_NtCscKJQijBGP8h_10stable_mir2tyNtB6_11GenericArgsNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2r_NtCscKJQijBGP8h_10stable_mir2tyNtB6_14GenericArgKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 536873290278838000 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2t_NtCscKJQijBGP8h_10stable_mir2tyNtB6_8TermKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 146835647075900052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2v_NtCscKJQijBGP8h_10stable_mir2tyNtB6_9AliasKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 844982796561153337 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2x_NtCscKJQijBGP8h_10stable_mir2tyNtB6_7AliasTyNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2z_NtCscKJQijBGP8h_10stable_mir2tyNtB6_5FnSigNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2F_NtCscKJQijBGP8h_10stable_mir2tyNtB6_3AbiNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 1094249770891078959 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2L_NtCscKJQijBGP8h_10stable_mir2tyNtB6_17BoundVariableKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 607699196681068272 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2R_NtCscKJQijBGP8h_10stable_mir2tyNtB6_11BoundTyKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 146835647075900052 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2T_NtCscKJQijBGP8h_10stable_mir2tyNtB6_15BoundRegionKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 536873290278838000 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2V_NtCscKJQijBGP8h_10stable_mir2tyNtB6_7DynKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 702941992757231615 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2X_NtCscKJQijBGP8h_10stable_mir2tyNtB6_20ExistentialPredicateNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 607699196681068272 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs2Z_NtCscKJQijBGP8h_10stable_mir2tyNtB6_19ExistentialTraitRefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs31_NtCscKJQijBGP8h_10stable_mir2tyNtB6_21ExistentialProjectionNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs33_NtCscKJQijBGP8h_10stable_mir2tyNtB6_7ParamTyNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs35_NtCscKJQijBGP8h_10stable_mir2tyNtB6_7BoundTyNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3c_NtCscKJQijBGP8h_10stable_mir2tyNtB6_4ProvNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3e_NtCscKJQijBGP8h_10stable_mir2tyNtB6_13ProvenanceMapNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3g_NtCscKJQijBGP8h_10stable_mir2tyNtB6_10AllocationNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3h_NtCscKJQijBGP8h_10stable_mir2tyNtB6_12ConstantKindNtNtCs1vzJ4rSbbC5_4core5clone5Clone5clone Hash = 933445008103535323 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3i_NtCscKJQijBGP8h_10stable_mir2tyNtB6_12ConstantKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 607699196681068272 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3k_NtCscKJQijBGP8h_10stable_mir2tyNtB6_10ParamConstNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3m_NtCscKJQijBGP8h_10stable_mir2tyNtB6_16UnevaluatedConstNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3p_NtCscKJQijBGP8h_10stable_mir2tyNtB6_23TraitSpecializationKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 1124680653842163584 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3v_NtCscKJQijBGP8h_10stable_mir2tyNtB6_9TraitDeclNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3x_NtCscKJQijBGP8h_10stable_mir2tyNtB6_8TraitRefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3z_NtCscKJQijBGP8h_10stable_mir2tyNtB6_8GenericsNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3B_NtCscKJQijBGP8h_10stable_mir2tyNtB6_19GenericParamDefKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 607699196681068272 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3D_NtCscKJQijBGP8h_10stable_mir2tyNtB6_15GenericParamDefNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3F_NtCscKJQijBGP8h_10stable_mir2tyNtB6_13PredicateKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 135188633623736868 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3H_NtCscKJQijBGP8h_10stable_mir2tyNtB6_10ClauseKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 187771966500765311 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3J_NtCscKJQijBGP8h_10stable_mir2tyNtB6_11ClosureKindNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 1124680653842163584 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3L_NtCscKJQijBGP8h_10stable_mir2tyNtB6_16SubtypePredicateNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3N_NtCscKJQijBGP8h_10stable_mir2tyNtB6_15CoercePredicateNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3P_NtCscKJQijBGP8h_10stable_mir2tyNtB6_22AliasRelationDirectionNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 702941992757231615 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3R_NtCscKJQijBGP8h_10stable_mir2tyNtB6_14TraitPredicateNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3V_NtCscKJQijBGP8h_10stable_mir2tyNtB6_19ProjectionPredicateNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXs3X_NtCscKJQijBGP8h_10stable_mir2tyNtB6_12ImplPolarityNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 1124680653842163584 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXse_CscKJQijBGP8h_10stable_mirNtB5_7AllocIdNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsr_CscKJQijBGP8h_10stable_mirNtB5_5CrateNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvXsx_CscKJQijBGP8h_10stable_mirNtB5_9CrateItemNtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmt Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvNvNvCscKJQijBGP8h_10stable_mir3TLV3FOO7___getit Hash = 742261418966908927 up to 0 count discarded

warning: stable_mir.948d574466fc5bef-cgu.0: no profile data available for function _RNvNvNvNvCscKJQijBGP8h_10stable_mir3TLV3FOO7___getit7destroy Hash = 742261418966908927 up to 0 count discarded
[RUSTC-TIMING] stable_mir test:false 1.829
warning: `stable_mir` (lib) generated 411 warnings
[RUSTC-TIMING] rustc_feature test:false 1.603
   Compiling tracing-tree v0.2.4
---
[RUSTC-TIMING] rustc_const_eval test:false 121.420
   Compiling rustc_driver v0.0.0 (/checkout/compiler/rustc_driver)
[RUSTC-TIMING] rustc_driver test:false 132.692
   Compiling rustc_smir v0.0.0 (/checkout/compiler/rustc_smir)
warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvCscKJQijBGP8h_10stable_mir6opaqueINtNtCs1vzJ4rSbbC5_4core6option6OptionNtNtCs9wv3TtWUTKU_10rustc_span6def_id10LocalDefIdEECsjoMfIvGKggp_10rustc_smir Hash = 1096621591420354578 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvMs5_NtCsdOBNSuwVbn_9hashbrown3rawINtB6_8RawTableTNtNtNtCs9akbetlnCYN_18rustc_query_system9dep_graph5graph12DepNodeIndexuEE14reserve_rehashNCINvNtB8_3map11make_hasherBP_uINtNtCs1vzJ4rSbbC5_4core4hash18BuildHasherDefaultNtCsbl5UTYxW4xP_10rustc_hash8FxHasherEE0ECsjoMfIvGKggp_10rustc_smir Hash = 176661872215476153 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvMsc_NtNtNtCs2swBc5kwnW6_12rustc_middle3mir9interpret10allocationNtB6_10Allocation12write_scalarNtNtNtBc_2ty7context6TyCtxtECsjoMfIvGKggp_10rustc_smir Hash = 429053617418879180 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtB4_6option6OptionINtNtCsemrkInvIJKG_5alloc5boxed3BoxINtNtCslQ7FAS7l1ot_21rustc_data_structures10sorted_map9SortedMapNtCsdmjsTS5n2or_9rustc_abi4SizeNtNtNtCs2swBc5kwnW6_12rustc_middle3mir9interpret7AllocIdEEEECsjoMfIvGKggp_10rustc_smir Hash = 238984481799490044 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtB4_6option6OptionNtNtCs9wv3TtWUTKU_10rustc_span6symbol6SymbolEECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCscKJQijBGP8h_10stable_mir2ty6BinderNtBJ_20ExistentialPredicateEECsjoMfIvGKggp_10rustc_smir Hash = 238984481941143025 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecINtNtCscKJQijBGP8h_10stable_mir2ty6BinderNtB1g_20ExistentialPredicateEEECsjoMfIvGKggp_10rustc_smir Hash = 135188634562680690 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtCscKJQijBGP8h_10stable_mir5CrateEECsjoMfIvGKggp_10rustc_smir Hash = 798733566801274259 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtCscKJQijBGP8h_10stable_mir2ty14GenericArgKindEECsjoMfIvGKggp_10rustc_smir Hash = 135188634562680690 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtCscKJQijBGP8h_10stable_mir2ty15GenericParamDefEECsjoMfIvGKggp_10rustc_smir Hash = 798733566801274259 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtCscKJQijBGP8h_10stable_mir2ty17BoundVariableKindEECsjoMfIvGKggp_10rustc_smir Hash = 135188634562680690 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body10BasicBlockEECsjoMfIvGKggp_10rustc_smir Hash = 135188634562680690 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body16InlineAsmOperandEECsjoMfIvGKggp_10rustc_smir Hash = 135188634562680690 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body7OperandEECsjoMfIvGKggp_10rustc_smir Hash = 135188634562680690 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body9StatementEECsjoMfIvGKggp_10rustc_smir Hash = 135188634562680690 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsemrkInvIJKG_5alloc3vec3VecTNtNtCscKJQijBGP8h_10stable_mir2ty13PredicateKindNtB1g_4SpanEEECsjoMfIvGKggp_10rustc_smir Hash = 135188634562680690 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtCsjoMfIvGKggp_10rustc_smir10rustc_smir11MaybeStableNtNtCscKJQijBGP8h_10stable_mir2ty6TyKindNtNtCs2swBc5kwnW6_12rustc_middle2ty2TyEEBL_ Hash = 612928228247044313 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtNtCsemrkInvIJKG_5alloc3vec5drain5DrainTNtCsdmjsTS5n2or_9rustc_abi4SizeNtNtNtCs2swBc5kwnW6_12rustc_middle3mir9interpret7AllocIdEEECsjoMfIvGKggp_10rustc_smir Hash = 134804395805878954 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeINtNtNtCsemrkInvIJKG_5alloc3vec9into_iter8IntoIterTNtCsdmjsTS5n2or_9rustc_abi4SizeNtNtNtCs2swBc5kwnW6_12rustc_middle3mir9interpret7AllocIdEEECsjoMfIvGKggp_10rustc_smir Hash = 11922955524021576 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtCsbNFaMU7cHYz_8smallvec18CollectionAllocErrECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtB4_3fmt5ErrorECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCs3ERKCQ2ZU1e_12rustc_target3abi8FieldIdxECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty12ConstantKindECsjoMfIvGKggp_10rustc_smir Hash = 1111451245941089747 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty13PredicateKindECsjoMfIvGKggp_10rustc_smir Hash = 638066917619609504 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty14GenericArgKindECsjoMfIvGKggp_10rustc_smir Hash = 1063705158850053342 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty17BoundVariableKindECsjoMfIvGKggp_10rustc_smir Hash = 928018417390613361 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty20ExistentialPredicateECsjoMfIvGKggp_10rustc_smir Hash = 753202733034588215 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtCscKJQijBGP8h_10stable_mir2ty6RegionECsjoMfIvGKggp_10rustc_smir Hash = 93478049729719886 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtB4_3num5error15TryFromIntErrorECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body10BasicBlockECsjoMfIvGKggp_10rustc_smir Hash = 238984481941143025 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body13AssertMessageECsjoMfIvGKggp_10rustc_smir Hash = 647472252099359144 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body13FakeReadCauseECsjoMfIvGKggp_10rustc_smir Hash = 844982797501036650 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body13StatementKindECsjoMfIvGKggp_10rustc_smir Hash = 888579791630379082 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body14TerminatorKindECsjoMfIvGKggp_10rustc_smir Hash = 44612227720851332 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body16InlineAsmOperandECsjoMfIvGKggp_10rustc_smir Hash = 650973719552161433 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body6RvalueECsjoMfIvGKggp_10rustc_smir Hash = 746321610340893959 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtCscKJQijBGP8h_10stable_mir3mir4body7OperandECsjoMfIvGKggp_10rustc_smir Hash = 798733564832300476 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtNtCs2swBc5kwnW6_12rustc_middle3mir9interpret10allocation10AllocErrorECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeNtNtNtNtCs2swBc5kwnW6_12rustc_middle3mir9interpret10allocation10AllocationECsjoMfIvGKggp_10rustc_smir Hash = 948827213339042889 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtB4_6option6OptionjEECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax14ProjectionElemNtBM_5LocalNtNtBO_2ty2TyEECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRINtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax14ProjectionElemuuEECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtCsdmjsTS5n2or_9rustc_abi4SizeECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCs2swBc5kwnW6_12rustc_middle2ty2TyECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCs2swBc5kwnW6_12rustc_middle3mir5LocalECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCs3ERKCQ2ZU1e_12rustc_target3abi10VariantIdxECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCs9wv3TtWUTKU_10rustc_span13span_encoding4SpanECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCs9wv3TtWUTKU_10rustc_span6def_id10LocalDefIdECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCs9wv3TtWUTKU_10rustc_span6symbol6SymbolECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtCsg5Wj36rlwNo_9rustc_ast3ast22InlineAsmTemplatePieceECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRNtNtNtCs2swBc5kwnW6_12rustc_middle2ty6layout11LayoutErrorECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRbECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRjECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRuECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeRyECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core3ptr13drop_in_placeyECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core9panicking13assert_failedINtNtB4_6option6OptionjEBM_ECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core9panicking13assert_failedNtCsdmjsTS5n2or_9rustc_abi4SizeBM_ECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCs1vzJ4rSbbC5_4core9panicking13assert_failedyyECsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtCsemrkInvIJKG_5alloc7raw_vec11finish_growNtNtB4_5alloc6GlobalECsjoMfIvGKggp_10rustc_smir Hash = 599005163245366147 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtNtCs2swBc5kwnW6_12rustc_middle5query8plumbing12query_get_atINtNtNtCs9akbetlnCYN_18rustc_query_system5query6caches12DefaultCacheINtNtB6_2ty11ParamEnvAndNtB2a_2TyEINtNtB4_5erase6ErasedAhj10_EEECsjoMfIvGKggp_10rustc_smir Hash = 761453658675784538 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtNtCs2swBc5kwnW6_12rustc_middle5query8plumbing12query_get_atINtNtNtCs9akbetlnCYN_18rustc_query_system5query6caches12DefaultCacheNtNtCs9wv3TtWUTKU_10rustc_span6def_id5DefIdINtNtB4_5erase6ErasedAhj18_EEECsjoMfIvGKggp_10rustc_smir Hash = 153855679966818897 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtNtCs2swBc5kwnW6_12rustc_middle5query8plumbing12query_get_atINtNtNtCs9akbetlnCYN_18rustc_query_system5query6caches12DefaultCacheNtNtCs9wv3TtWUTKU_10rustc_span6def_id5DefIdINtNtB4_5erase6ErasedAhj8_EEECsjoMfIvGKggp_10rustc_smir Hash = 184307275559186762 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNtNtCs2swBc5kwnW6_12rustc_middle5query8plumbing12query_get_atINtNtNtCs9akbetlnCYN_18rustc_query_system5query6caches8VecCacheNtNtCs9wv3TtWUTKU_10rustc_span6def_id8CrateNumINtNtB4_5erase6ErasedAhj10_EEECsjoMfIvGKggp_10rustc_smir Hash = 512089717169696972 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB7_6RawVecppE7reserve21do_reserve_and_handleTNtCsdmjsTS5n2or_9rustc_abi4SizeNtNtNtCs2swBc5kwnW6_12rustc_middle3mir9interpret7AllocIdENtNtB9_5alloc6GlobalECsjoMfIvGKggp_10rustc_smir Hash = 117630494571946737 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvXNtCs2swBc5kwnW6_12rustc_middle9dep_graphNtB3_8DepsTypeNtNtCs9akbetlnCYN_18rustc_query_system9dep_graph4Deps9read_depsNCNvMs3_NtBX_5graphINtB24_8DepGraphBH_E10read_index0ECsjoMfIvGKggp_10rustc_smir Hash = 26073020680340160 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvXs2_NtNtNtCs2swBc5kwnW6_12rustc_middle2ty6consts7valtreeNtB6_7ValTreeNtNtCs1vzJ4rSbbC5_4core4hash4Hash4hashNtCsbl5UTYxW4xP_10rustc_hash8FxHasherECsjoMfIvGKggp_10rustc_smir Hash = 567185242595093822 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RINvYINtNtNtNtCs1vzJ4rSbbC5_4core4iter8adapters3zip3ZipINtNtNtBc_5slice4iter4IterNtNtNtNtCs2swBc5kwnW6_12rustc_middle2ty6consts7valtree7ValTreeEBR_ENtNtNtBa_6traits8iterator8Iterator8try_folduNCINvNvB2m_3all5checkTRB1h_B3q_ENCNvXs2_NtBW_3cmpSB1h_INtB3I_14SlicePartialEqB1h_E5equal0E0INtNtNtBc_3ops12control_flow11ControlFlowuEECsjoMfIvGKggp_10rustc_smir Hash = 135188632310947799 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNCINvNtNtNtCs1vzJ4rSbbC5_4core4iter8adapters3map12map_try_foldRNtNtCs9wv3TtWUTKU_10rustc_span6def_id8CrateNumINtNtBa_6option6OptionNtCscKJQijBGP8h_10stable_mir5CrateEuINtNtNtBa_3ops12control_flow11ControlFlowB26_ENCNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB3v_6TablesNtB28_7Context11find_crates0NCINvNvNtNtNtB8_6traits8iterator8Iterator8find_map5checkB1K_B26_QNCB3s_s_0E0E0B3x_ Hash = 678832732266428213 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs1_NtCsdOBNSuwVbn_9hashbrown3mapINtB5_7HashMapNtNtNtCs9akbetlnCYN_18rustc_query_system9dep_graph5graph12DepNodeIndexuINtNtCs1vzJ4rSbbC5_4core4hash18BuildHasherDefaultNtCsbl5UTYxW4xP_10rustc_hash8FxHasherEE6insertCsjoMfIvGKggp_10rustc_smir Hash = 757987886280983837 up to 0 count discarded
warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs8_CsdmjsTS5n2or_9rustc_abiNtB5_4Size4bits Hash = 784007058953177093 up to 0 count discarded


warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs8_NtNtNtCs2swBc5kwnW6_12rustc_middle3mir9interpret10allocationNtB5_10Allocation6uninitCsjoMfIvGKggp_10rustc_smir Hash = 391331300184058026 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc3vecINtB4_3VecNtCscKJQijBGP8h_10stable_mir5CrateE7reserveCsjoMfIvGKggp_10rustc_smir Hash = 397363745014684564 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc3vecINtB4_3VecNtNtCscKJQijBGP8h_10stable_mir2ty17BoundVariableKindE7reserveCsjoMfIvGKggp_10rustc_smir Hash = 397363745014684564 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc3vecINtB4_3VecNtNtCscKJQijBGP8h_10stable_mir2ty2TyE7reserveCsjoMfIvGKggp_10rustc_smir Hash = 397363745014684564 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc3vecINtB4_3VecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body7OperandE7reserveCsjoMfIvGKggp_10rustc_smir Hash = 397363745014684564 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc3vecINtB4_3VecTNtNtCscKJQijBGP8h_10stable_mir2ty13PredicateKindNtBH_4SpanEE7reserveCsjoMfIvGKggp_10rustc_smir Hash = 397363745014684564 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB4_6RawVecINtNtCs1vzJ4rSbbC5_4core6option6OptionhEE11allocate_inCsjoMfIvGKggp_10rustc_smir Hash = 1096621587513427694 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB4_6RawVecINtNtCscKJQijBGP8h_10stable_mir2ty6BinderNtBO_20ExistentialPredicateEE11allocate_inCsjoMfIvGKggp_10rustc_smir Hash = 11922952438367982 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB4_6RawVecINtNtCsjoMfIvGKggp_10rustc_smir10rustc_smir11MaybeStableNtNtCscKJQijBGP8h_10stable_mir2ty6TyKindNtNtCs2swBc5kwnW6_12rustc_middle2ty2TyEE16reserve_for_pushBQ_ Hash = 117630494571946737 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB4_6RawVecNtCscKJQijBGP8h_10stable_mir5CrateE11allocate_inCsjoMfIvGKggp_10rustc_smir Hash = 11922952438367982 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB4_6RawVecNtNtCs9wv3TtWUTKU_10rustc_span13span_encoding4SpanE16reserve_for_pushCsjoMfIvGKggp_10rustc_smir Hash = 117630494571946737 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB4_6RawVecNtNtCs9wv3TtWUTKU_10rustc_span6def_id5DefIdE16reserve_for_pushCsjoMfIvGKggp_10rustc_smir Hash = 117630494571946737 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB4_6RawVecNtNtCscKJQijBGP8h_10stable_mir2ty14GenericArgKindE11allocate_inCsjoMfIvGKggp_10rustc_smir Hash = 11922952438367982 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB4_6RawVecNtNtCscKJQijBGP8h_10stable_mir2ty17BoundVariableKindE11allocate_inCsjoMfIvGKggp_10rustc_smir Hash = 11922952438367982 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB4_6RawVecNtNtCscKJQijBGP8h_10stable_mir2ty2TyE11allocate_inCsjoMfIvGKggp_10rustc_smir Hash = 11922952438367982 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB4_6RawVecNtNtNtCs2swBc5kwnW6_12rustc_middle3mir9interpret7AllocIdE16reserve_for_pushCsjoMfIvGKggp_10rustc_smir Hash = 117630494571946737 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB4_6RawVecNtNtNtCscKJQijBGP8h_10stable_mir3mir4body7OperandE11allocate_inCsjoMfIvGKggp_10rustc_smir Hash = 11922952438367982 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB4_6RawVecTNtNtCscKJQijBGP8h_10stable_mir2ty13PredicateKindNtBO_4SpanEE11allocate_inCsjoMfIvGKggp_10rustc_smir Hash = 11922952438367982 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs_NtCsemrkInvIJKG_5alloc7raw_vecINtB4_6RawVecTjNtNtCscKJQijBGP8h_10stable_mir2ty4ProvEE16reserve_for_pushCsjoMfIvGKggp_10rustc_smir Hash = 117630494571946737 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs0_NtNtNtCs1vzJ4rSbbC5_4core4iter8adapters10filter_mapINtB5_9FilterMapINtNtB7_3map3MapINtNtB7_5chain5ChainINtNtNtBb_5slice4iter4IterNtNtCs9wv3TtWUTKU_10rustc_span6def_id8CrateNumEB1K_ENCNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB35_6TablesNtCscKJQijBGP8h_10stable_mir7Context11find_crates0ENCB32_s_0ENtNtNtB9_6traits8iterator8Iterator4nextB37_ Hash = 149146439368377447 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs3h_NtCscKJQijBGP8h_10stable_mir2tyNtB6_12ConstantKindNtNtCs1vzJ4rSbbC5_4core5clone5Clone5clone Hash = 613416689923386082 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs8_NtCsemrkInvIJKG_5alloc3vecINtB5_3VecNtNtCscKJQijBGP8h_10stable_mir2ty14GenericArgKindENtNtCs1vzJ4rSbbC5_4core5clone5Clone5cloneCsjoMfIvGKggp_10rustc_smir Hash = 128035616377275967 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs8_NtCsemrkInvIJKG_5alloc3vecINtB5_3VecNtNtCscKJQijBGP8h_10stable_mir2ty17BoundVariableKindENtNtCs1vzJ4rSbbC5_4core5clone5Clone5cloneCsjoMfIvGKggp_10rustc_smir Hash = 764657764373568879 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsM_NtCs1vzJ4rSbbC5_4core6optionINtB5_6OptionNtNtCs9wv3TtWUTKU_10rustc_span6symbol6SymbolENtNtB7_3fmt5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 146835647075900052 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtB7_6option6OptionNtNtCs9wv3TtWUTKU_10rustc_span6def_id10LocalDefIdENtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 146835647075900052 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtB7_6option6OptionjENtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 146835647075900052 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCs2swBc5kwnW6_12rustc_middle2ty11PlaceholderNtNtBy_3sty11BoundRegionENtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 146835647075900052 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCs4nDDZW8KxPz_13rustc_type_ir16structural_impls12OptWithInfcxNtNtNtCs2swBc5kwnW6_12rustc_middle2ty7context6TyCtxtNtNtB7_7convert10InfallibleRNtNtB1D_3sty9RegionVidENtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCs4nDDZW8KxPz_13rustc_type_ir3sty10RegionKindNtNtNtCs2swBc5kwnW6_12rustc_middle2ty7context6TyCtxtENtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 135188633623736868 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtCsemrkInvIJKG_5alloc5boxed3BoxNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax8CoverageENtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtNtCs2swBc5kwnW6_12rustc_middle2ty4list4ListINtNtNtBC_3mir6syntax14ProjectionElemNtB1m_5LocalNtBA_2TyEENtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 146835646621254984 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax14ProjectionElemNtBA_5LocalNtNtBC_2ty2TyENtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 135188633623736868 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRINtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax14ProjectionElemuuENtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 135188633623736868 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtCs4nDDZW8KxPz_13rustc_type_ir13DebruijnIndexNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtCsdmjsTS5n2or_9rustc_abi4SizeNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCs2swBc5kwnW6_12rustc_middle2ty2TyNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCs2swBc5kwnW6_12rustc_middle3mir5LocalNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCs3ERKCQ2ZU1e_12rustc_target3abi10VariantIdxNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCs8XDd2tMgSry_9rustc_hir3def7DefKindNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCs9wv3TtWUTKU_10rustc_span13span_encoding4SpanNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCs9wv3TtWUTKU_10rustc_span6def_id10LocalDefIdNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCs9wv3TtWUTKU_10rustc_span6symbol5IdentNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCs9wv3TtWUTKU_10rustc_span6symbol6SymbolNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCsg5Wj36rlwNo_9rustc_ast3ast16InlineAsmOptionsNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtCsg5Wj36rlwNo_9rustc_ast3ast22InlineAsmTemplatePieceNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty10FreeRegionNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty11BoundRegionNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty16EarlyBoundRegionNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty9RegionVidNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCs2swBc5kwnW6_12rustc_middle2ty6layout11LayoutErrorNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax16InlineAsmOperandNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRNtNtNtCs2swBc5kwnW6_12rustc_middle3mir9interpret11GlobalAllocNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRRSNtNtCs9wv3TtWUTKU_10rustc_span13span_encoding4SpanNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 146835646621254984 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRRSNtNtCsg5Wj36rlwNo_9rustc_ast3ast22InlineAsmTemplatePieceNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 146835646621254984 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRbNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRjNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 1124680650125156080 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRuNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCs1vzJ4rSbbC5_4core3fmtRyNtB5_5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 1124680650125156080 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs_NtNtCsemrkInvIJKG_5alloc3vec21spec_from_iter_nestedINtB6_3VecNtNtCscKJQijBGP8h_10stable_mir2ty14GenericArgKindEINtB4_18SpecFromIterNestedB13_INtNtNtNtCs1vzJ4rSbbC5_4core4iter8adapters3map3MapINtNtB2q_6copied6CopiedINtNtNtB2u_5slice4iter4IterNtNtNtCs2swBc5kwnW6_12rustc_middle2ty12generic_args10GenericArgEENCNvXsE_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirINtNtB41_4list4ListB3X_ENtB58_6Stable6stable0EE9from_iterB5a_ Hash = 231439399663213882 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXso_NtCsemrkInvIJKG_5alloc3vecINtB5_3VecINtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax14ProjectionElemuuEENtNtCs1vzJ4rSbbC5_4core3fmt5Debug3fmtCsjoMfIvGKggp_10rustc_smir Hash = 146835646621254984 up to 0 count discarded
warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _ZN4core3fmt3num50_$LT$impl$u20$core..fmt..Debug$u20$for$u20$u64$GT$3fmt17h685ba81ec306ad85E Hash = 1124680650125156080 up to 0 count discarded


warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs0_NtCsjoMfIvGKggp_10rustc_smir14rustc_internalNtNtB7_10rustc_smir6Tables13create_def_id Hash = 11922954461437676 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvNtCsjoMfIvGKggp_10rustc_smir14rustc_internal9crate_num Hash = 784007058953177093 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvNtNtCsjoMfIvGKggp_10rustc_smir10rustc_smir5alloc14new_allocation Hash = 561809674296059836 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvNtNtCsjoMfIvGKggp_10rustc_smir10rustc_smir5alloc17allocation_filter Hash = 857134412529560778 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context11local_crate Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context15external_crates Hash = 714500944310205212 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context11find_crates Hash = 1018334415842425872 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context14name_of_def_id Hash = 238984481941143025 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context10print_span Hash = 784007058953177093 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context8def_kind Hash = 833952846089888519 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context15span_of_an_item Hash = 784007058953177093 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context15all_local_items Hash = 917188016592454199 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context8entry_fn Hash = 995382921573546611 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context15all_trait_decls Hash = 1151968154559199521 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context10trait_decl Hash = 784007058953177093 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context15all_trait_impls Hash = 1151968154559199521 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context10trait_impl Hash = 777551066213627867 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context8mir_body Hash = 744241025795755267 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context7ty_kind Hash = 576245258731593973 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context5mk_ty Hash = 536873291645282863 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context11generics_of Hash = 784007058953177093 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context13predicates_of Hash = 647472253502787757 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXNtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB2_6TablesNtCscKJQijBGP8h_10stable_mir7Context22explicit_predicates_of Hash = 647472253502787757 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvMs1_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtB5_6Tables9intern_ty Hash = 414921810715410000 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvNtCsjoMfIvGKggp_10rustc_smir10rustc_smir10smir_crate Hash = 828027342225420009 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs2_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir9statement9StatementNtB5_6Stable6stable Hash = 238984481941143025 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs3_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax13StatementKindNtB5_6Stable6stable Hash = 934081908991634716 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs4_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax6RvalueNtB5_6Stable6stable Hash = 51475829105250615 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs5_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCsg5Wj36rlwNo_9rustc_ast3ast10MutabilityNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs6_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax10BorrowKindNtB5_6Stable6stable Hash = 287486627951026307 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs7_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax13MutBorrowKindNtB5_6Stable6stable Hash = 1124680653842163584 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs8_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax6NullOpNtB5_6Stable6stable Hash = 726449657978953347 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs9_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax8CastKindNtB5_6Stable6stable Hash = 502833845842630313 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsa_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs4nDDZW8KxPz_13rustc_type_ir3sty9AliasKindNtB5_6Stable6stable Hash = 844982796561153337 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsb_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty7AliasTyNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsc_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs4nDDZW8KxPz_13rustc_type_ir3sty7DynKindNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsd_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty20ExistentialPredicateNtB5_6Stable6stable Hash = 607699196681068272 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXse_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty19ExistentialTraitRefNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsf_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs2swBc5kwnW6_12rustc_middle2ty8TermKindNtB5_6Stable6stable Hash = 146835647075900052 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsg_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty21ExistentialProjectionNtB5_6Stable6stable Hash = 798733566695476326 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsh_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty10adjustment15PointerCoercionNtB5_6Stable6stable Hash = 928018418828003774 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsi_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs8XDd2tMgSry_9rustc_hir3hir8UnsafetyNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsj_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax13FakeReadCauseNtB5_6Stable6stable Hash = 1096621589111647192 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsk_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs3ERKCQ2ZU1e_12rustc_target3abi8FieldIdxNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsl_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax7OperandNtB5_6Stable6stable Hash = 536873290278838000 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsm_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax12ConstOperandNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsn_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax5PlaceNtB5_6Stable6stable Hash = 1096621591420354578 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXso_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs2swBc5kwnW6_12rustc_middle3mir18UserTypeProjectionNtB5_6Stable6stable Hash = 1096621591420354578 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsp_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs2swBc5kwnW6_12rustc_middle3mir5LocalNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsq_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs3ERKCQ2ZU1e_12rustc_target3abi10VariantIdxNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsr_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtCs4nDDZW8KxPz_13rustc_type_ir8VarianceNtB5_6Stable6stable Hash = 844982796561153337 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXss_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax9RetagKindNtB5_6Stable6stable Hash = 844982796561153337 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXst_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty14typeck_results23UserTypeAnnotationIndexNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsu_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax12UnwindActionNtB5_6Stable6stable Hash = 382993475055910911 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsv_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax21NonDivergingIntrinsicNtB5_6Stable6stable Hash = 391331302304318075 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsw_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirINtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax10AssertKindNtBM_7OperandENtB5_6Stable6stable Hash = 1042354056717961203 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsx_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax5BinOpNtB5_6Stable6stable Hash = 894595279633594734 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsy_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax4UnOpNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsz_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax13AggregateKindNtB5_6Stable6stable Hash = 1096621589111647192 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsA_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs8XDd2tMgSry_9rustc_hir3hir13GeneratorKindNtB5_6Stable6stable Hash = 844982795958681523 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsB_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax16InlineAsmOperandNtB5_6Stable6stable Hash = 888579792211306886 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsC_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir10terminator10TerminatorNtB5_6Stable6stable Hash = 238984481941143025 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsD_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6syntax14TerminatorKindNtB5_6Stable6stable Hash = 287894925562832880 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsE_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirINtNtNtCs2swBc5kwnW6_12rustc_middle2ty4list4ListNtNtBO_12generic_args10GenericArgENtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsF_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty12generic_args14GenericArgKindNtB5_6Stable6stable Hash = 536873290278838000 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsI_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty5FnSigNtB5_6Stable6stable Hash = 890259285679194794 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsJ_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty11BoundTyKindNtB5_6Stable6stable Hash = 146835647075900052 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsK_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty15BoundRegionKindNtB5_6Stable6stable Hash = 607699196681068272 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsL_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty17BoundVariableKindNtB5_6Stable6stable Hash = 536873290278838000 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsM_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtCs4nDDZW8KxPz_13rustc_type_ir5IntTyNtB5_6Stable6stable Hash = 287486626987461054 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsN_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtCs4nDDZW8KxPz_13rustc_type_ir6UintTyNtB5_6Stable6stable Hash = 287486626987461054 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsO_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtCs4nDDZW8KxPz_13rustc_type_ir7FloatTyNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsP_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCsg5Wj36rlwNo_9rustc_ast3ast10MovabilityNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsQ_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs2swBc5kwnW6_12rustc_middle2ty2TyNtB5_6Stable6stable Hash = 339114661520911267 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsR_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty6consts5ConstNtB5_6Stable6stable Hash = 373449526332789099 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsS_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty10ParamConstNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsT_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty7ParamTyNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsU_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty7BoundTyNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsV_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtNtCs2swBc5kwnW6_12rustc_middle3mir9interpret10allocation10AllocationNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsW_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty9trait_def23TraitSpecializationKindNtB5_6Stable6stable Hash = 1124680653842163584 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsX_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty9trait_def8TraitDefNtB5_6Stable6stable Hash = 262492187557868965 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsY_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle3mir6consts5ConstNtB5_6Stable6stable Hash = 135188633127038741 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXsZ_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty8TraitRefNtB5_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs10_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty8generics8GenericsNtB6_6Stable6stable Hash = 268511750763728113 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs11_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty8generics19GenericParamDefKindNtB6_6Stable6stable Hash = 1124680653842163584 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs12_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty8generics15GenericParamDefNtB6_6Stable6stable Hash = 287486627204401777 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs13_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs2swBc5kwnW6_12rustc_middle2ty13PredicateKindNtB6_6Stable6stable Hash = 249841959747160710 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs14_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs2swBc5kwnW6_12rustc_middle2ty10ClauseKindNtB6_6Stable6stable Hash = 95820315899273164 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs15_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty7closure11ClosureKindNtB6_6Stable6stable Hash = 1124680653842163584 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs16_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs2swBc5kwnW6_12rustc_middle2ty16SubtypePredicateNtB6_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs17_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs2swBc5kwnW6_12rustc_middle2ty15CoercePredicateNtB6_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs18_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs2swBc5kwnW6_12rustc_middle2ty22AliasRelationDirectionNtB6_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs19_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs2swBc5kwnW6_12rustc_middle2ty14TraitPredicateNtB6_6Stable6stable Hash = 1124680653842163584 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs1b_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs2swBc5kwnW6_12rustc_middle2ty19ProjectionPredicateNtB6_6Stable6stable Hash = 798733566695476326 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs1c_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs2swBc5kwnW6_12rustc_middle2ty12ImplPolarityNtB6_6Stable6stable Hash = 1124680653842163584 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs1d_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtNtCs2swBc5kwnW6_12rustc_middle2ty3sty6RegionNtB6_6Stable6stable Hash = 742261418966908927 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs1e_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirINtNtCs4nDDZW8KxPz_13rustc_type_ir3sty10RegionKindNtNtNtCs2swBc5kwnW6_12rustc_middle2ty7context6TyCtxtENtB6_6Stable6stable Hash = 1096621589111647192 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs1f_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs9wv3TtWUTKU_10rustc_span13span_encoding4SpanNtB6_6Stable6stable Hash = 917515342897012460 up to 0 count discarded

warning: rustc_smir.e1f5b0263ee0f70b-cgu.0: no profile data available for function _RNvXs1g_NtCsjoMfIvGKggp_10rustc_smir10rustc_smirNtNtCs8XDd2tMgSry_9rustc_hir3def7DefKindNtB6_6Stable6stable Hash = 742261418966908927 up to 0 count discarded
[RUSTC-TIMING] rustc_smir test:false 2.265
warning: `rustc_smir` (lib) generated 231 warnings
   Compiling rustc-main v0.0.0 (/checkout/compiler/rustc)
[RUSTC-TIMING] rustc_main test:false 0.118
---
Executing benchmark ripgrep-13.0.0 (5/8)
Preparing ripgrep-13.0.0
[2023-10-09T12:23:58Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:23:58Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-10-09T12:23:58Z DEBUG collector::execute] cd "/tmp/.tmpMXdSJU" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpMXdSJU#ripgrep@13.0.0" "--release" "--" "--skip-this-rustc"
[2023-10-09T12:23:58Z DEBUG collector::execute] cd "/tmp/.tmpLjm9oQ" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpLjm9oQ#ripgrep@13.0.0" "--" "--skip-this-rustc"
[2023-10-09T12:24:21Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:24:21Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:24:21Z DEBUG collector::execute] cd "/tmp/.tmpjcTn0W" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpjcTn0W#ripgrep@13.0.0" "--" "--wrap-rustc-with" "Eprintln"
Running ripgrep-13.0.0: Opt + [Full]
Running ripgrep-13.0.0: Opt + [Full]
[2023-10-09T12:24:23Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:24:23Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-10-09T12:24:23Z DEBUG collector::execute] cd "/tmp/.tmp8IyDD3" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp8IyDD3#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
[2023-10-09T12:24:32Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-10-09T12:24:32Z DEBUG collector::execute] cd "/tmp/.tmpFQrVjG" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpFQrVjG#ripgrep@13.0.0" "--release" "--" "--skip-this-rustc"
[2023-10-09T12:24:41Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:24:41Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-10-09T12:24:41Z DEBUG collector::execute] cd "/tmp/.tmpqh7fKy" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpqh7fKy#ripgrep@13.0.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
Finished benchmark ripgrep-13.0.0-tiny (6/8)
Finished benchmark ripgrep-13.0.0-tiny (6/8)
Executing benchmark serde-1.0.136 (7/8)
Preparing serde-1.0.136
[2023-10-09T12:25:15Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:25:15Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-10-09T12:25:15Z DEBUG collector::execute] cd "/tmp/.tmpIdaAhc" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpIdaAhc#serde@1.0.136" "--release" "--" "--skip-this-rustc"
Running serde-1.0.136: Debug + [Full]
[2023-10-09T12:25:16Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:25:16Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:25:16Z DEBUG collector::execute] cd "/tmp/.tmpBbM8YQ" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpBbM8YQ#serde@1.0.136" "--" "--wrap-rustc-with" "Eprintln"
---
[2023-10-09T12:25:19Z DEBUG collector::execute] cd "/tmp/.tmpSN2Zqf" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpSN2Zqf#syn@1.0.89" "--" "--skip-this-rustc"
Running syn-1.0.89: Debug + [Full]
[2023-10-09T12:25:22Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:25:22Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:25:22Z DEBUG collector::execute] cd "/tmp/.tmpzURUFp" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpzURUFp#syn@1.0.89" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:25:24Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:25:24Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-10-09T12:25:24Z DEBUG collector::execute] cd "/tmp/.tmpZWDBJ2" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpZWDBJ2#syn@1.0.89" "--release" "--" "--wrap-rustc-with" "Eprintln"
Finished benchmark syn-1.0.89 (8/8)
---
[2023-10-09T12:46:30Z DEBUG collector::execute] cd "/tmp/.tmpztVL4i" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpztVL4i#cargo@0.60.0" "--profile" "check" "--lib" "--" "--skip-this-rustc"
Running cargo-0.60.0: Check + [Full]
[2023-10-09T12:47:35Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:47:35Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:47:35Z DEBUG collector::execute] cd "/tmp/.tmpWqUdjT" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpWqUdjT#cargo@0.60.0" "--profile" "check" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:47:40Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:47:40Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:47:40Z DEBUG collector::execute] cd "/tmp/.tmppM45hT" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmppM45hT#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln"
Running cargo-0.60.0: Opt + [Full]
---
Preparing clap-3.1.6
[2023-10-09T12:48:32Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-10-09T12:48:32Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-10-09T12:48:32Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:48:32Z DEBUG collector::execute] cd "/tmp/.tmpRy4F9x" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpRy4F9x#clap@3.1.6" "--profile" "check" "--" "--skip-this-rustc"
[2023-10-09T12:48:32Z DEBUG collector::execute] cd "/tmp/.tmpDFwBD9" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpDFwBD9#clap@3.1.6" "--release" "--" "--skip-this-rustc"
[2023-10-09T12:48:32Z DEBUG collector::execute] cd "/tmp/.tmp9LQNUz" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp9LQNUz#clap@3.1.6" "--" "--skip-this-rustc"
[2023-10-09T12:48:37Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:48:37Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:48:37Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:48:37Z DEBUG collector::execute] cd "/tmp/.tmpRZcDDz" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpRZcDDz#clap@3.1.6" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:48:38Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:48:38Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:48:38Z DEBUG collector::execute] cd "/tmp/.tmppnKoY9" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmppnKoY9#clap@3.1.6" "--" "--wrap-rustc-with" "Eprintln"
Running clap-3.1.6: Opt + [Full]
---
[2023-10-09T12:48:47Z DEBUG collector::execute] cd "/tmp/.tmpsKFet6" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpsKFet6#hyper@0.14.18" "--release" "--features=client,http1,http2,server,stream" "--" "--skip-this-rustc"
Running hyper-0.14.18: Check + [Full]
[2023-10-09T12:49:12Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:49:12Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:49:12Z DEBUG collector::execute] cd "/tmp/.tmphOQG8Y" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmphOQG8Y#hyper@0.14.18" "--profile" "check" "--features=client,http1,http2,server,stream" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:49:14Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:49:14Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:49:14Z DEBUG collector::execute] cd "/tmp/.tmpKzzwff" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpKzzwff#hyper@0.14.18" "--features=client,http1,http2,server,stream" "--" "--wrap-rustc-with" "Eprintln"
Running hyper-0.14.18: Opt + [Full]
---
Preparing regex-1.5.5
[2023-10-09T12:49:24Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:49:24Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-10-09T12:49:24Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-10-09T12:49:24Z DEBUG collector::execute] cd "/tmp/.tmp8sV59j" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp8sV59j#regex@1.5.5" "--" "--skip-this-rustc"
[2023-10-09T12:49:24Z DEBUG collector::execute] cd "/tmp/.tmpfiXAMi" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpfiXAMi#regex@1.5.5" "--profile" "check" "--" "--skip-this-rustc"
[2023-10-09T12:49:24Z DEBUG collector::execute] cd "/tmp/.tmpK1QnFR" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpK1QnFR#regex@1.5.5" "--release" "--" "--skip-this-rustc"
[2023-10-09T12:49:31Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:49:31Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:49:31Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:49:31Z DEBUG collector::execute] cd "/tmp/.tmpAOVjby" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpAOVjby#regex@1.5.5" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:49:32Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:49:32Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:49:32Z DEBUG collector::execute] cd "/tmp/.tmph0Ileo" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmph0Ileo#regex@1.5.5" "--" "--wrap-rustc-with" "Eprintln"
Running regex-1.5.5: Opt + [Full]
Running regex-1.5.5: Opt + [Full]
[2023-10-09T12:49:34Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:49:34Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-10-09T12:49:34Z DEBUG collector::execute] cd "/tmp/.tmpAHFIWN" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpAHFIWN#regex@1.5.5" "--release" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark ripgrep-13.0.0 (5/8)
Preparing ripgrep-13.0.0
[2023-10-09T12:49:41Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-10-09T12:49:41Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-10-09T12:49:41Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-10-09T12:49:41Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:49:41Z DEBUG collector::execute] cd "/tmp/.tmpPAxMtP" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpPAxMtP#ripgrep@13.0.0" "--release" "--" "--skip-this-rustc"
[2023-10-09T12:49:41Z DEBUG collector::execute] cd "/tmp/.tmpPMykzN" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpPMykzN#ripgrep@13.0.0" "--profile" "check" "--" "--skip-this-rustc"
[2023-10-09T12:49:41Z DEBUG collector::execute] cd "/tmp/.tmpGYf6Ed" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpGYf6Ed#ripgrep@13.0.0" "--" "--skip-this-rustc"
Running ripgrep-13.0.0: Check + [Full]
[2023-10-09T12:50:13Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:50:13Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:50:13Z DEBUG collector::execute] cd "/tmp/.tmp1BRBRu" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp1BRBRu#ripgrep@13.0.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:50:13Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:50:13Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:50:13Z DEBUG collector::execute] cd "/tmp/.tmp3Kb8hn" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp3Kb8hn#ripgrep@13.0.0" "--" "--wrap-rustc-with" "Eprintln"
Running ripgrep-13.0.0: Opt + [Full]
---
Preparing serde-1.0.136
[2023-10-09T12:51:10Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-10-09T12:51:10Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:51:10Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-10-09T12:51:10Z DEBUG collector::execute] cd "/tmp/.tmpPKJ9d0" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpPKJ9d0#serde@1.0.136" "--" "--skip-this-rustc"
[2023-10-09T12:51:10Z DEBUG collector::execute] cd "/tmp/.tmpkqNLPJ" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpkqNLPJ#serde@1.0.136" "--profile" "check" "--" "--skip-this-rustc"
[2023-10-09T12:51:10Z DEBUG collector::execute] cd "/tmp/.tmp4KItbS" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmp4KItbS#serde@1.0.136" "--release" "--" "--skip-this-rustc"
[2023-10-09T12:51:12Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:51:12Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:51:12Z DEBUG collector::execute] cd "/tmp/.tmpJwYh7B" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpJwYh7B#serde@1.0.136" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
Running serde-1.0.136: Debug + [Full]
Running serde-1.0.136: Debug + [Full]
[2023-10-09T12:51:13Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:51:13Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2023-10-09T12:51:13Z DEBUG collector::execute] cd "/tmp/.tmpujpUqb" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpujpUqb#serde@1.0.136" "--" "--wrap-rustc-with" "Eprintln"
[2023-10-09T12:51:16Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:51:16Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2023-10-09T12:51:16Z DEBUG collector::execute] cd "/tmp/.tmpBChNv7" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpBChNv7#serde@1.0.136" "--release" "--" "--wrap-rustc-with" "Eprintln"
Finished benchmark serde-1.0.136 (7/8)
Finished benchmark serde-1.0.136 (7/8)
Executing benchmark syn-1.0.89 (8/8)
Preparing syn-1.0.89
[2023-10-09T12:51:19Z INFO  collector::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2023-10-09T12:51:19Z INFO  collector::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2023-10-09T12:51:19Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2023-10-09T12:51:19Z DEBUG collector::execute] cd "/tmp/.tmpfG3VKf" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpfG3VKf#syn@1.0.89" "--profile" "check" "--" "--skip-this-rustc"
[2023-10-09T12:51:19Z DEBUG collector::execute] cd "/tmp/.tmpcJ8q7a" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpcJ8q7a#syn@1.0.89" "--release" "--" "--skip-this-rustc"
[2023-10-09T12:51:19Z DEBUG collector::execute] cd "/tmp/.tmpSXqUQu" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=6,7 --jobserver-auth=6,7" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpSXqUQu#syn@1.0.89" "--" "--skip-this-rustc"
[2023-10-09T12:51:24Z DEBUG collector::benchmark] Benchmark iteration 1/1
[2023-10-09T12:51:24Z INFO  collector::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2023-10-09T12:51:24Z DEBUG collector::execute] cd "/tmp/.tmpsK6eRx" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "file:///tmp/.tmpsK6eRx#syn@1.0.89" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
Running syn-1.0.89: Debug + [Full]
---
+ note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
5 


The actual run.stderr differed from the expected run.stderr.
Actual run.stderr saved to /checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/macros/assert-long-condition/assert-long-condition.run.stderr
error: 1 errors occurred comparing run output.
status: exit status: 101
command: cd "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/macros/assert-long-condition" && RUST_TEST_THREADS="16" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/macros/assert-long-condition/a"
stdout: none
---
    0: Cannot execute tests
    1: Command COMPILETEST_FORCE_STAGE0=1 python3 /checkout/x.py test --stage 0 tests/assembly tests/codegen tests/codegen-units tests/incremental tests/mir-opt tests/pretty tests/run-pass-valgrind tests/ui --skip tests/ui/process/nofile-limit.rs [at /checkout/obj] has failed with exit code Some(1)

Stack backtrace:
   0: <opt_dist::exec::CmdBuilder>::run
             at /rustc/95049a4a9b4e0ee378a478958fde603ad441ee0d/src/tools/opt-dist/src/exec.rs:78:17
             at /rustc/95049a4a9b4e0ee378a478958fde603ad441ee0d/src/tools/opt-dist/src/tests.rs:101:5
   2: opt_dist::execute_pipeline::{closure#5}
             at /rustc/95049a4a9b4e0ee378a478958fde603ad441ee0d/src/tools/opt-dist/src/main.rs:309:40
             at /rustc/95049a4a9b4e0ee378a478958fde603ad441ee0d/src/tools/opt-dist/src/main.rs:309:40
      <opt_dist::timer::TimerSection>::section::<opt_dist::execute_pipeline::{closure#5}, ()>
             at /rustc/95049a4a9b4e0ee378a478958fde603ad441ee0d/src/tools/opt-dist/src/timer.rs:111:22
   3: opt_dist::execute_pipeline
             at /rustc/95049a4a9b4e0ee378a478958fde603ad441ee0d/src/tools/opt-dist/src/main.rs:309:9
             at /rustc/95049a4a9b4e0ee378a478958fde603ad441ee0d/src/tools/opt-dist/src/main.rs:360:18
   5: <fn() -> core::result::Result<(), anyhow::Error> as core::ops::function::FnOnce<()>>::call_once
             at /rustc/680cdf8168a906b4ea80af673c64e4a16f77be57/library/core/src/ops/function.rs:250:5
             at /rustc/680cdf8168a906b4ea80af673c64e4a16f77be57/library/core/src/ops/function.rs:250:5
      std::sys_common::backtrace::__rust_begin_short_backtrace::<fn() -> core::result::Result<(), anyhow::Error>, core::result::Result<(), anyhow::Error>>
             at /rustc/680cdf8168a906b4ea80af673c64e4a16f77be57/library/std/src/sys_common/backtrace.rs:154:18
   6: std::rt::lang_start::<core::result::Result<(), anyhow::Error>>::{closure#0}
             at /rustc/680cdf8168a906b4ea80af673c64e4a16f77be57/library/std/src/rt.rs:166:18
   7: core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once
             at /rustc/680cdf8168a906b4ea80af673c64e4a16f77be57/library/core/src/ops/function.rs:284:13
             at /rustc/680cdf8168a906b4ea80af673c64e4a16f77be57/library/std/src/panicking.rs:524:40
      std::panicking::try
             at /rustc/680cdf8168a906b4ea80af673c64e4a16f77be57/library/std/src/panicking.rs:488:19
      std::panic::catch_unwind

@bors
Copy link
Contributor

bors commented Oct 9, 2023

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Oct 9, 2023
@matthiaskrgr matthiaskrgr deleted the rollup-4ttoyns branch March 16, 2024 18:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-testsuite Area: The testsuite used to check the correctness of rustc rollup A PR which is a rollup S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.