Repository: Kobzol/cargo-remark Branch: main Commit: 3f45243c77b8 Files: 39 Total size: 13.9 MB Directory structure: gitextract_4uul3359/ ├── .github/ │ └── workflows/ │ └── check.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── src/ │ ├── bin/ │ │ └── analyze-remarks.rs │ ├── cargo/ │ │ ├── mod.rs │ │ └── version.rs │ ├── lib.rs │ ├── main.rs │ ├── remark/ │ │ ├── mod.rs │ │ └── parse.rs │ ├── render.rs │ └── utils/ │ ├── callback.rs │ ├── cli.rs │ ├── data_structures.rs │ ├── io.rs │ ├── mod.rs │ └── timing.rs ├── templates/ │ ├── index.jinja │ ├── layout.html │ ├── menu.html │ ├── remark-list.jinja │ └── source-file.jinja └── tests/ ├── data/ │ ├── remarks-1/ │ │ ├── 37v4yjwjhlguzgkm.codegen.opt.yaml │ │ ├── 37v4yjwjhlguzgkm.opt.opt.yaml │ │ ├── remarks.67ea4a01cbc73fb0-cgu.0.codegen.opt.yaml │ │ └── remarks.67ea4a01cbc73fb0-cgu.0.opt.opt.yaml │ └── remarks-similarity-join/ │ ├── src/ │ │ ├── common.rs │ │ ├── main.rs │ │ ├── record.rs │ │ └── util.rs │ └── yaml/ │ ├── similarity_join.548e4531baa98255-cgu.0.codegen.opt.yaml │ └── similarity_join.548e4531baa98255-cgu.0.opt.opt.yaml └── integration/ ├── analyze.rs ├── build.rs ├── main.rs └── utils/ └── mod.rs ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/check.yml ================================================ ## Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md name: Check on: push: branches: - main pull_request: jobs: test: strategy: matrix: os: [ ubuntu-latest, windows-latest ] name: Test runs-on: ${{ matrix.os }} steps: - name: Checkout sources uses: actions/checkout@v2 - name: Install nightly toolchain uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: nightly override: true components: clippy, rustfmt - uses: Swatinem/rust-cache@v2 - name: Build uses: actions-rs/cargo@v1 with: command: build args: --all --all-targets - name: Run tests uses: actions-rs/cargo@v1 with: command: test - name: Lint uses: actions-rs/cargo@v1 with: command: clippy args: --all -- -D warnings - name: Check Rust formatting uses: actions-rs/cargo@v1 with: command: fmt args: --all -- --check ================================================ FILE: .gitignore ================================================ /target ================================================ FILE: CHANGELOG.md ================================================ # 0.1.2 (28. 9. 2023) ## Fixes: - Fix parsing of the `--filter` CLI parameter (https://github.com/Kobzol/cargo-remark/issues/11) (by [@joseluis](https://github.com/joseluis)). - Fix normalization of source file paths on Windows (https://github.com/Kobzol/cargo-remark/issues/6). - Fix missing images in remark table header (https://github.com/Kobzol/cargo-remark/issues/9). # 0.1.1 (16. 8. 2023) ## Fixes - Fix links in remark message inside source file pages. # 0.1.0 (12. 8. 2023) Initial version ================================================ FILE: Cargo.toml ================================================ [package] name = "cargo-remark" version = "0.1.2" edition = "2021" #rust-version = "1.72.0" description = "Cargo subcommand for displaying LLVM optimization remarks from compiling Rust programs." repository = "https://github.com/kobzol/cargo-remark" authors = ["Jakub Beránek "] keywords = [ "llvm", "optimization", "remark", "cargo", ] categories = ["development-tools::cargo-plugins"] readme = "README.md" license = "MIT" include = [ "src/**/*.rs", "templates", "Cargo.toml", "README.md" ] [dependencies] # Serialization serde = { version = "1", features = ["derive", "rc"] } serde_yaml = "0.9" serde_json = "1" # Data structures hashbrown = { version = "0.16.0", features = ["rayon", "serde"] } fxhash = "0.2" # Error handling anyhow = "1" # Logging log = "0.4" env_logger = "0.10" # Templates askama = { version = "0.12", features = ["serde-json"] } rust-embed = "6.6" html-escape = "0.2" # CLI clap = { version = "4.3", features = ["derive"] } indicatif = "0.17" colored = "2.0.0" opener = "0.6" rustc-demangle = "0.1" regex = "1.9" rayon = "1.7" cargo_metadata = "0.15" mimalloc = { version = "0.1", default-features = false, optional = true } [dev-dependencies] insta = "1.29" tempfile = "3.5" [features] default = ["mimalloc"] ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2023-present, Jakub Beránek Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # `cargo-remark` [![Build Status]][actions] [![Latest Version]][crates.io] [Build Status]: https://github.com/kobzol/cargo-remark/actions/workflows/check.yml/badge.svg [actions]: https://github.com/kobzol/cargo-remark/actions?query=branch%3Amain [Latest Version]: https://img.shields.io/crates/v/cargo-remark.svg [crates.io]: https://crates.io/crates/cargo-remark **Cargo subcommand that makes it possible to view LLVM [optimization remarks](https://llvm.org/docs/Remarks.html) generated during the compilation of your crate.** These remarks can tell you where and why has LLVM failed to apply certain optimizations. In certain cases[^1], you can use this knowledge to change your code so that it optimizes better. In the future, I hope that `rustc` will be able to emit its own, Rust-specific (MIR?) optimization remarks, but this is just an idea at this point. [^1]: Currently, probably only if you are a LLVM expert. `cargo remark` compiles your crate, generates LLVM remarks, and then parses them and visualizes them in a simple website. It is parallelized, which is important for large programs, because there can be a lot of remarks and since they are in YAML, their parsing is not very fast. **Contributions are welcome!** # Generated output example ![Screenshot of a set of visualized remarks on top of Rust source code](docs/remarks.png) # Installation ```bash $ cargo install cargo-remark ``` Note that `rustc` has [gained](https://github.com/rust-lang/rust/pull/113040) the ability to output LLVM optimization remarks in the YAML format on 2. 7. 2023, and it is currently unstable. Therefore, you will need a recent nightly version[^2] of the compiler to generate LLVM remarks. ```bash $ rustup update nightly ``` [^2]: At least `nightly-2023-07-03-...`. # Usage `rustc` can generate LLVM remarks using the (currently unstable) `-Zremark-dir` flag, which is used internally by this crate. To generate remarks from your crate, use the following command: ```bash $ cargo remark build ``` After the build finishes, the remarks will be located in `target/remarks/yaml`, and the rendered website will be located in `target/remarks/web`. You can open the website by pointing your web browser to `target/remarks/web/index.html` file, or by using the `--open` flag. This command will automatically build your crate with optimizations, so you don't have to pass the `--release` flag. Currently, only missed optimization remarks will be visualized. `Analysis` and `Passed` remarks are ignored. ### CLI parameters | **Flag** | **Default** | **Description** | |--------------|-------------------------------------------------|-------------------------------------------------------------------| | `--open` | (unset) | Open the generated website with the default browser. | | `--external` | (unset) | Visualize remarks from external crates (dependencies) and stdlib. | | `--filter` | `FastISelFailure,NeverInline,SpillReloadCopies` | Comma separated list of remark passes that should be ignored. | ### Features There is currently a single feature `mimalloc`, which is enabled by default, and which enables the use of the [mimalloc](https://docs.rs/mimalloc/latest/mimalloc/) allocator. To disable the feature, compile (or install) the crate with `--no-default-features`. ## Rendering remarks from a directory If you have a directory with YAML remarks on disk, and you just want to visualize them without invoking Cargo, you can use the `analyze-remarks` binary, which comes with this crate. ```bash $ analyze-remarks --source-dir ``` When you use this tool, you need to manually pass the root source directory from where the remarks were generated (with `cargo remark`, it is automatically inferred). You could even use this binary to render remarks generated from C/C++ programs. One advantage of that is that `analyze-remarks` will probably be much faster than [existing](https://github.com/OfekShilon/optview2) C/C++ remark tools, which are written in Python. ## Usage with PGO If you compile your crate with [Profile-guided optimization](https://doc.rust-lang.org/rustc/profile-guided-optimization.html) (PGO), the generated remarks will contain "hotness", a measure of how important is each missed optimization remark. This can help with prioritizing which remarks should be resolved first. You can combine `cargo remark` with the [`cargo-pgo`](https://github.com/Kobzol/cargo-pgo) command to generate remarks from a PGO optimized build: ```bash # Compile with PGO instrumentation $ cargo pgo build # Gather PGO profiles $ ./target/release// # Compile with PGO optimizations and generate remarks $ cargo remark wrap -- pgo optimize ``` # Related work This crate, and especially the generated website was heavily inspired by [optview2](https://github.com/OfekShilon/optview2), a tool for visualizing LLVM optimization remarks generated from C and C++ programs. # License [MIT](LICENSE) ================================================ FILE: src/bin/analyze-remarks.rs ================================================ use cargo_remark::remark::{load_remarks_from_dir, RemarkLoadOptions}; use cargo_remark::render::render_remarks; use cargo_remark::utils::callback::ProgressBarCallback; use cargo_remark::utils::open_result; use cargo_remark::utils::timing::time_block_print; use cargo_remark::RustcSourceRoot; use clap::Parser; use env_logger::Env; use std::path::PathBuf; #[cfg(feature = "mimalloc")] #[global_allocator] static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc; /// Analyze a directory containing YAML files with LLVM optimization remarks #[derive(clap::Parser, Debug)] struct Args { /// Directory containing remark files in YAML format. /// They have to end with the `.opt.yaml` extension. #[arg()] remark_dir: PathBuf, /// Root directory of source (crate) from which the remarks were generated. #[arg(long)] source_dir: PathBuf, /// Output directory into which a HTML website with remark information will be generated. #[arg(long, default_value = "out")] output_dir: PathBuf, /// Load remarks from external code (i.e. crate dependencies). /// Note that this may produce a large amount of data! #[arg(long)] external: bool, /// Sysroot directory of Rust toolchain which generated the remarks. /// Used to resolve standard library sources. /// Can be found with `rustc --print=sysroot`. #[arg(long)] sysroot: Option, /// Optimization remark kinds that should be ignored. #[arg( long = "filter", value_delimiter = ',', default_values = cargo_remark::DEFAULT_KIND_FILTER )] filter_kind: Vec, /// Open the generated website after the build finishes. #[arg(long)] open: bool, } fn analyze(args: Args) -> anyhow::Result<()> { let Args { remark_dir, source_dir, output_dir, external, sysroot, filter_kind, open, } = args; let rustc_source_root = sysroot .map(|sysroot| RustcSourceRoot::from_sysroot(sysroot).expect("Cannot find Rust sources")); let remarks = time_block_print("Remark loading", || { load_remarks_from_dir( remark_dir, RemarkLoadOptions { external, source_dir: source_dir.clone(), filter_kind, rustc_source_root, }, Some(&ProgressBarCallback::default()), ) })?; time_block_print("Render", || { render_remarks( remarks, &source_dir, &output_dir, Some(&ProgressBarCallback::default()), ) })?; open_result(&output_dir, open)?; Ok(()) } fn main() -> anyhow::Result<()> { env_logger::Builder::from_env(Env::default().default_filter_or("cargo_remark=info")).init(); let args = Args::parse(); analyze(args)?; Ok(()) } ================================================ FILE: src/cargo/mod.rs ================================================ use std::path::{Path, PathBuf}; use std::process::{Command, Stdio}; use anyhow::Context; use cargo_remark::utils::cli::cli_format_path; use cargo_remark::utils::io::ensure_directory; use cargo_remark::RustcSourceRoot; pub mod version; pub enum CargoSubcommand { Build, Wrap, } pub struct BuildOutput { pub web_dir: PathBuf, pub source_dir: PathBuf, pub yaml_dir: PathBuf, } pub fn run_cargo(subcmd: CargoSubcommand, cargo_args: Vec) -> anyhow::Result { let ctx = get_cargo_ctx()?; let remark_dir = ctx.get_target_directory(Path::new("remarks"))?; let yaml_dir = ensure_directory(&remark_dir.join("yaml"))?; log::info!( "Optimization remarks will be stored into {}.", cli_format_path(&yaml_dir) ); let mut cmd = match subcmd { CargoSubcommand::Build => { let cargo_args = parse_cargo_args(cargo_args); let mut cargo = Command::new("cargo"); cargo .arg("build") .arg("--release") .stdin(Stdio::null()) .args(cargo_args.filtered); cargo } CargoSubcommand::Wrap => { if cargo_args.is_empty() { return Err(anyhow::anyhow!("You have to enter a command after `--` that will be executed when using `wrap`.")); }; let mut cmd = Command::new("cargo"); cmd.args(&cargo_args).stdin(Stdio::null()); cmd } }; // Use CARGO_ENCODED_RUSTFLAGS to make sure that paths with spaces work. let flags = format!( "-Cremark=all\u{001f}-Zremark-dir={}\u{001f}-Cdebuginfo=1", yaml_dir.display() ); set_cargo_env(&mut cmd, &flags); let status = cmd .spawn() .map_err(|error| anyhow::anyhow!("Cannot start cargo: {error:?}"))? .wait() .map_err(|error| anyhow::anyhow!("Cargo failed: {error:?}"))?; if !status.success() { return Err(anyhow::anyhow!( "Cargo build failed: exit code {}", status.code().unwrap_or(1) )); } log::info!("Optimization remarks sucessfully generated"); let web_dir = ensure_directory(&remark_dir.join("web"))?; Ok(BuildOutput { web_dir, source_dir: ctx.root_directory, yaml_dir, }) } pub fn get_rustc_source_root() -> anyhow::Result { let output = Command::new("rustc") .arg("--print") .arg("sysroot") .output() .context("Cannot get sysroot from `rustc`")?; let sysroot = PathBuf::from(String::from_utf8_lossy(&output.stdout).trim()); RustcSourceRoot::from_sysroot(sysroot) } fn set_cargo_env(command: &mut Command, flags: &str) { let mut rustflags = std::env::var("CARGO_ENCODED_RUSTFLAGS").unwrap_or_default(); if !rustflags.is_empty() { rustflags.push('\u{001f}'); } rustflags.push_str(flags); command.env("CARGO_ENCODED_RUSTFLAGS", rustflags); } #[derive(Debug, Default)] struct CargoArgs { filtered: Vec, } fn parse_cargo_args(cargo_args: Vec) -> CargoArgs { let mut args = CargoArgs::default(); for arg in cargo_args { match arg.as_str() { // Skip `--release`, we will pass it by ourselves. "--release" => { log::warn!("Do not pass `--release` manually, it will be added automatically by `cargo-remark`"); } _ => args.filtered.push(arg), } } args } struct CargoContext { target_directory: PathBuf, root_directory: PathBuf, } impl CargoContext { fn get_target_directory(&self, path: &Path) -> anyhow::Result { let directory = self.target_directory.join(path); ensure_directory(&directory)?; Ok(directory) } } /// Finds Cargo metadata from the current directory. fn get_cargo_ctx() -> anyhow::Result { let cmd = cargo_metadata::MetadataCommand::new(); let metadata = cmd .exec() .map_err(|error| anyhow::anyhow!("Cannot get cargo metadata: {:?}", error))?; Ok(CargoContext { target_directory: metadata.target_directory.into_std_path_buf(), root_directory: metadata.workspace_root.into_std_path_buf(), }) } ================================================ FILE: src/cargo/version.rs ================================================ use std::process::Command; /// Returns true if the currently used rustc supports `-Zremark-dir`. pub fn check_remark_dir_support() -> anyhow::Result { let output = Command::new("rustc").arg("-Z").arg("help").output()?; if !output.status.success() { return Err(anyhow::anyhow!( "Failed to execute rustc -Z help. You must use a nightly compiler." )); } let options = String::from_utf8_lossy(&output.stdout); for line in options.lines() { let items: Vec<&str> = line.split_whitespace().take(2).map(|v| v.trim()).collect(); if items.len() != 2 || items[0] != "-Z" { continue; } if items[1] == "remark-dir=val" { return Ok(true); } } Ok(false) } ================================================ FILE: src/lib.rs ================================================ use std::path::PathBuf; pub mod remark; pub mod render; pub mod utils; pub const DEFAULT_KIND_FILTER: &[&str] = &["FastISelFailure", "NeverInline", "SpillReloadCopies"]; /// Directory containing Rust sources pub struct RustcSourceRoot(pub PathBuf); impl RustcSourceRoot { pub fn from_sysroot(path: PathBuf) -> anyhow::Result { let src_dir = path.join("lib").join("rustlib").join("src").join("rust"); if src_dir.is_dir() { Ok(Self(src_dir)) } else { Err(anyhow::anyhow!("Path {} does not exist", src_dir.display())) } } } ================================================ FILE: src/main.rs ================================================ mod cargo; use cargo::version::check_remark_dir_support; use cargo::{get_rustc_source_root, run_cargo, CargoSubcommand}; use cargo_remark::remark::{load_remarks_from_dir, RemarkLoadOptions}; use cargo_remark::render::render_remarks; use cargo_remark::utils::callback::ProgressBarCallback; use cargo_remark::utils::cli::cli_format_path; use cargo_remark::utils::open_result; use cargo_remark::utils::timing::time_block_log_info; use clap::Parser; use env_logger::Env; #[cfg(feature = "mimalloc")] #[global_allocator] static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc; #[derive(clap::Parser, Debug)] #[clap(author, version, about)] #[clap(bin_name("cargo"))] #[clap(disable_help_subcommand(true))] enum Args { #[clap(subcommand)] #[clap(author, version, about)] Remark(Subcommand), } #[derive(clap::Subcommand, Debug)] enum Subcommand { /// Build a crate with optimizations, generate optimization remarks and render a website /// with remark summary. Build(SharedArgs), /// Wrap an arbitrary cargo command, while configuring it to generate remarks. Wrap(SharedArgs), } #[derive(clap::Parser, Debug)] #[clap(trailing_var_arg = true)] struct SharedArgs { /// Open the generated website after the build finishes. #[arg(long)] open: bool, /// Load remarks from external code (i.e. crate dependencies). /// Note that this may produce a large amount of data! #[arg(long)] external: bool, /// Optimization remark kinds that should be ignored. #[arg( long = "filter", value_delimiter = ',', default_values = cargo_remark::DEFAULT_KIND_FILTER )] filter_kind: Vec, /// Additional arguments that will be passed to Cargo. cargo_args: Vec, } fn generate_remarks(subcmd: CargoSubcommand, args: SharedArgs) -> anyhow::Result<()> { let SharedArgs { open, external, filter_kind, cargo_args, } = args; if !check_remark_dir_support()? { return Err(anyhow::anyhow!( "Your version of rustc does not support `-Zremark-dir`. Please use a nightly version newer than 4. 7. 2023." )); } let output = run_cargo(subcmd, cargo_args)?; let rustc_source_root = match get_rustc_source_root() { Ok(root) => Some(root), Err(error) => { log::warn!("Cannot find rustc source root: {error:?}"); None } }; let remarks = time_block_log_info("Remark loading", || { load_remarks_from_dir( output.yaml_dir, RemarkLoadOptions { external, source_dir: output.source_dir.clone(), filter_kind, rustc_source_root, }, Some(&ProgressBarCallback::default()), ) })?; time_block_log_info("Rendering", || { render_remarks( remarks, &output.source_dir, &output.web_dir, Some(&ProgressBarCallback::default()), ) })?; log::info!("Website built into {}.", cli_format_path(&output.web_dir)); open_result(&output.web_dir, open)?; Ok(()) } fn main() -> anyhow::Result<()> { env_logger::Builder::from_env(Env::default().default_filter_or("cargo_remark=info")).init(); let args = Args::parse(); match args { Args::Remark(args) => match args { Subcommand::Build(args) => generate_remarks(CargoSubcommand::Build, args), Subcommand::Wrap(args) => generate_remarks(CargoSubcommand::Wrap, args), }, } } ================================================ FILE: src/remark/mod.rs ================================================ use std::borrow::Cow; use std::collections::BTreeMap; use std::fs::File; use std::hash::Hash; use std::io::BufReader; use std::path::{Path, PathBuf}; use std::sync::OnceLock; use anyhow::Context; use rayon::iter::{IntoParallelIterator, ParallelIterator}; use regex::Regex; use serde::Deserialize; use serde_yaml::Value; use crate::remark::parse::{ AnalysisRemark, MissedRemark, RemarkArg, RemarkArgCallee, RemarkArgCaller, }; use crate::utils::callback::LoadCallback; use crate::utils::timing::time_block_log_debug; use crate::RustcSourceRoot; mod parse; /// We expect that the remark YAML files will have this extension. const EXPECTED_EXTENSION: &str = ".opt.yaml"; pub type Line = u32; pub type Column = u32; #[derive(Debug, PartialEq, Eq, Hash, PartialOrd, Ord)] pub struct Location { pub file: String, pub line: Line, pub column: Column, } #[derive(Debug, PartialEq, Eq, Hash)] pub struct Function { pub name: String, pub location: Option, } #[derive(Debug, PartialEq, Eq, Hash, PartialOrd, Ord)] pub enum MessagePart { String(String), AnnotatedString { message: String, location: Location }, } #[derive(Debug)] pub struct Remark { pub pass: String, pub name: String, pub function: Function, pub message: Vec, pub hotness: Option, } #[derive(Default)] pub struct RemarkLoadOptions { /// Load remarks from external crates pub external: bool, /// Source directory pub source_dir: PathBuf, /// Remark kinds that should be ignored pub filter_kind: Vec, /// Root path of rustc toolchain sources pub rustc_source_root: Option, } pub fn load_remarks_from_file>( path: P, options: &RemarkLoadOptions, ) -> anyhow::Result> { let path = path.as_ref(); let file = File::open(path).with_context(|| format!("Cannot open remark file {}", path.display()))?; log::debug!("Parsing {}", path.display()); if file.metadata()?.len() == 0 { log::debug!("File is empty"); return Ok(vec![]); } let reader = BufReader::new(file); let remarks = time_block_log_debug("Parsed remark file", || parse_remarks(reader, options)); Ok(remarks) } fn parse_remarks(reader: R, options: &RemarkLoadOptions) -> Vec { let mut remarks = Vec::new(); let mut analysis_remarks = Vec::new(); for document in serde_yaml::Deserializer::from_reader(reader) { match parse::Remark::deserialize(document) { Ok(remark) => { // TODO: optimize (intern) match remark { parse::Remark::Missed(remark) => { let MissedRemark { pass, name, debug_loc, function, args, hotness, } = remark; if let Some(location) = debug_loc { if !options.external { if location.file.starts_with('/') { continue; } if !options.source_dir.join(location.file.as_ref()).is_file() { continue; } } if options .filter_kind .iter() .any(|filter| filter == name.as_ref()) { continue; } let remark = Remark { pass: pass.to_string(), name: name.to_string(), function: Function { name: demangle(&function), location: Some(parse_debug_loc(options, location)), }, message: construct_message(options, args), hotness, }; remarks.push(remark); } } parse::Remark::Analysis(remark) => { let AnalysisRemark { pass, name, debug_loc, function, args, hotness, } = remark; // Only look at loop vectorize analysis for now to find out possible reasons why loops didn't vectorize if pass != "loop-vectorize" { continue; } if let Some(location) = debug_loc { if !options.external { if location.file.starts_with('/') { continue; } if !options.source_dir.join(location.file.as_ref()).is_file() { continue; } } if options .filter_kind .iter() .any(|filter| filter == name.as_ref()) { continue; } let remark = Remark { pass: pass.to_string(), name: name.to_string(), function: Function { name: demangle(&function), location: Some(parse_debug_loc(options, location)), }, message: construct_message(options, args), hotness, }; analysis_remarks.push(remark); } } parse::Remark::Passed {} => {} } } Err(error) => { log::debug!("Error while deserializing remark: {error:?}"); } } } remarks = append_vectorization_analysis_to_remarks(remarks, analysis_remarks); remarks } fn append_vectorization_analysis_to_remarks( remarks: Vec, analysis: Vec, ) -> Vec { // gets the reason why loop wasn't vectorized from analysis remarks, // then appends the analysis remarks to the missed vectorization remark // this does edit the original remark let mut remark_vec: Vec = remarks.into_iter().collect(); // get missed loop vectorizations let missed_vectorization = remark_vec.iter_mut().filter(|remark| { remark.pass == "loop-vectorize" && remark.message.first() == Some(&MessagePart::String("loop not vectorized".to_string())) }); for missed_remark in missed_vectorization { // Find analysis that points to the same function and location as the missed remark // then collect the analysis reasons for the vectorization failure let mut vectorize_miss_reasons: Vec<&str> = analysis .iter() .filter_map(|remark| { // todo: if-let chain if in Rust 2024 if remark.function.location == missed_remark.function.location { if let Some(MessagePart::String(str)) = &remark.message.first() { // returns None if the string doesn't have the wanted prefix str.strip_prefix("loop not vectorized: ") } else { None } } else { None } }) .collect(); vectorize_miss_reasons.sort(); // sort for consistency vectorize_miss_reasons.dedup(); // dedup just in case // append the analysis reasons to the original vectorization failure message if let Some(MessagePart::String(message)) = missed_remark.message.first_mut() { *message = format!( "{message}\n\npossible reasons:\n{}", vectorize_miss_reasons.join("\n") ) .to_lowercase(); // remove inconsistent capitalization } } remark_vec.into_iter().collect() } fn construct_message(opts: &RemarkLoadOptions, arguments: Vec) -> Vec { let mut parts = vec![]; let mut buffer = String::new(); let add_annotated = |part: MessagePart, buffer: &mut String, message: &mut Vec| { if !buffer.is_empty() { message.push(MessagePart::String(std::mem::take(buffer))); } message.push(part); }; let aggregate_keys = |buffer: &mut String, map: BTreeMap, Value>| { buffer.extend(map.into_values().filter_map(|v| match v { Value::Bool(value) => Some(value.to_string()), Value::Number(value) => Some(value.to_string()), Value::String(value) => Some(value), _ => None, })); }; for arg in arguments { match arg { RemarkArg::String(inner) => buffer.push_str(&inner.string), RemarkArg::Callee(RemarkArgCallee { callee: function, debug_loc: Some(location), }) | RemarkArg::Caller(RemarkArgCaller { caller: function, debug_loc: Some(location), }) => add_annotated( MessagePart::AnnotatedString { message: demangle(&function), location: parse_debug_loc(opts, location), }, &mut buffer, &mut parts, ), RemarkArg::Callee(RemarkArgCallee { callee: function, debug_loc: None, }) | RemarkArg::Caller(RemarkArgCaller { caller: function, debug_loc: None, }) => buffer.push_str(&demangle(&function)), RemarkArg::Reason(inner) => buffer.push_str(&inner.reason), RemarkArg::Other(mut inner) => { if let Some(location) = inner .remove("DebugLoc") .and_then(|l| parse::DebugLocation::deserialize(l).ok()) { let location = parse_debug_loc(opts, location); let mut message = String::new(); aggregate_keys(&mut message, inner); add_annotated( MessagePart::AnnotatedString { message, location }, &mut buffer, &mut parts, ); } else { aggregate_keys(&mut buffer, inner); } } }; } if !buffer.is_empty() { parts.push(MessagePart::String(buffer)); } parts } pub fn load_remarks_from_dir>( path: P, options: RemarkLoadOptions, callback: Option<&(dyn LoadCallback + Send + Sync)>, ) -> anyhow::Result> { let dir = path .as_ref() .to_path_buf() .canonicalize() .with_context(|| format!("Cannot find remark directory {}", path.as_ref().display()))?; let files: Vec = std::fs::read_dir(&dir) .with_context(|| format!("Cannot read remark directory {}", dir.display()))? .filter_map(|entry| { let entry = entry.ok()?; if !entry.file_type().ok()?.is_file() { return None; } if !entry .file_name() .to_str() .map(|extension| extension.ends_with(EXPECTED_EXTENSION)) .unwrap_or(false) { return None; } Some(entry.path()) }) .collect(); log::debug!("Parsing {} file(s) from {}", files.len(), dir.display()); if let Some(callback) = callback { callback.start(files.len() as u64); } let remarks: Vec<(PathBuf, anyhow::Result>)> = files .into_par_iter() .map(|file| { let remarks = load_remarks_from_file(&file, &options); if let Some(callback) = callback { callback.advance(); } (file, remarks) }) .collect(); let remarks = remarks .into_iter() .filter_map(|(path, result)| match result { Ok(remarks) => Some(remarks), Err(error) => { log::error!("Failed to load remarks from: {}: {error:?}", path.display()); None } }) .flatten() .collect(); if let Some(callback) = callback { callback.finish(); } Ok(remarks) } fn parse_debug_loc(options: &RemarkLoadOptions, location: parse::DebugLocation) -> Location { let file = normalize_path(options, location.file); Location { file, line: location.line, column: location.column, } } fn normalize_path(options: &RemarkLoadOptions, path: Cow) -> String { const RUSTC_PREFIX: &str = "/rustc/"; if let Some(ref rustc_source_root) = options.rustc_source_root { if let Some(path) = path.strip_prefix(RUSTC_PREFIX) { if let Some(index) = path.find('/') { let src_path = &path[index + 1..]; let src_path = rustc_source_root.0.join(src_path); return src_path.to_str().unwrap().to_string().replace('\\', "/"); } } } path.into_owned() } static HASH_REGEX: OnceLock = OnceLock::new(); fn demangle(function: &str) -> String { // Remove hash from the end of legacy dmangled named let regex = HASH_REGEX.get_or_init(|| { Regex::new(r".*::[a-z0-9]{17}$").expect("Could not create regular expression") }); let mut demangled = rustc_demangle::demangle(function).to_string(); if regex.find(&demangled).is_some() { demangled.drain(demangled.len() - 19..); } demangled } #[cfg(test)] mod tests { use crate::remark::{parse_remarks, Remark, RemarkLoadOptions}; use crate::RustcSourceRoot; use std::path::PathBuf; struct Options { external: bool, filter_kind: Vec, source_dir: PathBuf, rustc_source_root: Option, } impl Options { fn filter(mut self, kind: &str) -> Self { self.filter_kind.push(kind.to_string()); self } fn rustc_source_root(mut self, path: &str) -> Self { self.rustc_source_root = Some(PathBuf::from(path)); self } fn external(mut self, external: bool) -> Self { self.external = external; self } } impl Default for Options { fn default() -> Self { Self { external: true, filter_kind: vec![], source_dir: PathBuf::from("/tmp"), rustc_source_root: None, } } } impl From for RemarkLoadOptions { fn from(value: Options) -> Self { let Options { external, filter_kind, source_dir, rustc_source_root, } = value; Self { external, source_dir, filter_kind, rustc_source_root: rustc_source_root.map(RustcSourceRoot), } } } #[test] fn parse_single() { let input = r#"--- !Missed Pass: sdagisel Name: FastISelFailure Function: __rust_alloc DebugLoc: { File: '/std/src/sys_common/backtrace.rs', Line: 131, Column: 0 } Args: - String: FastISel missed call - String: ': ' - String: ' %3 = tail call ptr @__rdl_alloc(i64 %0, i64 %1)' - String: ' (in function: __rust_alloc)' ..."#; insta::assert_debug_snapshot!(parse(input, Options::default()), @r###" [ Remark { pass: "sdagisel", name: "FastISelFailure", function: Function { name: "__rust_alloc", location: Some( Location { file: "/std/src/sys_common/backtrace.rs", line: 131, column: 0, }, ), }, message: [ String( "FastISel missed call: %3 = tail call ptr @__rdl_alloc(i64 %0, i64 %1) (in function: __rust_alloc)", ), ], hotness: None, }, ] "###); } #[test] fn parse_multiple() { let input = r#"--- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/foo/rust/rust/library/std/src/rt.rs', Line: 165, Column: 17 } Function: _ZN3std2rt10lang_start17h9096f6f84fb08eb2E Args: - Callee: _ZN3std2rt19lang_start_internal17had90330d479f72f8E - String: ' will not be inlined into ' - Caller: _ZN3std2rt10lang_start17h9096f6f84fb08eb2E DebugLoc: { File: '/foo/rust/rust/library/std/src/rt.rs', Line: 159, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 7, Column: 5 } Function: _ZN7remarks4main17hc92ae132ef1efa8eE Args: - Callee: _ZN3std2io5stdio6_print17hdb04fec352560b87E - String: ' will not be inlined into ' - Caller: _ZN7remarks4main17hc92ae132ef1efa8eE DebugLoc: { File: 'src/main.rs', Line: 6, Column: 0 } - String: ' because its definition is unavailable' ..."#; insta::assert_debug_snapshot!(parse(input, Options::default()), @r###" [ Remark { pass: "inline", name: "NoDefinition", function: Function { name: "std::rt::lang_start", location: Some( Location { file: "/foo/rust/rust/library/std/src/rt.rs", line: 165, column: 17, }, ), }, message: [ String( "std::rt::lang_start_internal will not be inlined into ", ), AnnotatedString { message: "std::rt::lang_start", location: Location { file: "/foo/rust/rust/library/std/src/rt.rs", line: 159, column: 0, }, }, String( " because its definition is unavailable", ), ], hotness: None, }, Remark { pass: "inline", name: "NoDefinition", function: Function { name: "remarks::main", location: Some( Location { file: "src/main.rs", line: 7, column: 5, }, ), }, message: [ String( "std::io::stdio::_print will not be inlined into ", ), AnnotatedString { message: "remarks::main", location: Location { file: "src/main.rs", line: 6, column: 0, }, }, String( " because its definition is unavailable", ), ], hotness: None, }, ] "###); } #[test] fn parse_no_location() { let input = r#"--- !Missed Pass: sdagisel Name: FastISelFailure Function: __rust_alloc Args: - String: FastISel missed call - String: ': ' - String: ' %3 = tail call ptr @__rdl_alloc(i64 %0, i64 %1)' - String: ' (in function: __rust_alloc)' ..."#; insta::assert_debug_snapshot!(parse(input, Options::default()), @"[]"); } #[test] fn parse_ignored_type() { let input = r#"--- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/projects/personal/rust/rust/library/std/src/sys_common/backtrace.rs', Line: 135, Column: 18 } Function: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E Args: - String: '''' - Callee: _ZN4core3ops8function6FnOnce9call_once17hde3380935eb1addfE - String: ''' inlined into ''' - Caller: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E DebugLoc: { File: '/projects/personal/rust/rust/library/std/src/sys_common/backtrace.rs', Line: 131, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E - String: ':' - Line: '4' - String: ':' - Column: '18' - String: ';' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: __rust_alloc Args: - Pass: Fast Register Allocator - String: ': Function: ' - Function: __rust_alloc - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '7' - String: ' to ' - MIInstrsAfter: '1' - String: '; Delta: ' - Delta: '-6' ..."#; assert!(parse(input, Options::default()).is_empty()); } #[test] fn parse_gvn() { let input = r#"--- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/projects/personal/rust/rust/library/core/src/result.rs', Line: 1948, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17ha53db71e3f649c60E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/projects/personal/rust/rust/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ..."#; assert_eq!(parse(input, Options::default()).len(), 1); } #[test] fn parse_filter() { let input = r#"--- !Missed Pass: gvn Name: Foo DebugLoc: { File: '/projects/personal/rust/rust/library/core/src/result.rs', Line: 1948, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17ha53db71e3f649c60E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/projects/personal/rust/rust/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ..."#; assert!(parse(input, Options::default().filter("Foo")).is_empty()); } #[test] fn parse_hotness() { let input = r#"--- !Missed Pass: regalloc Name: LoopSpillReloadCopies DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 114, Column: 13 } Function: _ZN3std2io16append_to_string17hcf3f6e91099a64a2E Hotness: 2 Args: - NumReloads: '3' - String: ' reloads ' - TotalReloadsCost: '4.607052e-10' - String: ' total reloads cost ' - NumVRCopies: '2' - String: ' virtual registers copies ' - TotalCopiesCost: '5.000000e-01' - String: ' total copies cost ' - String: generated in loop ..."#; insta::assert_debug_snapshot!(parse(input, Options::default()), @r###" [ Remark { pass: "regalloc", name: "LoopSpillReloadCopies", function: Function { name: "std::io::append_to_string", location: Some( Location { file: "/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs", line: 114, column: 13, }, ), }, message: [ String( "3 reloads 4.607052e-10 total reloads cost 2 virtual registers copies 5.000000e-01 total copies cost generated in loop", ), ], hotness: Some( 2, ), }, ] "###); } #[test] fn parse_remap_rust_source() { let input = r#"--- !Missed Pass: regalloc Name: LoopSpillReloadCopies DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 114, Column: 13 } Function: _ZN3std2io16append_to_string17hcf3f6e91099a64a2E Args: ..."#; insta::assert_debug_snapshot!(parse(input, Options::default().external(true).rustc_source_root("/foo/bar")), @r###" [ Remark { pass: "regalloc", name: "LoopSpillReloadCopies", function: Function { name: "std::io::append_to_string", location: Some( Location { file: "/foo/bar/library/std/src/io/buffered/bufreader/buffer.rs", line: 114, column: 13, }, ), }, message: [], hotness: None, }, ] "###); } fn parse(input: &str, opts: Options) -> Vec { parse_remarks(input.as_bytes(), &opts.into()) } } ================================================ FILE: src/remark/parse.rs ================================================ use std::borrow::Cow; use std::collections::BTreeMap; #[derive(serde::Deserialize, Debug)] #[serde(rename_all = "PascalCase")] pub struct DebugLocation<'a> { #[serde(borrow)] pub file: Cow<'a, str>, pub line: u32, pub column: u32, } #[derive(serde::Deserialize, Debug)] #[serde(rename_all = "PascalCase")] pub struct RemarkArgString<'a> { #[serde(borrow)] pub string: Cow<'a, str>, } #[derive(serde::Deserialize, Debug)] #[serde(rename_all = "PascalCase")] pub struct RemarkArgCallee<'a> { #[serde(borrow)] pub callee: Cow<'a, str>, pub debug_loc: Option>, } #[derive(serde::Deserialize, Debug)] #[serde(rename_all = "PascalCase")] pub struct RemarkArgCaller<'a> { #[serde(borrow)] pub caller: Cow<'a, str>, pub debug_loc: Option>, } #[derive(serde::Deserialize, Debug)] #[serde(rename_all = "PascalCase")] pub struct RemarkArgReason<'a> { #[serde(borrow)] pub reason: Cow<'a, str>, } #[derive(serde::Deserialize, Debug)] #[serde(untagged)] pub enum RemarkArg<'a> { String(RemarkArgString<'a>), Callee(RemarkArgCallee<'a>), Caller(RemarkArgCaller<'a>), Reason(RemarkArgReason<'a>), #[serde(borrow)] Other(BTreeMap, serde_yaml::Value>), } #[derive(serde::Deserialize, Debug)] #[serde(rename_all = "PascalCase")] pub struct MissedRemark<'a> { #[serde(borrow)] pub pass: Cow<'a, str>, #[serde(borrow)] pub name: Cow<'a, str>, pub debug_loc: Option>, #[serde(borrow)] pub function: Cow<'a, str>, pub args: Vec>, pub hotness: Option, } #[derive(serde::Deserialize, Debug)] #[serde(rename_all = "PascalCase")] pub struct AnalysisRemark<'a> { #[serde(borrow)] pub pass: Cow<'a, str>, #[serde(borrow)] pub name: Cow<'a, str>, pub debug_loc: Option>, #[serde(borrow)] pub function: Cow<'a, str>, pub args: Vec>, pub hotness: Option, } #[derive(serde::Deserialize, Debug)] pub enum Remark<'a> { #[serde(borrow)] Missed(MissedRemark<'a>), Analysis(AnalysisRemark<'a>), Passed {}, } ================================================ FILE: src/render.rs ================================================ use std::borrow::Cow; use std::fmt::Write; use std::fs::File; use std::io::BufWriter; use std::path::{Component, Path, Prefix, MAIN_SEPARATOR}; use anyhow::Context; use askama::Template; use html_escape::{encode_safe, encode_safe_to_string}; use rayon::iter::IntoParallelIterator; use rayon::prelude::*; use rust_embed::RustEmbed; use crate::remark::{Function, Line, Location, MessagePart, Remark}; use crate::utils::callback::LoadCallback; use crate::utils::data_structures::Map; pub const INDEX_FILE_PATH: &str = "index.html"; const REMARK_LIST_FILE_PATH: &str = "remarks.html"; /// Directory where sources will be stored. /// Relative to the output directory. const SRC_DIR_NAME: &str = "src"; #[derive(RustEmbed)] #[folder = "templates/assets"] struct StaticAssets; #[derive(serde::Serialize)] struct RemarkIndexEntry<'a> { name: &'a str, location: Option, function: Cow<'a, str>, message: String, hotness: Option, } #[derive(serde::Serialize, PartialEq, Eq, Hash)] struct RemarkSourceEntry<'a> { name: &'a str, function: &'a str, line: Line, message: String, hotness: Option, } #[derive(Template)] #[template(path = "remark-list.jinja")] pub struct RemarkListTemplate { remarks_json: String, } #[derive(serde::Serialize)] struct SourceFileLink<'a> { name: &'a str, file: String, remark_count: u64, } #[derive(Template)] #[template(path = "index.jinja")] pub struct IndexTemplate<'a> { source_links: Vec>, } #[derive(Template)] #[template(path = "source-file.jinja")] pub struct SourceFileTemplate<'a> { path: &'a str, remarks: Vec>, file_content: String, } pub fn render_remarks( remarks: Vec, source_dir: &Path, output_dir: &Path, callback: Option<&(dyn LoadCallback + Sync)>, ) -> anyhow::Result<()> { let _ = std::fs::remove_dir_all(output_dir); std::fs::create_dir_all(output_dir).context("Cannot create output directory")?; // Copy all static assets to the output directory for asset_path in StaticAssets::iter() { let data = StaticAssets::get(&asset_path).unwrap().data; let path = output_dir.join("assets").join(asset_path.as_ref()); if let Some(parent) = path.parent() { std::fs::create_dir_all(parent).context("Cannot create output asset directory")?; } std::fs::write(path, data).context("Cannot copy asset file to output directory")?; } // Filter duplicated remarks caused by inlining // When the compiler performs inlining, it can attribute multiple remarks with the same contents // to the same *location*, which only differ by the function (name) that they refer to. // This is usually just noise in the UI. So before outputting the remarks, we normalize them by // removing such duplicates. // Use references to original remarks to avoid allocations // We sort the remarks and then dedup consecutive entries that have everything except the // function name the same. struct NormalizedRemark<'a>(&'a Remark); impl NormalizedRemark<'_> { // Used for filtering duplicated remarks caused by function.name being inconsistent from inlining // excludes function.name from consideration fn dedup_key(&self) -> (&str, &str, &[MessagePart], Option<&i32>, Option<&Location>) { let Remark { pass, name, function: Function { name: _, location: function_location, }, message, hotness, } = self.0; ( pass, name, message, hotness.as_ref(), function_location.as_ref(), ) } } let mut remarks: Vec = remarks.par_iter().map(NormalizedRemark).collect(); remarks.par_sort_by(|a, b| (a.dedup_key()).cmp(&(b.dedup_key()))); remarks.dedup_by(|a, b| a.dedup_key() == b.dedup_key()); let mut file_to_remarks: Map<&str, Vec> = Map::default(); // Create remark list page let remark_entries = remarks .iter() .map(|r| { let NormalizedRemark(Remark { pass: _, name, function, message, hotness, }) = r; let entry = RemarkIndexEntry { name, location: function.location.as_ref().map(|location| { let mut buffer = String::new(); render_remark_link(&mut buffer, location, Some(SRC_DIR_NAME), None); buffer }), function: encode_safe(&function.name), message: format_message(message, Some(SRC_DIR_NAME)), hotness: *hotness, }; if let Some(ref location) = function.location { file_to_remarks .entry(&location.file) .or_default() .push(RemarkSourceEntry { name, function: &function.name, line: location.line, // Inside the file, the link should be relative to the src directory message: format_message(message, None), hotness: *hotness, }); } // We also need to create file mappings for all referenced files, not just for files // with a remark. for msg_part in &r.0.message { if let MessagePart::AnnotatedString { location, .. } = msg_part { file_to_remarks.entry(&location.file).or_default(); } } entry }) .collect::>(); let serialized_remarks = serde_json::to_string(&remark_entries)?; let remark_list_page = RemarkListTemplate { remarks_json: serialized_remarks, }; render_to_file(&remark_list_page, &output_dir.join(REMARK_LIST_FILE_PATH))?; let mut source_links: Vec = file_to_remarks .iter() .filter(|(_, remarks)| !remarks.is_empty()) .map(|(name, remarks)| { let mut file = String::new(); path_to_relative_url(&mut file, Some(SRC_DIR_NAME), name); SourceFileLink { name, file, remark_count: remarks.len() as u64, } }) .collect(); // Sort by relative files first, then in descending order by remark count source_links.par_sort_by_key(|link| (link.name.starts_with('/'), -(link.remark_count as i64))); let index_page = IndexTemplate { source_links }; render_to_file(&index_page, &output_dir.join(INDEX_FILE_PATH))?; if let Some(callback) = callback { callback.start(file_to_remarks.len() as u64); } // sort the order of remarks in each file to make them more readable for file in file_to_remarks.iter_mut() { file.1.par_sort_by_key(|f| f.message.clone()); } // Render all found source files let results = file_to_remarks .into_par_iter() .map(|(source_file, remarks)| -> anyhow::Result<()> { let original_path = resolve_path(source_dir, Path::new(source_file)); let file_content = std::fs::read_to_string(&original_path) .with_context(|| format!("Cannot read source file {}", original_path.display()))?; if let Some(callback) = callback { callback.advance(); } // TODO: deduplicate links to "self" (the same source file) let mut buffer = String::new(); path_to_relative_url(&mut buffer, Some(SRC_DIR_NAME), source_file); let output_path = output_dir.join(buffer); let source_file_page = SourceFileTemplate { path: source_file, remarks, file_content, }; render_to_file(&source_file_page, Path::new(&output_path)) .with_context(|| anyhow::anyhow!("Failed to render {source_file}"))?; Ok(()) }) .collect::>>(); let failed = results.into_iter().filter(|r| r.is_err()).count(); if failed > 0 { log::warn!("Failed to write {failed} source file(s)"); } if let Some(callback) = callback { callback.finish(); } Ok(()) } fn format_message(parts: &[MessagePart], prefix: Option<&str>) -> String { let mut buffer = String::with_capacity(64); for part in parts { match part { MessagePart::String(string) => { encode_safe_to_string(string, &mut buffer); } MessagePart::AnnotatedString { message, location } => { render_remark_link(&mut buffer, location, prefix, Some(message)); } } } buffer = buffer.replace("\n", "
"); // keep new lines in the string buffer } fn render_remark_link( buffer: &mut String, location: &Location, prefix: Option<&str>, label: Option<&str>, ) { buffer.push_str(""); let label = label.map(Cow::from).unwrap_or_else(|| { format!("{}:{}:{}", location.file, location.line, location.column).into() }); encode_safe_to_string(label, buffer); buffer.push_str(""); } /// Transforms `path` into a (hopefully unique) relative path that is normalized. /// Slashes and path prefixes (e.g. C:) are removed from the paths and replaced with placeholders. fn path_to_relative_url(buffer: &mut String, prefix: Option<&str>, path: &str) { if let Some(prefix) = prefix { buffer.push_str(prefix); buffer.push(MAIN_SEPARATOR); } let path = Path::new(path); let mut first = true; for component in path.components() { if !first { buffer.push('_'); } first = false; match component { Component::Prefix(prefix) => { match prefix.kind() { Prefix::Disk(disk) => buffer.push(disk as char), _ => buffer.push_str("_prefix_"), }; first = true; } Component::CurDir | Component::ParentDir => buffer.push('_'), Component::Normal(component) => { buffer.push_str(&component.to_string_lossy()); } Component::RootDir => {} } } buffer.push_str(".html"); } fn resolve_path<'a>(root_dir: &Path, path: &'a Path) -> Cow<'a, Path> { if path.is_absolute() { path.into() } else { root_dir.join(path).into() } } fn render_to_file(template: &T, path: &Path) -> anyhow::Result<()> { if let Some(parent) = path.parent() { std::fs::create_dir_all(parent) .context("Cannot create directory for storing rendered file")?; } let file = File::create(path) .with_context(|| format!("Cannot create template file {}", path.display()))?; let mut writer = BufWriter::new(file); template .write_into(&mut writer) .with_context(|| format!("Cannot render template into {}", path.display()))?; Ok(()) } #[cfg(test)] mod tests { use crate::render::path_to_relative_url; #[cfg(windows)] #[test] fn relative_path_c_prefix() { check_path(r#"C:\foo\bar"#, "C_foo_bar.html"); } #[test] fn relative_path_absolute() { check_path("/tmp/foo/bar", "_tmp_foo_bar.html"); } #[test] fn relative_path_relative() { check_path("foo/bar", "foo_bar.html"); } fn check_path(path: &str, expected: &str) { let mut buffer = String::new(); path_to_relative_url(&mut buffer, None, path); assert_eq!(buffer, expected); } } ================================================ FILE: src/utils/callback.rs ================================================ use indicatif::ProgressBar; pub trait LoadCallback { fn start(&self, count: u64); fn advance(&self); fn finish(&self); } pub struct ProgressBarCallback { pbar: ProgressBar, } impl Default for ProgressBarCallback { fn default() -> Self { Self { pbar: ProgressBar::new(1), } } } impl LoadCallback for ProgressBarCallback { fn start(&self, count: u64) { self.pbar.set_length(count); } fn advance(&self) { self.pbar.inc(1); } fn finish(&self) { self.pbar.finish_using_style(); } } ================================================ FILE: src/utils/cli.rs ================================================ use colored::{ColoredString, Colorize}; use std::path::Path; /// Formats a path in a unified format to be printed in CLI. pub fn cli_format_path>(path: P) -> ColoredString { path.as_ref().display().to_string().yellow() } ================================================ FILE: src/utils/data_structures.rs ================================================ use fxhash::FxBuildHasher; pub type Map = hashbrown::HashMap; pub type Set = hashbrown::HashSet; ================================================ FILE: src/utils/io.rs ================================================ use std::path::{Path, PathBuf}; /// Make sure that directory exists. pub fn ensure_directory(path: &Path) -> std::io::Result { std::fs::create_dir_all(path)?; Ok(path.to_path_buf()) } /// Clears all files from the directory, and recreates it. pub fn clear_directory(path: &Path) -> std::io::Result { std::fs::remove_dir_all(path)?; ensure_directory(path) } ================================================ FILE: src/utils/mod.rs ================================================ use crate::render::INDEX_FILE_PATH; use crate::utils::cli::cli_format_path; use std::path::Path; pub mod callback; pub mod cli; pub mod data_structures; pub mod io; pub mod timing; pub fn open_result(dir: &Path, open: bool) -> anyhow::Result<()> { let index_path = dir.join(INDEX_FILE_PATH); if open { opener::open_browser(&index_path).map_err(|error| { anyhow::anyhow!( "Could not open {} in browser: {error:?}", cli_format_path(index_path) ) })?; } else { log::info!( "Open {} in a browser to see the results.", cli_format_path(index_path) ); } Ok(()) } ================================================ FILE: src/utils/timing.rs ================================================ use std::time::Instant; pub fn time_block_log_debug R, R>(label: &str, f: F) -> R { let start = Instant::now(); let result = f(); log::debug!("{label} ({:.2}s)", start.elapsed().as_secs_f32()); result } pub fn time_block_log_info R, R>(label: &str, f: F) -> R { let start = Instant::now(); let result = f(); log::info!("{label} ({:.2}s)", start.elapsed().as_secs_f32()); result } pub fn time_block_print R, R>(label: &str, f: F) -> R { let start = Instant::now(); let result = f(); eprintln!("{label} finished in {:.2}s", start.elapsed().as_secs_f32()); result } ================================================ FILE: templates/index.jinja ================================================ {% extends "layout.html" %} {% block title %}File list{% endblock %} {% block content %} {% include "menu.html" %}
    {% for link in source_links %}
  • {{ link.name }} ({{ link.remark_count }} remark{% if link.remark_count != 1 %}s{% endif %})
  • {% endfor %}
{% endblock %} ================================================ FILE: templates/layout.html ================================================ {% block title %}{% endblock %} {% block head %}{% endblock %}
{% block content %}{% endblock %}
{% block script %}{% endblock %} ================================================ FILE: templates/menu.html ================================================ ================================================ FILE: templates/remark-list.jinja ================================================ {% extends "layout.html" %} {% block title %}Remark list{% endblock %} {% block head %} {% call super() %} {% endblock %} {% block content %} {% include "menu.html" %}
{% endblock %} {% block script %} {% endblock %} ================================================ FILE: templates/source-file.jinja ================================================ {% extends "layout.html" %} {% block title %}File {{ path }}{% endblock %} {% block head %} {% call super() %} {% endblock %} {% block content %}

{{ path }}

{% endblock %} {% block script %} {% endblock %} ================================================ FILE: tests/data/remarks-1/37v4yjwjhlguzgkm.codegen.opt.yaml ================================================ --- !Missed Pass: sdagisel Name: FastISelFailure Function: __rust_alloc Args: - String: FastISel missed call - String: ': ' - String: ' %3 = tail call ptr @__rdl_alloc(i64 %0, i64 %1)' - String: ' (in function: __rust_alloc)' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: __rust_alloc Args: - Pass: 'X86 DAG->DAG Instruction Selection' - String: ': Function: ' - Function: __rust_alloc - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '0' - String: ' to ' - MIInstrsAfter: '7' - String: '; Delta: ' - Delta: '7' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: __rust_alloc Args: - Pass: Fast Register Allocator - String: ': Function: ' - Function: __rust_alloc - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '7' - String: ' to ' - MIInstrsAfter: '1' - String: '; Delta: ' - Delta: '-6' ... --- !Analysis Pass: prologepilog Name: StackSize Function: __rust_alloc Args: - NumStackBytes: '0' - String: ' stack bytes in function' ... --- !Analysis Pass: stack-frame-layout Name: StackLayout Function: __rust_alloc Args: - String: "\nFunction: __rust_alloc" ... --- !Analysis Pass: asm-printer Name: InstructionMix Function: __rust_alloc Args: - String: 'BasicBlock: ' - BasicBlock: '' - String: "\n" - String: '' - String: ': ' - INST_: '1' - String: "\n" ... --- !Analysis Pass: asm-printer Name: InstructionCount Function: __rust_alloc Args: - NumInstructions: '1' - String: ' instructions in function' ... --- !Missed Pass: sdagisel Name: FastISelFailure Function: __rust_dealloc Args: - String: FastISel missed call - String: ': ' - String: ' tail call void @__rdl_dealloc(ptr %0, i64 %1, i64 %2)' - String: ' (in function: __rust_dealloc)' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: __rust_dealloc Args: - Pass: 'X86 DAG->DAG Instruction Selection' - String: ': Function: ' - Function: __rust_dealloc - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '0' - String: ' to ' - MIInstrsAfter: '10' - String: '; Delta: ' - Delta: '10' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: __rust_dealloc Args: - Pass: Fast Register Allocator - String: ': Function: ' - Function: __rust_dealloc - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '10' - String: ' to ' - MIInstrsAfter: '1' - String: '; Delta: ' - Delta: '-9' ... --- !Analysis Pass: prologepilog Name: StackSize Function: __rust_dealloc Args: - NumStackBytes: '0' - String: ' stack bytes in function' ... --- !Analysis Pass: stack-frame-layout Name: StackLayout Function: __rust_dealloc Args: - String: "\nFunction: __rust_dealloc" ... --- !Analysis Pass: asm-printer Name: InstructionMix Function: __rust_dealloc Args: - String: 'BasicBlock: ' - BasicBlock: '' - String: "\n" - String: '' - String: ': ' - INST_: '1' - String: "\n" ... --- !Analysis Pass: asm-printer Name: InstructionCount Function: __rust_dealloc Args: - NumInstructions: '1' - String: ' instructions in function' ... --- !Missed Pass: sdagisel Name: FastISelFailure Function: __rust_realloc Args: - String: FastISel missed call - String: ': ' - String: ' %5 = tail call ptr @__rdl_realloc(ptr %0, i64 %1, i64 %2, i64 %3)' - String: ' (in function: __rust_realloc)' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: __rust_realloc Args: - Pass: 'X86 DAG->DAG Instruction Selection' - String: ': Function: ' - Function: __rust_realloc - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '0' - String: ' to ' - MIInstrsAfter: '13' - String: '; Delta: ' - Delta: '13' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: __rust_realloc Args: - Pass: Fast Register Allocator - String: ': Function: ' - Function: __rust_realloc - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '13' - String: ' to ' - MIInstrsAfter: '1' - String: '; Delta: ' - Delta: '-12' ... --- !Analysis Pass: prologepilog Name: StackSize Function: __rust_realloc Args: - NumStackBytes: '0' - String: ' stack bytes in function' ... --- !Analysis Pass: stack-frame-layout Name: StackLayout Function: __rust_realloc Args: - String: "\nFunction: __rust_realloc" ... --- !Analysis Pass: asm-printer Name: InstructionMix Function: __rust_realloc Args: - String: 'BasicBlock: ' - BasicBlock: '' - String: "\n" - String: '' - String: ': ' - INST_: '1' - String: "\n" ... --- !Analysis Pass: asm-printer Name: InstructionCount Function: __rust_realloc Args: - NumInstructions: '1' - String: ' instructions in function' ... --- !Missed Pass: sdagisel Name: FastISelFailure Function: __rust_alloc_zeroed Args: - String: FastISel missed call - String: ': ' - String: ' %3 = tail call ptr @__rdl_alloc_zeroed(i64 %0, i64 %1)' - String: ' (in function: __rust_alloc_zeroed)' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: __rust_alloc_zeroed Args: - Pass: 'X86 DAG->DAG Instruction Selection' - String: ': Function: ' - Function: __rust_alloc_zeroed - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '0' - String: ' to ' - MIInstrsAfter: '7' - String: '; Delta: ' - Delta: '7' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: __rust_alloc_zeroed Args: - Pass: Fast Register Allocator - String: ': Function: ' - Function: __rust_alloc_zeroed - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '7' - String: ' to ' - MIInstrsAfter: '1' - String: '; Delta: ' - Delta: '-6' ... --- !Analysis Pass: prologepilog Name: StackSize Function: __rust_alloc_zeroed Args: - NumStackBytes: '0' - String: ' stack bytes in function' ... --- !Analysis Pass: stack-frame-layout Name: StackLayout Function: __rust_alloc_zeroed Args: - String: "\nFunction: __rust_alloc_zeroed" ... --- !Analysis Pass: asm-printer Name: InstructionMix Function: __rust_alloc_zeroed Args: - String: 'BasicBlock: ' - BasicBlock: '' - String: "\n" - String: '' - String: ': ' - INST_: '1' - String: "\n" ... --- !Analysis Pass: asm-printer Name: InstructionCount Function: __rust_alloc_zeroed Args: - NumInstructions: '1' - String: ' instructions in function' ... --- !Missed Pass: sdagisel Name: FastISelFailure Function: __rust_alloc_error_handler Args: - String: FastISel missed call - String: ': ' - String: ' tail call void @__rg_oom(i64 %0, i64 %1)' - String: ' (in function: __rust_alloc_error_handler)' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: __rust_alloc_error_handler Args: - Pass: 'X86 DAG->DAG Instruction Selection' - String: ': Function: ' - Function: __rust_alloc_error_handler - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '0' - String: ' to ' - MIInstrsAfter: '7' - String: '; Delta: ' - Delta: '7' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: __rust_alloc_error_handler Args: - Pass: Fast Register Allocator - String: ': Function: ' - Function: __rust_alloc_error_handler - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '7' - String: ' to ' - MIInstrsAfter: '1' - String: '; Delta: ' - Delta: '-6' ... --- !Analysis Pass: prologepilog Name: StackSize Function: __rust_alloc_error_handler Args: - NumStackBytes: '0' - String: ' stack bytes in function' ... --- !Analysis Pass: stack-frame-layout Name: StackLayout Function: __rust_alloc_error_handler Args: - String: "\nFunction: __rust_alloc_error_handler" ... --- !Analysis Pass: asm-printer Name: InstructionMix Function: __rust_alloc_error_handler Args: - String: 'BasicBlock: ' - BasicBlock: '' - String: "\n" - String: '' - String: ': ' - INST_: '1' - String: "\n" ... --- !Analysis Pass: asm-printer Name: InstructionCount Function: __rust_alloc_error_handler Args: - NumInstructions: '1' - String: ' instructions in function' ... ================================================ FILE: tests/data/remarks-1/37v4yjwjhlguzgkm.opt.opt.yaml ================================================ ================================================ FILE: tests/data/remarks-1/remarks.67ea4a01cbc73fb0-cgu.0.codegen.opt.yaml ================================================ --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', Line: 131, Column: 0 } Function: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E Args: - Pass: 'X86 DAG->DAG Instruction Selection' - String: ': Function: ' - Function: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '0' - String: ' to ' - MIInstrsAfter: '6' - String: '; Delta: ' - Delta: '6' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', Line: 131, Column: 0 } Function: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E Args: - Pass: Virtual Register Rewriter - String: ': Function: ' - Function: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '6' - String: ' to ' - MIInstrsAfter: '5' - String: '; Delta: ' - Delta: '-1' ... --- !Analysis Pass: prologepilog Name: StackSize DebugLoc: { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', Line: 131, Column: 0 } Function: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E Args: - NumStackBytes: '8' - String: ' stack bytes in function' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', Line: 131, Column: 0 } Function: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E Args: - Pass: 'Prologue/Epilogue Insertion & Frame Finalization' - String: ': Function: ' - Function: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '5' - String: ' to ' - MIInstrsAfter: '7' - String: '; Delta: ' - Delta: '2' ... --- !Analysis Pass: stack-frame-layout Name: StackLayout DebugLoc: { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', Line: 131, Column: 0 } Function: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E Args: - String: "\nFunction: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E" ... --- !Analysis Pass: asm-printer Name: InstructionMix Function: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E Args: - String: 'BasicBlock: ' - BasicBlock: '' - String: "\n" - String: '' - String: ': ' - INST_: '4' - String: "\n" ... --- !Analysis Pass: asm-printer Name: InstructionCount DebugLoc: { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', Line: 131, Column: 0 } Function: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E Args: - NumInstructions: '5' - String: ' instructions in function' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 0 } Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' Args: - Pass: 'X86 DAG->DAG Instruction Selection' - String: ': Function: ' - Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '0' - String: ' to ' - MIInstrsAfter: '9' - String: '; Delta: ' - Delta: '9' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 0 } Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' Args: - Pass: Simple Register Coalescing - String: ': Function: ' - Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '9' - String: ' to ' - MIInstrsAfter: '8' - String: '; Delta: ' - Delta: '-1' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 0 } Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' Args: - Pass: Virtual Register Rewriter - String: ': Function: ' - Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '8' - String: ' to ' - MIInstrsAfter: '6' - String: '; Delta: ' - Delta: '-2' ... --- !Analysis Pass: prologepilog Name: StackSize DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 0 } Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' Args: - NumStackBytes: '8' - String: ' stack bytes in function' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 0 } Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' Args: - Pass: 'Prologue/Epilogue Insertion & Frame Finalization' - String: ': Function: ' - Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '6' - String: ' to ' - MIInstrsAfter: '8' - String: '; Delta: ' - Delta: '2' ... --- !Analysis Pass: stack-frame-layout Name: StackLayout DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 0 } Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' Args: - String: "\nFunction: _ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE" ... --- !Analysis Pass: asm-printer Name: InstructionMix Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' Args: - String: 'BasicBlock: ' - BasicBlock: '' - String: "\n" - String: '' - String: ': ' - INST_: '6' - String: "\n" ... --- !Analysis Pass: asm-printer Name: InstructionCount DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 0 } Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' Args: - NumInstructions: '6' - String: ' instructions in function' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: '/foo/rust/library/core/src/ops/function.rs', Line: 250, Column: 0 } Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' Args: - Pass: 'X86 DAG->DAG Instruction Selection' - String: ': Function: ' - Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '0' - String: ' to ' - MIInstrsAfter: '9' - String: '; Delta: ' - Delta: '9' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: '/foo/rust/library/core/src/ops/function.rs', Line: 250, Column: 0 } Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' Args: - Pass: Simple Register Coalescing - String: ': Function: ' - Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '9' - String: ' to ' - MIInstrsAfter: '8' - String: '; Delta: ' - Delta: '-1' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: '/foo/rust/library/core/src/ops/function.rs', Line: 250, Column: 0 } Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' Args: - Pass: Virtual Register Rewriter - String: ': Function: ' - Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '8' - String: ' to ' - MIInstrsAfter: '6' - String: '; Delta: ' - Delta: '-2' ... --- !Analysis Pass: prologepilog Name: StackSize DebugLoc: { File: '/foo/rust/library/core/src/ops/function.rs', Line: 250, Column: 0 } Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' Args: - NumStackBytes: '8' - String: ' stack bytes in function' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: '/foo/rust/library/core/src/ops/function.rs', Line: 250, Column: 0 } Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' Args: - Pass: 'Prologue/Epilogue Insertion & Frame Finalization' - String: ': Function: ' - Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '6' - String: ' to ' - MIInstrsAfter: '8' - String: '; Delta: ' - Delta: '2' ... --- !Analysis Pass: stack-frame-layout Name: StackLayout DebugLoc: { File: '/foo/rust/library/core/src/ops/function.rs', Line: 250, Column: 0 } Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' Args: - String: "\nFunction: _ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE" ... --- !Analysis Pass: asm-printer Name: InstructionMix Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' Args: - String: 'BasicBlock: ' - BasicBlock: '' - String: "\n" - String: '' - String: ': ' - INST_: '6' - String: "\n" ... --- !Analysis Pass: asm-printer Name: InstructionCount DebugLoc: { File: '/foo/rust/library/core/src/ops/function.rs', Line: 250, Column: 0 } Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' Args: - NumInstructions: '6' - String: ' instructions in function' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: '/foo/rust/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } Function: '_ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE' Args: - Pass: 'X86 DAG->DAG Instruction Selection' - String: ': Function: ' - Function: '_ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE' - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '0' - String: ' to ' - MIInstrsAfter: '1' - String: '; Delta: ' - Delta: '1' ... --- !Analysis Pass: prologepilog Name: StackSize DebugLoc: { File: '/foo/rust/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } Function: '_ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE' Args: - NumStackBytes: '0' - String: ' stack bytes in function' ... --- !Analysis Pass: stack-frame-layout Name: StackLayout DebugLoc: { File: '/foo/rust/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } Function: '_ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE' Args: - String: "\nFunction: _ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE" ... --- !Analysis Pass: asm-printer Name: InstructionMix DebugLoc: { File: '/foo/rust/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE' Args: - String: 'BasicBlock: ' - BasicBlock: '' - String: "\n" - String: '' - String: ': ' - INST_: '1' - String: "\n" ... --- !Analysis Pass: asm-printer Name: InstructionCount DebugLoc: { File: '/foo/rust/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } Function: '_ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE' Args: - NumInstructions: '1' - String: ' instructions in function' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: 'src/main.rs', Line: 6, Column: 0 } Function: _ZN7remarks4main17hc92ae132ef1efa8eE Args: - Pass: 'X86 DAG->DAG Instruction Selection' - String: ': Function: ' - Function: _ZN7remarks4main17hc92ae132ef1efa8eE - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '0' - String: ' to ' - MIInstrsAfter: '15' - String: '; Delta: ' - Delta: '15' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: 'src/main.rs', Line: 6, Column: 0 } Function: _ZN7remarks4main17hc92ae132ef1efa8eE Args: - Pass: Merge disjoint stack slots - String: ': Function: ' - Function: _ZN7remarks4main17hc92ae132ef1efa8eE - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '15' - String: ' to ' - MIInstrsAfter: '13' - String: '; Delta: ' - Delta: '-2' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: 'src/main.rs', Line: 6, Column: 0 } Function: _ZN7remarks4main17hc92ae132ef1efa8eE Args: - Pass: Virtual Register Rewriter - String: ': Function: ' - Function: _ZN7remarks4main17hc92ae132ef1efa8eE - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '13' - String: ' to ' - MIInstrsAfter: '12' - String: '; Delta: ' - Delta: '-1' ... --- !Analysis Pass: prologepilog Name: StackSize DebugLoc: { File: 'src/main.rs', Line: 6, Column: 0 } Function: _ZN7remarks4main17hc92ae132ef1efa8eE Args: - NumStackBytes: '56' - String: ' stack bytes in function' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange DebugLoc: { File: 'src/main.rs', Line: 6, Column: 0 } Function: _ZN7remarks4main17hc92ae132ef1efa8eE Args: - Pass: 'Prologue/Epilogue Insertion & Frame Finalization' - String: ': Function: ' - Function: _ZN7remarks4main17hc92ae132ef1efa8eE - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '12' - String: ' to ' - MIInstrsAfter: '14' - String: '; Delta: ' - Delta: '2' ... --- !Analysis Pass: stack-frame-layout Name: StackLayout DebugLoc: { File: 'src/main.rs', Line: 6, Column: 0 } Function: _ZN7remarks4main17hc92ae132ef1efa8eE Args: - String: "\nFunction: _ZN7remarks4main17hc92ae132ef1efa8eE" - String: "\nOffset: [SP" - Offset: '-48' - String: '], Type: ' - Type: Variable - String: ', Align: ' - Align: '8' - String: ', Size: ' - Size: '48' ... --- !Analysis Pass: asm-printer Name: InstructionMix Function: _ZN7remarks4main17hc92ae132ef1efa8eE Args: - String: 'BasicBlock: ' - BasicBlock: '' - String: "\n" - String: '' - String: ': ' - INST_: '12' - String: "\n" ... --- !Analysis Pass: asm-printer Name: InstructionCount DebugLoc: { File: 'src/main.rs', Line: 6, Column: 0 } Function: _ZN7remarks4main17hc92ae132ef1efa8eE Args: - NumInstructions: '12' - String: ' instructions in function' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: main Args: - Pass: 'X86 DAG->DAG Instruction Selection' - String: ': Function: ' - Function: main - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '0' - String: ' to ' - MIInstrsAfter: '23' - String: '; Delta: ' - Delta: '23' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: main Args: - Pass: Merge disjoint stack slots - String: ': Function: ' - Function: main - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '23' - String: ' to ' - MIInstrsAfter: '21' - String: '; Delta: ' - Delta: '-2' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: main Args: - Pass: Simple Register Coalescing - String: ': Function: ' - Function: main - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '21' - String: ' to ' - MIInstrsAfter: '19' - String: '; Delta: ' - Delta: '-2' ... --- !Missed Pass: regalloc Name: SpillReloadCopies Function: main Args: - NumVRCopies: '1' - String: ' virtual registers copies ' - TotalCopiesCost: '1.000000e+00' - String: ' total copies cost ' - String: generated in function ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: main Args: - Pass: Virtual Register Rewriter - String: ': Function: ' - Function: main - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '19' - String: ' to ' - MIInstrsAfter: '13' - String: '; Delta: ' - Delta: '-6' ... --- !Analysis Pass: prologepilog Name: StackSize Function: main Args: - NumStackBytes: '8' - String: ' stack bytes in function' ... --- !Analysis Pass: size-info Name: FunctionMISizeChange Function: main Args: - Pass: 'Prologue/Epilogue Insertion & Frame Finalization' - String: ': Function: ' - Function: main - String: ': ' - String: 'MI Instruction count changed from ' - MIInstrsBefore: '13' - String: ' to ' - MIInstrsAfter: '15' - String: '; Delta: ' - Delta: '2' ... --- !Analysis Pass: stack-frame-layout Name: StackLayout Function: main Args: - String: "\nFunction: main" - String: "\nOffset: [SP" - Offset: '-8' - String: '], Type: ' - Type: Variable - String: ', Align: ' - Align: '8' - String: ', Size: ' - Size: '8' ... --- !Analysis Pass: asm-printer Name: InstructionMix Function: main Args: - String: 'BasicBlock: ' - BasicBlock: '' - String: "\n" - String: '' - String: ': ' - INST_: '12' - String: "\n" ... --- !Analysis Pass: asm-printer Name: InstructionCount Function: main Args: - NumInstructions: '12' - String: ' instructions in function' ... ================================================ FILE: tests/data/remarks-1/remarks.67ea4a01cbc73fb0-cgu.0.opt.opt.yaml ================================================ --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', Line: 135, Column: 18 } Function: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E Args: - String: '''' - Callee: _ZN4core3ops8function6FnOnce9call_once17hde3380935eb1addfE - String: ''' inlined into ''' - Caller: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E DebugLoc: { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', Line: 131, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E - String: ':' - Line: '4' - String: ':' - Column: '18' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 18 } Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' Args: - String: '''' - Callee: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E DebugLoc: { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', Line: 131, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 18 } Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' Args: - String: '''' - Callee: '_ZN54_$LT$$LP$$RP$$u20$as$u20$std..process..Termination$GT$6report17hc8ee8ce6af31c006E' - String: ''' inlined into ''' - Caller: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' - String: ':' - Line: '0' - String: ':' - Column: '18' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/foo/rust/library/core/src/ops/function.rs', Line: 250, Column: 5 } Function: _ZN4core3ops8function6FnOnce9call_once17h45d79837d17bfedeE Args: - String: '''' - Callee: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE' DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core3ops8function6FnOnce9call_once17h45d79837d17bfedeE DebugLoc: { File: '/foo/rust/library/core/src/ops/function.rs', Line: 250, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '0' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3ops8function6FnOnce9call_once17h45d79837d17bfedeE - String: ':' - Line: '0' - String: ':' - Column: '5' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 18 } Function: _ZN4core3ops8function6FnOnce9call_once17h45d79837d17bfedeE Args: - String: '''' - Callee: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E DebugLoc: { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', Line: 131, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN4core3ops8function6FnOnce9call_once17h45d79837d17bfedeE DebugLoc: { File: '/foo/rust/library/core/src/ops/function.rs', Line: 250, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/foo/rust/library/core/src/ops/function.rs', Line: 250, Column: 5 } Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' Args: - String: '''' - Callee: _ZN4core3ops8function6FnOnce9call_once17h45d79837d17bfedeE - String: ''' inlined into ''' - Caller: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' DebugLoc: { File: '/foo/rust/library/core/src/ops/function.rs', Line: 250, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' - String: ':' - Line: '0' - String: ':' - Column: '5' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 166, Column: 18 } Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' Args: - String: '''' - Callee: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E DebugLoc: { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', Line: 131, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE' DebugLoc: { File: '/foo/rust/library/core/src/ops/function.rs', Line: 250, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 165, Column: 17 } Function: _ZN3std2rt10lang_start17h9096f6f84fb08eb2E Args: - Callee: _ZN3std2rt19lang_start_internal17had90330d479f72f8E - String: ' will not be inlined into ' - Caller: _ZN3std2rt10lang_start17h9096f6f84fb08eb2E DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 159, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 165, Column: 17 } Function: _ZN3std2rt10lang_start17h9096f6f84fb08eb2E Args: - Callee: _ZN3std2rt19lang_start_internal17had90330d479f72f8E - String: ' will not be inlined into ' - Caller: _ZN3std2rt10lang_start17h9096f6f84fb08eb2E DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 159, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 7, Column: 5 } Function: _ZN7remarks4main17hc92ae132ef1efa8eE Args: - Callee: _ZN3std2io5stdio6_print17hdb04fec352560b87E - String: ' will not be inlined into ' - Caller: _ZN7remarks4main17hc92ae132ef1efa8eE DebugLoc: { File: 'src/main.rs', Line: 6, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 7, Column: 5 } Function: _ZN7remarks4main17hc92ae132ef1efa8eE Args: - Callee: _ZN3std2io5stdio6_print17hdb04fec352560b87E - String: ' will not be inlined into ' - Caller: _ZN7remarks4main17hc92ae132ef1efa8eE DebugLoc: { File: 'src/main.rs', Line: 6, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: 'src/main.rs', Line: 8, Column: 5 } Function: _ZN7remarks4main17hc92ae132ef1efa8eE Args: - String: '''' - Callee: _ZN7remarks3foo17h78901fc1396afa9fE DebugLoc: { File: 'src/main.rs', Line: 2, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN7remarks4main17hc92ae132ef1efa8eE DebugLoc: { File: 'src/main.rs', Line: 6, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: inline Name: Inlined Function: main Args: - String: '''' - Callee: _ZN3std2rt10lang_start17h9096f6f84fb08eb2E DebugLoc: { File: '/foo/rust/library/std/src/rt.rs', Line: 159, Column: 0 } - String: ''' inlined into ''' - Caller: main - String: '''' - String: ' with ' - String: '(cost=' - Cost: '15' - String: ', threshold=' - Threshold: '375' - String: ')' ... ================================================ FILE: tests/data/remarks-similarity-join/src/common.rs ================================================ pub type Map = hashbrown::HashMap; ================================================ FILE: tests/data/remarks-similarity-join/src/main.rs ================================================ #![feature(core_intrinsics)] use std::io::{BufRead, BufReader, Write}; use std::str::FromStr; use crate::record::{load_relation, Relation}; use crate::util::ForceUnwrap; mod common; mod record; mod util; #[global_allocator] static ALLOC: mimallocator::Mimalloc = mimallocator::Mimalloc; // TODO: use aligned memory fn calculate_query(relation: Relation, threshold: f32) -> u64 { let records = &relation.records; let record_lengths = relation.record_lengths.as_slice(); records .iter() // .par_iter() .enumerate() .map(|(index, record)| { let index_first = index + 1; let following_record_count = relation.records.len() - index_first; // Gather intersection counts let mut intersections: Vec = vec![0; following_record_count]; for value in record { let containing_records = &relation.index[value]; let start_index = containing_records.partition_point(|&i| i <= index as u32); /*for &record_index in &containing_records[start_index..] { unsafe { let target_index = record_index as usize - index_first; *intersections.get_unchecked_mut(target_index) += 1; } }*/ // Unrolled version let count = containing_records.len() - start_index; let unroll_count = count - (count % 8); for record_index in (start_index..start_index + unroll_count).step_by(8) { unsafe { let index0 = *containing_records.get_unchecked(record_index) as usize - index_first; let index1 = *containing_records.get_unchecked(record_index + 1) as usize - index_first; let index2 = *containing_records.get_unchecked(record_index + 2) as usize - index_first; let index3 = *containing_records.get_unchecked(record_index + 3) as usize - index_first; let index4 = *containing_records.get_unchecked(record_index + 4) as usize - index_first; let index5 = *containing_records.get_unchecked(record_index + 5) as usize - index_first; let index6 = *containing_records.get_unchecked(record_index + 6) as usize - index_first; let index7 = *containing_records.get_unchecked(record_index + 7) as usize - index_first; *intersections.get_unchecked_mut(index0) += 1; *intersections.get_unchecked_mut(index1) += 1; *intersections.get_unchecked_mut(index2) += 1; *intersections.get_unchecked_mut(index3) += 1; *intersections.get_unchecked_mut(index4) += 1; *intersections.get_unchecked_mut(index5) += 1; *intersections.get_unchecked_mut(index6) += 1; *intersections.get_unchecked_mut(index7) += 1; } } for &record_index in &containing_records[start_index + unroll_count..] { unsafe { let target_index = record_index as usize - index_first; *intersections.get_unchecked_mut(target_index) += 1; } } } // Vectorized JA /*let simd_count = following_record_count - (following_record_count % 8); let mut sum_v = f32x8::splat(0.0); let threshold_v = f32x8::splat(threshold); let zero_v = f32x8::splat(0.0); let intersections = intersections.as_slice(); let relation_size_v = f32x8::splat(record.len() as f32); for index in (0..simd_count).step_by(8) { let intersection_v = unsafe { u16x8::from_slice_unaligned_unchecked(intersections.slice(index, 8)) }; let length_v = unsafe { u16x8::from_slice_unaligned_unchecked( record_lengths.slice(index_first + index, 8), ) }; let intersection_v: u32x8 = intersection_v.into(); let length_v: u32x8 = length_v.into(); let intersection_v: f32x8 = intersection_v.cast(); let length_v: f32x8 = length_v.cast(); let union_v = length_v + relation_size_v - intersection_v; let ja_v = intersection_v / union_v; let mask = ja_v.ge(threshold_v); sum_v = sum_v + mask.select(intersection_v, zero_v); }*/ let simd_count = 0; // Scalar JA for the rest of the elements intersections[simd_count..] .into_iter() .zip(&record_lengths[index_first + simd_count..]) .map(|(&intersection, &length)| { let union_size = (length as u32 + record.len() as u32) - intersection as u32; let ja = (intersection as f32) / (union_size as f32); if ja >= threshold { intersection as u64 } else { 0 } }) .sum::() }) .sum() } fn main() { // rayon::ThreadPoolBuilder::new() // .num_threads(8) // .build_global() // .unwrap(); // let stdin = std::fs::File::open("input").unwrap(); // let stdin = BufReader::new(stdin); let stdin = std::io::stdin(); let stdin = stdin.lock(); let mut reader = BufReader::new(stdin); let mut line = String::with_capacity(64); let stdout = std::io::stdout(); let mut stdout = stdout.lock(); loop { // JS reader.read_line(&mut line).unwrap_force(); if line.is_empty() { break; } line.clear(); reader.read_line(&mut line).unwrap_force(); let threshold = f32::from_str(&line.trim()).unwrap_force(); line.clear(); reader.read_line(&mut line).unwrap_force(); let relation = crate::measure!("load", { load_relation(&line.trim()).unwrap() }); let result = calculate_query(relation, threshold); writeln!(stdout, "{}", result).unwrap_force(); line.clear(); } stdout.flush().unwrap(); } ================================================ FILE: tests/data/remarks-similarity-join/src/record.rs ================================================ use crate::common::Map; use byteorder::ReadBytesExt; use fxhash::FxBuildHasher; use std::io::BufReader; use crate::util::ForceUnwrap; pub type Element = u32; pub type Record = Vec; type Ordering = byteorder::LittleEndian; #[derive(Debug)] pub struct Relation { // value -> set of records that contain it pub index: Map>, pub records: Vec, pub record_lengths: Vec, } pub fn load_relation(path: &str) -> anyhow::Result { let file = std::fs::File::open(path)?; let mut reader = BufReader::with_capacity(8192, file); let mut index = Map::with_capacity_and_hasher(1024, FxBuildHasher::default()); let mut records = Vec::with_capacity(1024); let mut record_lengths = Vec::with_capacity(1024); loop { let size = match reader.read_u32::() { Ok(size) => size, Err(_) => break, }; let mut record = Vec::with_capacity(size as usize); let record_id = records.len() as u32; for _ in 0..size { let value = reader.read_u32::().unwrap_force(); let record_set = index.entry(value).or_insert_with(|| Vec::with_capacity(32)); // ignore duplicates if std::intrinsics::unlikely(record_set.last() == Some(&record_id)) { continue; } record_set.push(record_id); record.push(value); } record.sort_unstable(); assert!(record.len() <= u16::MAX as usize); record_lengths.push(record.len() as u16); records.push(record); } Ok(Relation { index, records, record_lengths, }) } ================================================ FILE: tests/data/remarks-similarity-join/src/util.rs ================================================ use std::fmt::Debug; pub trait ForceUnwrap { type Target; fn unwrap_force(self) -> Self::Target; } impl ForceUnwrap for Option { type Target = T; fn unwrap_force(self) -> Self::Target { #[cfg(feature = "force-unwrap")] match self { Some(x) => x, None => unsafe { std::hint::unreachable_unchecked(); }, } #[cfg(not(feature = "force-unwrap"))] self.unwrap() } } impl ForceUnwrap for Result where E: Debug, { type Target = T; fn unwrap_force(self) -> Self::Target { #[cfg(feature = "force-unwrap")] match self { Ok(x) => x, Err(_) => unsafe { std::hint::unreachable_unchecked(); }, } #[cfg(not(feature = "force-unwrap"))] self.unwrap() } } #[macro_export] macro_rules! measure { ($name: expr, $block: block) => {{ let start = std::time::SystemTime::now(); let ret = $block; eprintln!("{}: {} ms", $name, start.elapsed().unwrap().as_millis()); ret }}; } pub trait Sliced { fn slice(&self, start: usize, end: usize) -> &[T]; } impl<'a, T> Sliced for &'a [T] { #[inline(always)] fn slice(&self, start: usize, len: usize) -> &[T] { unsafe { let start = self.as_ptr().add(start); std::slice::from_raw_parts(start, len) } } } ================================================ FILE: tests/data/remarks-similarity-join/yaml/similarity_join.548e4531baa98255-cgu.0.codegen.opt.yaml ================================================ [File too large to display: 11.0 MB] ================================================ FILE: tests/data/remarks-similarity-join/yaml/similarity_join.548e4531baa98255-cgu.0.opt.opt.yaml ================================================ --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/backtrace.rs', Line: 154, Column: 18 } Function: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h9f959bcd098a044bE Args: - String: '''' - Callee: _ZN4core3ops8function6FnOnce9call_once17hf71c1d535a122e0dE - String: ''' inlined into ''' - Caller: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h9f959bcd098a044bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/backtrace.rs', Line: 150, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h9f959bcd098a044bE - String: ':' - Line: '4' - String: ':' - Column: '18' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', Line: 166, Column: 18 } Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17hc2e7d8dca3faa815E' Args: - String: '''' - Callee: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h9f959bcd098a044bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/backtrace.rs', Line: 150, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17hc2e7d8dca3faa815E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', Line: 166, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', Line: 166, Column: 18 } Function: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17hc2e7d8dca3faa815E' Args: - String: '''' - Callee: '_ZN54_$LT$$LP$$RP$$u20$as$u20$std..process..Termination$GT$6report17h505a950911c19327E' - String: ''' inlined into ''' - Caller: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17hc2e7d8dca3faa815E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', Line: 166, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17hc2e7d8dca3faa815E' - String: ':' - Line: '0' - String: ':' - Column: '18' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 250, Column: 5 } Function: _ZN4core3ops8function6FnOnce9call_once17h14cd82bc2fb965b9E Args: - String: '''' - Callee: '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17hc2e7d8dca3faa815E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core3ops8function6FnOnce9call_once17h14cd82bc2fb965b9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 250, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '0' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3ops8function6FnOnce9call_once17h14cd82bc2fb965b9E - String: ':' - Line: '0' - String: ':' - Column: '5' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', Line: 166, Column: 18 } Function: _ZN4core3ops8function6FnOnce9call_once17h14cd82bc2fb965b9E Args: - String: '''' - Callee: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h9f959bcd098a044bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/backtrace.rs', Line: 150, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN4core3ops8function6FnOnce9call_once17h14cd82bc2fb965b9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 250, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 250, Column: 5 } Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hf46a5604f7ecaf3eE' Args: - String: '''' - Callee: _ZN4core3ops8function6FnOnce9call_once17h14cd82bc2fb965b9E - String: ''' inlined into ''' - Caller: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hf46a5604f7ecaf3eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 250, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hf46a5604f7ecaf3eE' - String: ':' - Line: '0' - String: ':' - Column: '5' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', Line: 166, Column: 18 } Function: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hf46a5604f7ecaf3eE' Args: - String: '''' - Callee: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h9f959bcd098a044bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/backtrace.rs', Line: 150, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hf46a5604f7ecaf3eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 250, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', Line: 165, Column: 17 } Function: _ZN3std2rt10lang_start17h553b022b5decff43E Args: - Callee: _ZN3std2rt19lang_start_internal17h58e5c2b0c2169c44E - String: ' will not be inlined into ' - Caller: _ZN3std2rt10lang_start17h553b022b5decff43E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', Line: 159, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', Line: 165, Column: 17 } Function: _ZN3std2rt10lang_start17h553b022b5decff43E Args: - Callee: _ZN3std2rt19lang_start_internal17h58e5c2b0c2169c44E - String: ' will not be inlined into ' - Caller: _ZN3std2rt10lang_start17h553b022b5decff43E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', Line: 159, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 35, Column: 22 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE' Args: - Callee: _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 32, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE' Args: - Callee: mi_malloc_aligned - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 32, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE' Args: - Callee: mi_malloc - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 32, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 35, Column: 22 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE' Args: - Callee: _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 32, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE' Args: - Callee: mi_malloc_aligned - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 32, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE' Args: - Callee: mi_malloc - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 32, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 14, Column: 15 } Function: __rust_alloc Args: - String: '''' - Callee: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE' - String: ''' inlined into ''' - Caller: __rust_alloc DebugLoc: { File: 'src/main.rs', Line: 14, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14920' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: __rust_alloc - String: ':' - Line: '0' - String: ':' - Column: '15' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } Function: __rust_dealloc Args: - Callee: mi_free - String: ' will not be inlined into ' - Caller: __rust_dealloc DebugLoc: { File: 'src/main.rs', Line: 14, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } Function: __rust_dealloc Args: - Callee: mi_free - String: ' will not be inlined into ' - Caller: __rust_dealloc DebugLoc: { File: 'src/main.rs', Line: 14, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 71, Column: 22 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE' Args: - Callee: _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 63, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 74, Column: 13 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE' Args: - Callee: mi_realloc_aligned - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 63, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 72, Column: 13 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE' Args: - Callee: mi_realloc - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 63, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 71, Column: 22 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE' Args: - Callee: _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 63, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 74, Column: 13 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE' Args: - Callee: mi_realloc_aligned - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 63, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 72, Column: 13 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE' Args: - Callee: mi_realloc - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 63, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 14, Column: 15 } Function: __rust_realloc Args: - String: '''' - Callee: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE' - String: ''' inlined into ''' - Caller: __rust_realloc DebugLoc: { File: 'src/main.rs', Line: 14, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14920' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: __rust_realloc - String: ':' - Line: '0' - String: ':' - Column: '15' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 48, Column: 22 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE' Args: - Callee: _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 45, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE' Args: - Callee: mi_zalloc_aligned - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 45, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE' Args: - Callee: mi_zalloc - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 45, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 48, Column: 22 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE' Args: - Callee: _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 45, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE' Args: - Callee: mi_zalloc_aligned - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 45, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } Function: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE' Args: - Callee: mi_zalloc - String: ' will not be inlined into ' - Caller: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 45, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 14, Column: 15 } Function: __rust_alloc_zeroed Args: - String: '''' - Callee: '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE' - String: ''' inlined into ''' - Caller: __rust_alloc_zeroed DebugLoc: { File: 'src/main.rs', Line: 14, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14920' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: __rust_alloc_zeroed - String: ':' - Line: '0' - String: ':' - Column: '15' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 98, Column: 9 } Function: _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E Args: - String: '''' - Callee: __rust_alloc DebugLoc: { File: 'src/main.rs', Line: 14, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 176, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '80' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN5alloc5alloc5alloc17ha8621a78912994ecE - String: ':' - Line: '6' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E - String: ':' - Line: '5' - String: ':' - Column: '73' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 170, Column: 14 } Function: _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E Args: - String: '''' - Callee: __rust_alloc_zeroed DebugLoc: { File: 'src/main.rs', Line: 14, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 176, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '80' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN5alloc5alloc12alloc_zeroed17hf3c31f129e1df0dbE - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E - String: ':' - Line: '5' - String: ':' - Column: '43' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 241, Column: 9 } Function: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE' Args: - String: '''' - Callee: _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 176, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 240, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '100' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 177, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' Args: - Callee: _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 189, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 177, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' Args: - Callee: _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 189, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 433, Column: 16 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' Args: - String: '''' - Callee: _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 436, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-25' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5alloc6layout6Layout5array17h17e50ba23fa1c864E - String: ':' - Line: '2' - String: ':' - Column: '16' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' - String: ':' - Line: '7' - String: ':' - Column: '32' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 184, Column: 45 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '105' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' - String: ':' - Line: '16' - String: ':' - Column: '45' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 130, Column: 9 } Function: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 93, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '145' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h3e40c755a2fa20a3E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN5alloc7raw_vec15RawVec$LT$T$GT$13with_capacity17hbc080b502a3792beE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN5alloc5boxed22Box$LT$$u5b$T$u5d$$GT$16new_uninit_slice17hcd51cfcf2341d13bE' - String: ':' - Line: '1' - String: ':' - Column: '18' - String: ' @ ' - String: _ZN3std2io8buffered9bufreader6buffer6Buffer13with_capacity17he49de4165492f635E - String: ':' - Line: '1' - String: ':' - Column: '19' - String: ' @ ' - String: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE' - String: ':' - Line: '1' - String: ':' - Column: '33' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 635, Column: 18 } Function: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$8into_box17h2528ab0753e97cf1E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 153, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 93, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc5boxed22Box$LT$$u5b$T$u5d$$GT$16new_uninit_slice17hcd51cfcf2341d13bE' - String: ':' - Line: '1' - String: ':' - Column: '18' - String: ' @ ' - String: _ZN3std2io8buffered9bufreader6buffer6Buffer13with_capacity17he49de4165492f635E - String: ':' - Line: '1' - String: ':' - Column: '19' - String: ' @ ' - String: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE' - String: ':' - Line: '1' - String: ':' - Column: '33' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 250, Column: 5 } Function: _ZN4core3ops8function6FnOnce9call_once17h10862aaed384a85bE Args: - String: '''' - Callee: '_ZN4core3cmp5impls50_$LT$impl$u20$core..cmp..Ord$u20$for$u20$usize$GT$3cmp17h9e23d13399acf65eE' - String: ''' inlined into ''' - Caller: _ZN4core3ops8function6FnOnce9call_once17h10862aaed384a85bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 250, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15020' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3ops8function6FnOnce9call_once17h10862aaed384a85bE - String: ':' - Line: '0' - String: ':' - Column: '5' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1241, Column: 11 } Function: _ZN4core3cmp6max_by17h709db21befafa9e3E Args: - String: '''' - Callee: _ZN4core3ops8function6FnOnce9call_once17h10862aaed384a85bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 250, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-20' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp6max_by17h709db21befafa9e3E - String: ':' - Line: '1' - String: ':' - Column: '11' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } Function: '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h8751d3cc1903aad6E' Args: - Callee: '_ZN59_$LT$std..io..stdio..StdinLock$u20$as$u20$std..io..Read$GT$8read_buf17he9d85a0edb013f2cE' - String: ' will not be inlined into ' - Caller: '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h8751d3cc1903aad6E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 25, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } Function: '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h8751d3cc1903aad6E' Args: - Callee: '_ZN59_$LT$std..io..stdio..StdinLock$u20$as$u20$std..io..Read$GT$8read_buf17he9d85a0edb013f2cE' - String: ' will not be inlined into ' - Caller: '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h8751d3cc1903aad6E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 25, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 100, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3max17hae4946db965cca35E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: _ZN3std2io7readbuf11BorrowedBuf8set_init17hdd27df897cb6d85bE - String: ':' - Line: '1' - String: ':' - Column: '21' - String: ' @ ' - String: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E - String: ':' - Line: '11' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 114, Column: 13 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E Args: - String: '''' - Callee: '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h8751d3cc1903aad6E' - String: ''' inlined into ''' - Caller: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 100, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E - String: ':' - Line: '14' - String: ':' - Column: '13' - String: ';' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E Args: - String: load eliminated by PRE ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 379, Column: 9 } Function: '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17hbbd87cf198af99d3E' Args: - String: '''' - Callee: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E - String: ''' inlined into ''' - Caller: '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17hbbd87cf198af99d3E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 378, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14880' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17hbbd87cf198af99d3E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17hbbd87cf198af99d3E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17hbbd87cf198af99d3E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 258, Column: 24 } Function: _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E Args: - String: '''' - Callee: _ZN3std2io5error14repr_bitpacked14kind_from_prim17hd565108c6a94f335E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 289, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 246, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '195' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E - String: ':' - Line: '12' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 276, Column: 31 } Function: _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E Args: - String: '''' - Callee: '_ZN3std2io5error14repr_bitpacked4Repr4data28_$u7b$$u7b$closure$u7d$$u7d$17h74c31adbfe65ddcfE' - String: ''' inlined into ''' - Caller: _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 246, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E - String: ':' - Line: '30' - String: ':' - Column: '31' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } Function: _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E Args: - Callee: _ZN3std3sys4unix17decode_error_kind17h91e167953d5bee68E - String: ' will not be inlined into ' - Caller: _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 911, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } Function: _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E Args: - Callee: _ZN3std3sys4unix17decode_error_kind17h91e167953d5bee68E - String: ' will not be inlined into ' - Caller: _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 911, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 212, Column: 18 } Function: _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E Args: - String: '''' - Callee: _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E - String: ''' inlined into ''' - Caller: _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 911, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14750' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN3std2io5error14repr_bitpacked4Repr4data17hd6ba9b9f486c8881E - String: ':' - Line: '2' - String: ':' - Column: '18' - String: ' @ ' - String: _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E - String: ':' - Line: '1' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 829, Column: 27 } Function: '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17h4d23d63bf95dec92E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec11finish_grow28_$u7b$$u7b$closure$u7d$$u7d$17h3a68ffc23693f631E' - String: ''' inlined into ''' - Caller: '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17h4d23d63bf95dec92E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 826, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17h4d23d63bf95dec92E' - String: ':' - Line: '3' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 117, Column: 14 } Function: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE' Args: - String: '''' - Callee: __rust_dealloc DebugLoc: { File: 'src/main.rs', Line: 14, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 250, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN5alloc5alloc7dealloc17hd511352e90405d82E - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE' - String: ':' - Line: '4' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 203, Column: 18 } Function: _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E Args: - String: '''' - Callee: _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 176, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 190, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '100' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E - String: ':' - Line: '13' - String: ':' - Column: '18' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 227, Column: 31 } Function: _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E Args: - String: '''' - Callee: _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 176, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 190, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '100' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E - String: ':' - Line: '37' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 136, Column: 14 } Function: _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E Args: - String: '''' - Callee: __rust_realloc DebugLoc: { File: 'src/main.rs', Line: 14, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 190, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '80' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN5alloc5alloc7realloc17h1b9d254a7d2faa46E - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E - String: ':' - Line: '23' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 229, Column: 17 } Function: _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 250, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 190, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '0' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E - String: ':' - Line: '39' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 266, Column: 18 } Function: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$4grow17h47b4fff41ce164ddE' Args: - String: '''' - Callee: _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E - String: ''' inlined into ''' - Caller: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$4grow17h47b4fff41ce164ddE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 259, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14580' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$4grow17h47b4fff41ce164ddE' - String: ':' - Line: '7' - String: ':' - Column: '18' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 829, Column: 27 } Function: '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hdd1b5f1ceef6307aE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec11finish_grow28_$u7b$$u7b$closure$u7d$$u7d$17h778ecb9bdce367a5E' - String: ''' inlined into ''' - Caller: '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hdd1b5f1ceef6307aE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 826, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hdd1b5f1ceef6307aE' - String: ':' - Line: '3' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 473, Column: 22 } Function: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE Args: - String: '''' - Callee: '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17h4d23d63bf95dec92E' - String: ''' inlined into ''' - Caller: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 464, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE - String: ':' - Line: '9' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 482, Column: 13 } Function: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$4grow17h47b4fff41ce164ddE' - String: ''' inlined into ''' - Caller: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 464, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14575' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE - String: ':' - Line: '18' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 485, Column: 9 } Function: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 240, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 464, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '105' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE - String: ':' - Line: '21' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 488, Column: 5 } Function: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE Args: - String: '''' - Callee: '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hdd1b5f1ceef6307aE' - String: ''' inlined into ''' - Caller: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 464, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15020' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE - String: ':' - Line: '24' - String: ':' - Column: '5' - String: ';' ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 477, Column: 36 } Function: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 477, Column: 25 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3max17hae4946db965cca35E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' - String: ':' - Line: '15' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3max17hae4946db965cca35E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' - String: ':' - Line: '16' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 433, Column: 16 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: '''' - Callee: _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 436, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-25' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5alloc6layout6Layout5array17h17e50ba23fa1c864E - String: ':' - Line: '2' - String: ':' - Column: '16' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' - String: ':' - Line: '18' - String: ':' - Column: '26' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 43 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17h6195dd10ac8de4ccE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 239, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' - String: ':' - Line: '21' - String: ':' - Column: '43' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: '''' - Callee: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 464, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 405, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$15set_ptr_and_cap17h5381bc534753d9ccE' - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' - String: ':' - Line: '22' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 43 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 398, Column: 28 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: inttoptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 829, Column: 27 } Function: '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hc89d1381a9a634c1E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec14handle_reserve28_$u7b$$u7b$closure$u7d$$u7d$17h061058e72801cd8aE' - String: ''' inlined into ''' - Caller: '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hc89d1381a9a634c1E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 826, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hc89d1381a9a634c1E' - String: ':' - Line: '3' - String: ':' - Column: '27' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 505, Column: 34 } Function: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E Args: - Callee: _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE - String: ' will not be inlined into ' - Caller: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 503, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 506, Column: 43 } Function: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 503, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 505, Column: 34 } Function: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E Args: - Callee: _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE - String: ' will not be inlined into ' - Caller: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 503, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 506, Column: 43 } Function: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 503, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 504, Column: 11 } Function: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E Args: - String: '''' - Callee: '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hc89d1381a9a634c1E' - String: ''' inlined into ''' - Caller: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 503, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E - String: ':' - Line: '1' - String: ':' - Column: '11' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 289, Column: 28 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E' - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14865' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' - String: ':' - Line: '5' - String: ':' - Column: '28' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 289, Column: 13 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' Args: - String: '''' - Callee: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 503, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '55' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' - String: ':' - Line: '5' - String: ':' - Column: '13' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' Args: - String: '''' - Callee: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 464, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$7reserve17hae51981c2bc06645E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$7reserve17hae51981c2bc06645E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 908, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '220' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter.rs', Line: 127, Column: 9 } Function: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' Args: - String: '''' - Callee: '_ZN4core5slice4iter13Iter$LT$T$GT$10make_slice17h18284bd65e91626cE' - String: ''' inlined into ''' - Caller: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_extend.rs', Line: 53, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: '_ZN4core5slice4iter13Iter$LT$T$GT$8as_slice17hadb5578f11087d38E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' - String: ':' - Line: '1' - String: ':' - Column: '30' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1941, Column: 9 } Function: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' Args: - String: '''' - Callee: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$7reserve17hae51981c2bc06645E' - String: ''' inlined into ''' - Caller: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_extend.rs', Line: 53, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14970' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$15append_elements17h75a8b5139c994e21E' - String: ':' - Line: '2' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' - String: ':' - Line: '2' - String: ':' - Column: '23' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } Function: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_extend.rs', Line: 53, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '220' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2387, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E' Args: - String: '''' - Callee: '_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h6a36f581a27bc638E' - String: ''' inlined into ''' - Caller: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2386, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14945' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2386, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '220' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 409, Column: 13 } Function: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE' Args: - Callee: _ZN4core5slice5index22slice_index_order_fail17h06dec397234c3a6cE - String: ' will not be inlined into ' - Caller: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 407, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 411, Column: 13 } Function: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE' Args: - Callee: _ZN4core5slice5index24slice_end_index_len_fail17h09e01c281ef61abfE - String: ' will not be inlined into ' - Caller: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 407, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 409, Column: 13 } Function: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE' Args: - Callee: _ZN4core5slice5index22slice_index_order_fail17h06dec397234c3a6cE - String: ' will not be inlined into ' - Caller: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 407, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 411, Column: 13 } Function: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE' Args: - Callee: _ZN4core5slice5index24slice_end_index_len_fail17h09e01c281ef61abfE - String: ' will not be inlined into ' - Caller: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 407, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 579, Column: 13 } Function: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E' Args: - Callee: _ZN4core5slice5index29slice_end_index_overflow_fail17hd99ee152c27dfee8E - String: ' will not be inlined into ' - Caller: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 577, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 579, Column: 13 } Function: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E' Args: - Callee: _ZN4core5slice5index29slice_end_index_overflow_fail17hd99ee152c27dfee8E - String: ' will not be inlined into ' - Caller: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 577, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 581, Column: 9 } Function: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E' Args: - String: '''' - Callee: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 407, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 577, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '70' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E' - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1172, Column: 11 } Function: _ZN4core3cmp6min_by17hd4f33f4a265e89c9E Args: - String: '''' - Callee: _ZN4core3ops8function6FnOnce9call_once17h10862aaed384a85bE - String: ''' inlined into ''' - Caller: _ZN4core3cmp6min_by17hd4f33f4a265e89c9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1171, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15020' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp6min_by17hd4f33f4a265e89c9E - String: ':' - Line: '1' - String: ':' - Column: '11' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 814, Column: 9 } Function: '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$7consume17h12a092f3db68204eE' Args: - String: '''' - Callee: _ZN4core3cmp6min_by17hd4f33f4a265e89c9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1171, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$7consume17h12a092f3db68204eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 382, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3min17h6955f9dd2679a295E - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3min17h3b66dd7ee6e4c354E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: _ZN3std2io8buffered9bufreader6buffer6Buffer7consume17hb7e1989b2442b326E - String: ':' - Line: '1' - String: ':' - Column: '20' - String: ' @ ' - String: '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$7consume17h12a092f3db68204eE' - String: ':' - Line: '1' - String: ':' - Column: '18' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 258, Column: 24 } Function: _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E Args: - String: '''' - Callee: _ZN3std2io5error14repr_bitpacked14kind_from_prim17hd565108c6a94f335E - String: ''' inlined into ''' - Caller: _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 246, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14805' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E - String: ':' - Line: '12' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 276, Column: 31 } Function: _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E Args: - String: '''' - Callee: '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop28_$u7b$$u7b$closure$u7d$$u7d$17h8167dd3c508fcfa8E' - String: ''' inlined into ''' - Caller: _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 246, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E - String: ':' - Line: '30' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 1235, Column: 17 } Function: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5c167f4927985ef4E' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 250, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5c167f4927985ef4E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 1227, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '0' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5c167f4927985ef4E' - String: ':' - Line: '8' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr118drop_in_place$LT$alloc..boxed..Box$LT$dyn$u20$core..error..Error$u2b$core..marker..Sync$u2b$core..marker..Send$GT$$GT$17h71a118851967f697E' Args: - String: '''' - Callee: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5c167f4927985ef4E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr118drop_in_place$LT$alloc..boxed..Box$LT$dyn$u20$core..error..Error$u2b$core..marker..Sync$u2b$core..marker..Send$GT$$GT$17h71a118851967f697E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14990' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr118drop_in_place$LT$alloc..boxed..Box$LT$dyn$u20$core..error..Error$u2b$core..marker..Sync$u2b$core..marker..Send$GT$$GT$17h71a118851967f697E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr43drop_in_place$LT$std..io..error..Custom$GT$17h7a9c3e925ada62dcE' Args: - String: '''' - Callee: '_ZN4core3ptr118drop_in_place$LT$alloc..boxed..Box$LT$dyn$u20$core..error..Error$u2b$core..marker..Sync$u2b$core..marker..Send$GT$$GT$17h71a118851967f697E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr43drop_in_place$LT$std..io..error..Custom$GT$17h7a9c3e925ada62dcE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14975' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr43drop_in_place$LT$std..io..error..Custom$GT$17h7a9c3e925ada62dcE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 1235, Column: 17 } Function: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h6739a2ffdd07e49eE' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 250, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h6739a2ffdd07e49eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 1227, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h6739a2ffdd07e49eE' - String: ':' - Line: '8' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E' Args: - String: '''' - Callee: '_ZN4core3ptr43drop_in_place$LT$std..io..error..Custom$GT$17h7a9c3e925ada62dcE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14975' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E' Args: - String: '''' - Callee: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h6739a2ffdd07e49eE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr101drop_in_place$LT$std..io..error..ErrorData$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$$GT$17h4af5e68a6b0e21a7E' Args: - String: '''' - Callee: '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr101drop_in_place$LT$std..io..error..ErrorData$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$$GT$17h4af5e68a6b0e21a7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14925' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr101drop_in_place$LT$std..io..error..ErrorData$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$$GT$17h4af5e68a6b0e21a7E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 236, Column: 21 } Function: '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E' Args: - String: '''' - Callee: _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E - String: ''' inlined into ''' - Caller: '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 232, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14750' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E' - String: ':' - Line: '4' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 236, Column: 72 } Function: '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E' Args: - String: '''' - Callee: '_ZN4core3ptr101drop_in_place$LT$std..io..error..ErrorData$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$$GT$17h4af5e68a6b0e21a7E' - String: ''' inlined into ''' - Caller: '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 232, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14920' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E' - String: ':' - Line: '4' - String: ':' - Column: '72' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr57drop_in_place$LT$std..io..error..repr_bitpacked..Repr$GT$17h0d79729540ed8c61E' Args: - String: '''' - Callee: '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr57drop_in_place$LT$std..io..error..repr_bitpacked..Repr$GT$17h0d79729540ed8c61E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14910' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr57drop_in_place$LT$std..io..error..repr_bitpacked..Repr$GT$17h0d79729540ed8c61E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E' Args: - String: '''' - Callee: '_ZN4core3ptr57drop_in_place$LT$std..io..error..repr_bitpacked..Repr$GT$17h0d79729540ed8c61E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14910' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr89drop_in_place$LT$core..result..Result$LT$$RF$$u5b$u8$u5d$$C$std..io..error..Error$GT$$GT$17h01cb0c79ac26bf15E' Args: - String: '''' - Callee: '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core3ptr89drop_in_place$LT$core..result..Result$LT$$RF$$u5b$u8$u5d$$C$std..io..error..Error$GT$$GT$17h01cb0c79ac26bf15E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '95' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr89drop_in_place$LT$core..result..Result$LT$$RF$$u5b$u8$u5d$$C$std..io..error..Error$GT$$GT$17h01cb0c79ac26bf15E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', Line: 30, Column: 5 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - Callee: _ZN3std3sys4unix6memchr6memchr17h34093a0ad4969d15E - String: ' will not be inlined into ' - Caller: _ZN3std2io10read_until17h040acd66fc952403E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1940, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', Line: 30, Column: 5 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - Callee: _ZN3std3sys4unix6memchr6memchr17h34093a0ad4969d15E - String: ' will not be inlined into ' - Caller: _ZN3std2io10read_until17h040acd66fc952403E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1940, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1944, Column: 35 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: '''' - Callee: '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17hbbd87cf198af99d3E' - String: ''' inlined into ''' - Caller: _ZN3std2io10read_until17h040acd66fc952403E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1940, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14895' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN3std2io10read_until17h040acd66fc952403E - String: ':' - Line: '4' - String: ':' - Column: '35' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1946, Column: 31 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: '''' - Callee: _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 911, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN3std2io10read_until17h040acd66fc952403E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1940, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '300' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN3std2io10read_until17h040acd66fc952403E - String: ':' - Line: '6' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1955, Column: 21 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: '''' - Callee: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2386, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN3std2io10read_until17h040acd66fc952403E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1940, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '50' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN3std2io10read_until17h040acd66fc952403E - String: ':' - Line: '15' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 622, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: '''' - Callee: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E' - String: ''' inlined into ''' - Caller: _ZN3std2io10read_until17h040acd66fc952403E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1940, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14860' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN117_$LT$core..ops..range..RangeToInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2dc29c303658496bE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN4core5slice5index74_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$5index17hd3e248e56b53eb42E' - String: ':' - Line: '1' - String: ':' - Column: '15' - String: ' @ ' - String: _ZN3std2io10read_until17h040acd66fc952403E - String: ':' - Line: '11' - String: ':' - Column: '53' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1951, Column: 21 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: '''' - Callee: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E' - String: ''' inlined into ''' - Caller: _ZN3std2io10read_until17h040acd66fc952403E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1940, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14950' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN3std2io10read_until17h040acd66fc952403E - String: ':' - Line: '11' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1960, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: '''' - Callee: '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$7consume17h12a092f3db68204eE' - String: ''' inlined into ''' - Caller: _ZN3std2io10read_until17h040acd66fc952403E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1940, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15015' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN3std2io10read_until17h040acd66fc952403E - String: ':' - Line: '20' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1948, Column: 14 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: '''' - Callee: '_ZN4core3ptr89drop_in_place$LT$core..result..Result$LT$$RF$$u5b$u8$u5d$$C$std..io..error..Error$GT$$GT$17h01cb0c79ac26bf15E' - String: ''' inlined into ''' - Caller: _ZN3std2io10read_until17h040acd66fc952403E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1940, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14905' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN3std2io10read_until17h040acd66fc952403E - String: ':' - Line: '8' - String: ':' - Column: '14' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN3std2io10read_until17h040acd66fc952403E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1940, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '220' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN3std2io10read_until17h040acd66fc952403E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1940, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '220' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Passed Pass: licm Name: InstSunk DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 922, Column: 18 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'sinking ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 922, Column: 18 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 379, Column: 27 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 379, Column: 27 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1942, Column: 5 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io10read_until17h040acd66fc952403E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: '''' - Callee: _ZN3std2io10read_until17h040acd66fc952403E - String: ''' inlined into ''' - Caller: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14235' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' - String: ':' - Line: '0' - String: ':' - Column: '44' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '220' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '220' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1942, Column: 5 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 497, Column: 13 } Function: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17he3a384aae5b0f2ecE' Args: - Callee: _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE - String: ' will not be inlined into ' - Caller: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17he3a384aae5b0f2ecE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 495, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 497, Column: 13 } Function: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17he3a384aae5b0f2ecE' Args: - Callee: _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE - String: ' will not be inlined into ' - Caller: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17he3a384aae5b0f2ecE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 495, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 18, Column: 9 } Function: '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17he298852de4b5cee5E' Args: - String: '''' - Callee: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17he3a384aae5b0f2ecE' - String: ''' inlined into ''' - Caller: '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17he298852de4b5cee5E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2674, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14975' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice5index74_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$5index17hac817d7abd7e2510E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17he298852de4b5cee5E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr35drop_in_place$LT$std..io..Guard$GT$17h0912053cb88db341E' Args: - Callee: '_ZN56_$LT$std..io..Guard$u20$as$u20$core..ops..drop..Drop$GT$4drop17h7054b7c619a8e16bE' - String: ' will not be inlined into ' - Caller: '_ZN4core3ptr35drop_in_place$LT$std..io..Guard$GT$17h0912053cb88db341E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr35drop_in_place$LT$std..io..Guard$GT$17h0912053cb88db341E' Args: - Callee: '_ZN56_$LT$std..io..Guard$u20$as$u20$core..ops..drop..Drop$GT$4drop17h7054b7c619a8e16bE' - String: ' will not be inlined into ' - Caller: '_ZN4core3ptr35drop_in_place$LT$std..io..Guard$GT$17h0912053cb88db341E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 8 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - Callee: _ZN4core3str8converts9from_utf817hc0d41a0ea375d127E - String: ' will not be inlined into ' - Caller: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 335, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 8 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - Callee: _ZN4core3str8converts9from_utf817hc0d41a0ea375d127E - String: ' will not be inlined into ' - Caller: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 335, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 340, Column: 15 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: '''' - Callee: '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E' - String: ''' inlined into ''' - Caller: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 335, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14245' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE - String: ':' - Line: '5' - String: ':' - Column: '15' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 29 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: '''' - Callee: '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17he298852de4b5cee5E' - String: ''' inlined into ''' - Caller: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 335, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14975' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE - String: ':' - Line: '6' - String: ':' - Column: '29' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 352, Column: 1 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: '''' - Callee: '_ZN4core3ptr35drop_in_place$LT$std..io..Guard$GT$17h0912053cb88db341E' - String: ''' inlined into ''' - Caller: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 335, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE - String: ':' - Line: '17' - String: ':' - Column: '1' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 335, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '220' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 335, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '220' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1942, Column: 5 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', Line: 30, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', Line: 30, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', Line: 30, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 24 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 24 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 539, Column: 18 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 8 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 349, Column: 17 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 8 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', Line: 30, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', Line: 30, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', Line: 30, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', Line: 30, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', Line: 30, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 24 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 24 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 339, Column: 17 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 539, Column: 18 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 8 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 8 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 23 } Function: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17hc2025190665822f2E' Args: - Callee: _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E - String: ' will not be inlined into ' - Caller: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17hc2025190665822f2E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1071, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 23 } Function: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17hc2025190665822f2E' Args: - Callee: _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E - String: ' will not be inlined into ' - Caller: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17hc2025190665822f2E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1071, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } Function: '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E' Args: - Callee: _ZN3std3sys4unix5locks11futex_mutex5Mutex4wake17h003dfe248bde9ba7E - String: ' will not be inlined into ' - Caller: '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/remutex.rs', Line: 159, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } Function: '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E' Args: - Callee: _ZN3std3sys4unix5locks11futex_mutex5Mutex4wake17h003dfe248bde9ba7E - String: ' will not be inlined into ' - Caller: '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/remutex.rs', Line: 159, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3145, Column: 1 } Function: '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E' Args: - String: '''' - Callee: _ZN4core4sync6atomic12atomic_store17h9971204c9a43a48cE - String: ''' inlined into ''' - Caller: '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/remutex.rs', Line: 159, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core4sync6atomic11AtomicUsize5store17h123a85d9c69b84b3E - String: ':' - Line: '827' - String: ':' - Column: '1' - String: ' @ ' - String: '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E' - String: ':' - Line: '5' - String: ':' - Column: '33' - String: ';' ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/remutex.rs', Line: 165, Column: 17 } Function: '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/remutex.rs', Line: 162, Column: 14 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr169drop_in_place$LT$std..sync..remutex..ReentrantMutexGuard$LT$core..cell..RefCell$LT$std..io..buffered..linewriter..LineWriter$LT$std..io..stdio..StdoutRaw$GT$$GT$$GT$$GT$17ha48e63f3776abebfE' Args: - String: '''' - Callee: '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr169drop_in_place$LT$std..sync..remutex..ReentrantMutexGuard$LT$core..cell..RefCell$LT$std..io..buffered..linewriter..LineWriter$LT$std..io..stdio..StdoutRaw$GT$$GT$$GT$$GT$17ha48e63f3776abebfE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14950' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr169drop_in_place$LT$std..sync..remutex..ReentrantMutexGuard$LT$core..cell..RefCell$LT$std..io..buffered..linewriter..LineWriter$LT$std..io..stdio..StdoutRaw$GT$$GT$$GT$$GT$17ha48e63f3776abebfE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr47drop_in_place$LT$std..io..stdio..StdoutLock$GT$17h3084d735c2d0a482E' Args: - String: '''' - Callee: '_ZN4core3ptr169drop_in_place$LT$std..sync..remutex..ReentrantMutexGuard$LT$core..cell..RefCell$LT$std..io..buffered..linewriter..LineWriter$LT$std..io..stdio..StdoutRaw$GT$$GT$$GT$$GT$17ha48e63f3776abebfE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr47drop_in_place$LT$std..io..stdio..StdoutLock$GT$17h3084d735c2d0a482E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14955' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr47drop_in_place$LT$std..io..stdio..StdoutLock$GT$17h3084d735c2d0a482E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 494, Column: 38 } Function: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17h6195dd10ac8de4ccE' - String: ''' inlined into ''' - Caller: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 493, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE' - String: ':' - Line: '1' - String: ':' - Column: '38' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 495, Column: 22 } Function: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 250, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 493, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '0' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE' - String: ':' - Line: '2' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr53drop_in_place$LT$alloc..raw_vec..RawVec$LT$u8$GT$$GT$17h7ce4e279b88101bdE' Args: - String: '''' - Callee: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr53drop_in_place$LT$alloc..raw_vec..RawVec$LT$u8$GT$$GT$17h7ce4e279b88101bdE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr53drop_in_place$LT$alloc..raw_vec..RawVec$LT$u8$GT$$GT$17h7ce4e279b88101bdE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E' Args: - String: '''' - Callee: '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h015b07414346a705E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E' Args: - String: '''' - Callee: '_ZN4core3ptr53drop_in_place$LT$alloc..raw_vec..RawVec$LT$u8$GT$$GT$17h7ce4e279b88101bdE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h8706786611654137E' Args: - String: '''' - Callee: '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h8706786611654137E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h8706786611654137E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 1235, Column: 17 } Function: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5cd61cd617028970E' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 250, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5cd61cd617028970E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 1227, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '0' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5cd61cd617028970E' - String: ':' - Line: '8' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr102drop_in_place$LT$alloc..boxed..Box$LT$$u5b$core..mem..maybe_uninit..MaybeUninit$LT$u8$GT$$u5d$$GT$$GT$17hc20ef5c533a7dceeE' Args: - String: '''' - Callee: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5cd61cd617028970E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr102drop_in_place$LT$alloc..boxed..Box$LT$$u5b$core..mem..maybe_uninit..MaybeUninit$LT$u8$GT$$u5d$$GT$$GT$17hc20ef5c533a7dceeE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr102drop_in_place$LT$alloc..boxed..Box$LT$$u5b$core..mem..maybe_uninit..MaybeUninit$LT$u8$GT$$u5d$$GT$$GT$17hc20ef5c533a7dceeE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr65drop_in_place$LT$std..io..buffered..bufreader..buffer..Buffer$GT$17h4e1d01f4cafc09fbE' Args: - String: '''' - Callee: '_ZN4core3ptr102drop_in_place$LT$alloc..boxed..Box$LT$$u5b$core..mem..maybe_uninit..MaybeUninit$LT$u8$GT$$u5d$$GT$$GT$17hc20ef5c533a7dceeE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr65drop_in_place$LT$std..io..buffered..bufreader..buffer..Buffer$GT$17h4e1d01f4cafc09fbE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr65drop_in_place$LT$std..io..buffered..bufreader..buffer..Buffer$GT$17h4e1d01f4cafc09fbE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/panicking.rs', Line: 427, Column: 13 } Function: _ZN3std9panicking9panicking17h0ed5135fbe0b811fE Args: - Callee: _ZN3std9panicking11panic_count17is_zero_slow_path17h6f4bb03aa2b57ccfE - String: ' will not be inlined into ' - Caller: _ZN3std9panicking9panicking17h0ed5135fbe0b811fE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/panicking.rs', Line: 558, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/panicking.rs', Line: 427, Column: 13 } Function: _ZN3std9panicking9panicking17h0ed5135fbe0b811fE Args: - Callee: _ZN3std9panicking11panic_count17is_zero_slow_path17h6f4bb03aa2b57ccfE - String: ' will not be inlined into ' - Caller: _ZN3std9panicking9panicking17h0ed5135fbe0b811fE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/panicking.rs', Line: 558, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3145, Column: 1 } Function: _ZN3std9panicking9panicking17h0ed5135fbe0b811fE Args: - String: '''' - Callee: _ZN4core4sync6atomic11atomic_load17h72eb0b5064d0cd0bE - String: ''' inlined into ''' - Caller: _ZN3std9panicking9panicking17h0ed5135fbe0b811fE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/panicking.rs', Line: 558, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core4sync6atomic11AtomicUsize4load17h0977801af6ab028aE - String: ':' - Line: '854' - String: ':' - Column: '1' - String: ' @ ' - String: _ZN3std9panicking11panic_count13count_is_zero17h2145fd07e7b2b3cdE - String: ':' - Line: '1' - String: ':' - Column: '31' - String: ' @ ' - String: _ZN3std9panicking9panicking17h0ed5135fbe0b811fE - String: ':' - Line: '1' - String: ':' - Column: '6' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/thread/mod.rs', Line: 800, Column: 5 } Function: _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE Args: - String: '''' - Callee: _ZN3std9panicking9panicking17h0ed5135fbe0b811fE - String: ''' inlined into ''' - Caller: _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/poison.rs', Line: 41, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14975' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN3std6thread9panicking17had2325d01a90857fE - String: ':' - Line: '1' - String: ':' - Column: '5' - String: ' @ ' - String: _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE - String: ':' - Line: '1' - String: ':' - Column: '32' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 538, Column: 13 } Function: _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE Args: - String: '''' - Callee: _ZN4core4sync6atomic12atomic_store17h14ba9a2b36db237cE - String: ''' inlined into ''' - Caller: _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/poison.rs', Line: 41, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core4sync6atomic10AtomicBool5store17h86e7241f5a3895a9E - String: ':' - Line: '4' - String: ':' - Column: '13' - String: ' @ ' - String: _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE - String: ':' - Line: '2' - String: ':' - Column: '25' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } Function: '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E' Args: - Callee: _ZN3std3sys4unix5locks11futex_mutex5Mutex4wake17h003dfe248bde9ba7E - String: ' will not be inlined into ' - Caller: '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/mutex.rs', Line: 526, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } Function: '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E' Args: - Callee: _ZN3std3sys4unix5locks11futex_mutex5Mutex4wake17h003dfe248bde9ba7E - String: ' will not be inlined into ' - Caller: '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/mutex.rs', Line: 526, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/mutex.rs', Line: 528, Column: 13 } Function: '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E' Args: - String: '''' - Callee: _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE - String: ''' inlined into ''' - Caller: '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/mutex.rs', Line: 526, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14970' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E' - String: ':' - Line: '2' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/mutex.rs', Line: 529, Column: 13 } Function: '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/mutex.rs', Line: 528, Column: 13 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr128drop_in_place$LT$std..sync..mutex..MutexGuard$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinRaw$GT$$GT$$GT$17hae3b8594c6c0ec4cE' Args: - String: '''' - Callee: '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr128drop_in_place$LT$std..sync..mutex..MutexGuard$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinRaw$GT$$GT$$GT$17hae3b8594c6c0ec4cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14905' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr128drop_in_place$LT$std..sync..mutex..MutexGuard$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinRaw$GT$$GT$$GT$17hae3b8594c6c0ec4cE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr46drop_in_place$LT$std..io..stdio..StdinLock$GT$17h7f21536e5b1bcfcfE' Args: - String: '''' - Callee: '_ZN4core3ptr128drop_in_place$LT$std..sync..mutex..MutexGuard$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinRaw$GT$$GT$$GT$17hae3b8594c6c0ec4cE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr46drop_in_place$LT$std..io..stdio..StdinLock$GT$17h7f21536e5b1bcfcfE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14920' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr46drop_in_place$LT$std..io..stdio..StdinLock$GT$17h7f21536e5b1bcfcfE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE' Args: - String: '''' - Callee: '_ZN4core3ptr65drop_in_place$LT$std..io..buffered..bufreader..buffer..Buffer$GT$17h4e1d01f4cafc09fbE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '5' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE' Args: - String: '''' - Callee: '_ZN4core3ptr46drop_in_place$LT$std..io..stdio..StdinLock$GT$17h7f21536e5b1bcfcfE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14920' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 38, Column: 14 } Function: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E Args: - String: '''' - Callee: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h817495a0833be62eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 156, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 36, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E - String: ':' - Line: '2' - String: ':' - Column: '14' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 49, Column: 23 } Function: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E Args: - String: '''' - Callee: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h817495a0833be62eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 156, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 36, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E - String: ':' - Line: '13' - String: ':' - Column: '23' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 56, Column: 27 } Function: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E Args: - String: '''' - Callee: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h817495a0833be62eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 156, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 36, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E - String: ':' - Line: '20' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 64, Column: 31 } Function: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E Args: - String: '''' - Callee: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h817495a0833be62eE' - String: ''' inlined into ''' - Caller: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 36, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15010' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E - String: ':' - Line: '28' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/non_null.rs', Line: 766, Column: 9 } Function: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 922, Column: 18 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/non_null.rs', Line: 766, Column: 9 } Function: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/non_null.rs', Line: 766, Column: 9 } Function: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 64, Column: 30 } Function: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 109, Column: 33 } ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 139, Column: 23 } Function: '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E' Args: - String: '''' - Callee: '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 141, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 138, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E' - String: ':' - Line: '1' - String: ':' - Column: '23' - String: ';' ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 144, Column: 27 } Function: '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E' Args: - String: '''' - Callee: '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 141, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 138, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E' - String: ':' - Line: '6' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 44, Column: 18 } Function: '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E' Args: - String: '''' - Callee: _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E - String: ''' inlined into ''' - Caller: '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 138, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14810' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN81_$LT$core..str..iter..Chars$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hc173e05123511d0eE' - String: ':' - Line: '3' - String: ':' - Column: '18' - String: ' @ ' - String: '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E' - String: ':' - Line: '2' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 144, Column: 27 } Function: '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 144, Column: 27 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', Line: 813, Column: 32 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$4trim28_$u7b$$u7b$closure$u7d$$u7d$17h398b9aba6c306a44E' Args: - String: '''' - Callee: _ZN4core7unicode12unicode_data11white_space6lookup17h255597ef5cacdbdaE - String: ''' inlined into ''' - Caller: '_ZN4core3str21_$LT$impl$u20$str$GT$4trim28_$u7b$$u7b$closure$u7d$$u7d$17h398b9aba6c306a44E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', Line: 1830, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14915' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core4char7methods22_$LT$impl$u20$char$GT$13is_whitespace17h209df3a5dfe05a3bE' - String: ':' - Line: '3' - String: ':' - Column: '32' - String: ' @ ' - String: '_ZN4core3str21_$LT$impl$u20$str$GT$4trim28_$u7b$$u7b$closure$u7d$$u7d$17h398b9aba6c306a44E' - String: ':' - Line: '0' - String: ':' - Column: '39' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 608, Column: 9 } Function: '_ZN53_$LT$F$u20$as$u20$core..str..pattern..MultiCharEq$GT$7matches17h007b1a6ebc0efe04E' Args: - String: '''' - Callee: '_ZN4core3str21_$LT$impl$u20$str$GT$4trim28_$u7b$$u7b$closure$u7d$$u7d$17h398b9aba6c306a44E' - String: ''' inlined into ''' - Caller: '_ZN53_$LT$F$u20$as$u20$core..str..pattern..MultiCharEq$GT$7matches17h007b1a6ebc0efe04E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 607, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14890' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN53_$LT$F$u20$as$u20$core..str..pattern..MultiCharEq$GT$7matches17h007b1a6ebc0efe04E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 662, Column: 23 } Function: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' Args: - String: '''' - Callee: '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 141, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 658, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' - String: ':' - Line: '4' - String: ':' - Column: '23' - String: ';' ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 664, Column: 23 } Function: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' Args: - String: '''' - Callee: '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 141, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 658, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' - String: ':' - Line: '6' - String: ':' - Column: '23' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 663, Column: 31 } Function: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' Args: - String: '''' - Callee: '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E' - String: ''' inlined into ''' - Caller: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 658, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14810' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' - String: ':' - Line: '5' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 666, Column: 16 } Function: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' Args: - String: '''' - Callee: '_ZN53_$LT$F$u20$as$u20$core..str..pattern..MultiCharEq$GT$7matches17h007b1a6ebc0efe04E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 607, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 658, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '110' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' - String: ':' - Line: '8' - String: ':' - Column: '16' - String: ';' ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 162, Column: 24 } Function: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 662, Column: 23 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 664, Column: 23 } Function: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 144, Column: 27 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 250, Column: 19 } Function: '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE' Args: - String: '''' - Callee: '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E' - String: ''' inlined into ''' - Caller: '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 757, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14640' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core3str7pattern8Searcher11next_reject17h118f5fe602011d22E - String: ':' - Line: '2' - String: ':' - Column: '19' - String: ' @ ' - String: '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE' - String: ':' - Line: '1' - String: ':' - Column: '20' - String: ';' ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 662, Column: 23 } Function: '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 662, Column: 23 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 662, Column: 23 } Function: '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 662, Column: 23 } Function: '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 662, Column: 23 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 662, Column: 23 } Function: '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE' Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 662, Column: 23 } ... --- !Passed Pass: licm Name: PromoteLoopAccessesToScalar DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 109, Column: 33 } Function: '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE' Args: - String: Moving accesses to memory location out of the loop ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 143, Column: 29 } Function: '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 143, Column: 29 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 143, Column: 29 } Function: '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: PromoteLoopAccessesToScalar DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 145, Column: 17 } Function: '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE' Args: - String: Moving accesses to memory location out of the loop ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 401, Column: 30 } Function: '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E' Args: - String: '''' - Callee: '_ZN4core5slice4iter13Iter$LT$T$GT$11pre_dec_end17h43ed048afdfe2d46E' - String: ''' inlined into ''' - Caller: '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 392, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E' - String: ':' - Line: '9' - String: ':' - Column: '30' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 84, Column: 20 } Function: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE Args: - String: '''' - Callee: '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 392, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 79, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE - String: ':' - Line: '5' - String: ':' - Column: '20' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 94, Column: 23 } Function: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE Args: - String: '''' - Callee: '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 392, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 79, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE - String: ':' - Line: '15' - String: ':' - Column: '23' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 99, Column: 27 } Function: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE Args: - String: '''' - Callee: '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 392, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 79, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE - String: ':' - Line: '20' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 104, Column: 31 } Function: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE Args: - String: '''' - Callee: '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E' - String: ''' inlined into ''' - Caller: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 79, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15010' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE - String: ':' - Line: '25' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 398, Column: 24 } Function: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 467, Column: 18 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 398, Column: 24 } Function: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 398, Column: 24 } Function: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 104, Column: 30 } Function: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 131, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 104, Column: 30 } Function: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 131, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 104, Column: 30 } Function: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 131, Column: 25 } ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 173, Column: 45 } Function: '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E' Args: - String: '''' - Callee: '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 141, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 171, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back28_$u7b$$u7b$closure$u7d$$u7d$17ha4f27b1abad841caE' - String: ':' - Line: '1' - String: ':' - Column: '45' - String: ' @ ' - String: '_ZN4core6option15Option$LT$T$GT$3map17h67fa8970fb4530d0E' - String: ':' - Line: '5' - String: ':' - Column: '29' - String: ' @ ' - String: '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E' - String: ':' - Line: '1' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 84, Column: 18 } Function: '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E' Args: - String: '''' - Callee: _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE - String: ''' inlined into ''' - Caller: '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 171, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14815' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN96_$LT$core..str..iter..Chars$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17ha07a533ef2f8d264E' - String: ':' - Line: '3' - String: ':' - Column: '18' - String: ' @ ' - String: '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E' - String: ':' - Line: '1' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 173, Column: 45 } Function: '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 173, Column: 45 } ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 682, Column: 23 } Function: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' Args: - String: '''' - Callee: '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 141, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 678, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' - String: ':' - Line: '4' - String: ':' - Column: '23' - String: ';' ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 684, Column: 23 } Function: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' Args: - String: '''' - Callee: '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E' - String: ''' inlined into ''' - Caller: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 678, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' - String: ':' - Line: '6' - String: ':' - Column: '23' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 683, Column: 31 } Function: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' Args: - String: '''' - Callee: '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E' - String: ''' inlined into ''' - Caller: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 678, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14820' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' - String: ':' - Line: '5' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 686, Column: 16 } Function: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' Args: - String: '''' - Callee: '_ZN53_$LT$F$u20$as$u20$core..str..pattern..MultiCharEq$GT$7matches17h007b1a6ebc0efe04E' - String: ''' inlined into ''' - Caller: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 678, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14890' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' - String: ':' - Line: '8' - String: ':' - Column: '16' - String: ';' ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 398, Column: 24 } Function: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 682, Column: 23 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 684, Column: 23 } Function: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 684, Column: 23 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 315, Column: 19 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: '''' - Callee: '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E' - String: ''' inlined into ''' - Caller: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 771, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14660' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core3str7pattern15ReverseSearcher16next_reject_back17h558f6033f00a005dE - String: ':' - Line: '2' - String: ':' - Column: '19' - String: ' @ ' - String: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' - String: ':' - Line: '1' - String: ':' - Column: '20' - String: ';' ... --- !Passed Pass: licm Name: InstSunk DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 173, Column: 25 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: 'sinking ' - Inst: add DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 173, Column: 25 } ... --- !Passed Pass: licm Name: InstSunk DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 800, Column: 18 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: 'sinking ' - Inst: add DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 800, Column: 18 } ... --- !Passed Pass: licm Name: InstSunk DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 800, Column: 18 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: 'sinking ' - Inst: ptrtoint DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 800, Column: 18 } ... --- !Passed Pass: licm Name: InstSunk DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 800, Column: 18 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: 'sinking ' - Inst: add DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 800, Column: 18 } ... --- !Passed Pass: licm Name: InstSunk Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: 'sinking ' - Inst: sub ... --- !Passed Pass: licm Name: InstSunk DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 800, Column: 18 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: 'sinking ' - Inst: ptrtoint DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 800, Column: 18 } ... --- !Passed Pass: licm Name: InstSunk DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 800, Column: 18 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: 'sinking ' - Inst: ptrtoint DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 800, Column: 18 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 682, Column: 23 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 682, Column: 23 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 682, Column: 23 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 682, Column: 23 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 682, Column: 23 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 682, Column: 23 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', Line: 682, Column: 23 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: PromoteLoopAccessesToScalar DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 131, Column: 25 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: Moving accesses to memory location out of the loop ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 172, Column: 35 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 172, Column: 35 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 173, Column: 25 } Function: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', Line: 173, Column: 25 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', Line: 2026, Column: 27 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: '''' - Callee: '_ZN49_$LT$F$u20$as$u20$core..str..pattern..Pattern$GT$13into_searcher17h2b27c836decaa8b5E' - String: ''' inlined into ''' - Caller: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', Line: 2020, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15045' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' - String: ':' - Line: '6' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', Line: 2027, Column: 31 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: '''' - Callee: '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE' - String: ''' inlined into ''' - Caller: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', Line: 2020, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14690' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' - String: ':' - Line: '7' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', Line: 2032, Column: 31 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: '''' - Callee: '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E' - String: ''' inlined into ''' - Caller: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', Line: 2020, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14685' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' - String: ':' - Line: '12' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/convert/mod.rs', Line: 660, Column: 9 } Function: '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h1ff9fd8219d8f81eE' Args: - String: '''' - Callee: '_ZN3std4path77_$LT$impl$u20$core..convert..AsRef$LT$std..path..Path$GT$$u20$for$u20$str$GT$6as_ref17h8d67b7edc278bb73E' - String: ''' inlined into ''' - Caller: '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h1ff9fd8219d8f81eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/convert/mod.rs', Line: 659, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h1ff9fd8219d8f81eE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/convert/mod.rs', Line: 660, Column: 9 } Function: '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h7ab4d05ba2261134E' Args: - String: '''' - Callee: '_ZN79_$LT$std..path..Path$u20$as$u20$core..convert..AsRef$LT$std..path..Path$GT$$GT$6as_ref17h3b9aadfaf4d7b5baE' - String: ''' inlined into ''' - Caller: '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h7ab4d05ba2261134E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/convert/mod.rs', Line: 659, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h7ab4d05ba2261134E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } Function: _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E Args: - Callee: _ZN3std2fs11OpenOptions5_open17h2b8281ba3b37867cE - String: ' will not be inlined into ' - Caller: _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1115, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } Function: _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E Args: - Callee: _ZN3std2fs11OpenOptions5_open17h2b8281ba3b37867cE - String: ' will not be inlined into ' - Caller: _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1115, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 20 } Function: _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E Args: - String: '''' - Callee: '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h7ab4d05ba2261134E' - String: ''' inlined into ''' - Caller: _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1115, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E - String: ':' - Line: '1' - String: ':' - Column: '20' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 363, Column: 9 } Function: _ZN3std2fs4File4open17h34e474e28e0e0bdcE Args: - Callee: _ZN3std2fs11OpenOptions3new17ha1ecab05c90a6e6bE - String: ' will not be inlined into ' - Caller: _ZN3std2fs4File4open17h34e474e28e0e0bdcE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 362, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 363, Column: 9 } Function: _ZN3std2fs4File4open17h34e474e28e0e0bdcE Args: - Callee: _ZN3std2fs11OpenOptions4read17h191134fdeea02ff4E - String: ' will not be inlined into ' - Caller: _ZN3std2fs4File4open17h34e474e28e0e0bdcE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 362, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 363, Column: 9 } Function: _ZN3std2fs4File4open17h34e474e28e0e0bdcE Args: - Callee: _ZN3std2fs11OpenOptions3new17ha1ecab05c90a6e6bE - String: ' will not be inlined into ' - Caller: _ZN3std2fs4File4open17h34e474e28e0e0bdcE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 362, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 363, Column: 9 } Function: _ZN3std2fs4File4open17h34e474e28e0e0bdcE Args: - Callee: _ZN3std2fs11OpenOptions4read17h191134fdeea02ff4E - String: ' will not be inlined into ' - Caller: _ZN3std2fs4File4open17h34e474e28e0e0bdcE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 362, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 363, Column: 44 } Function: _ZN3std2fs4File4open17h34e474e28e0e0bdcE Args: - String: '''' - Callee: '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h1ff9fd8219d8f81eE' - String: ''' inlined into ''' - Caller: _ZN3std2fs4File4open17h34e474e28e0e0bdcE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 362, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN3std2fs4File4open17h34e474e28e0e0bdcE - String: ':' - Line: '1' - String: ':' - Column: '44' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 363, Column: 9 } Function: _ZN3std2fs4File4open17h34e474e28e0e0bdcE Args: - String: '''' - Callee: _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E - String: ''' inlined into ''' - Caller: _ZN3std2fs4File4open17h34e474e28e0e0bdcE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 362, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN3std2fs4File4open17h34e474e28e0e0bdcE - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 130, Column: 9 } Function: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 93, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '145' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h3e40c755a2fa20a3E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN5alloc7raw_vec15RawVec$LT$T$GT$13with_capacity17hbc080b502a3792beE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN5alloc5boxed22Box$LT$$u5b$T$u5d$$GT$16new_uninit_slice17hcd51cfcf2341d13bE' - String: ':' - Line: '1' - String: ':' - Column: '18' - String: ' @ ' - String: _ZN3std2io8buffered9bufreader6buffer6Buffer13with_capacity17he49de4165492f635E - String: ':' - Line: '1' - String: ':' - Column: '19' - String: ' @ ' - String: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E' - String: ':' - Line: '1' - String: ':' - Column: '33' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 635, Column: 18 } Function: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$8into_box17h2528ab0753e97cf1E' - String: ''' inlined into ''' - Caller: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 93, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc5boxed22Box$LT$$u5b$T$u5d$$GT$16new_uninit_slice17hcd51cfcf2341d13bE' - String: ':' - Line: '1' - String: ':' - Column: '18' - String: ' @ ' - String: _ZN3std2io8buffered9bufreader6buffer6Buffer13with_capacity17he49de4165492f635E - String: ':' - Line: '1' - String: ':' - Column: '19' - String: ' @ ' - String: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E' - String: ':' - Line: '1' - String: ':' - Column: '33' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 99, Column: 40 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity28_$u7b$$u7b$closure$u7d$$u7d$17h06ac7f0690cc62f0E' Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity28_$u7b$$u7b$closure$u7d$$u7d$17h06ac7f0690cc62f0E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1184, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 99, Column: 40 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity28_$u7b$$u7b$closure$u7d$$u7d$17h06ac7f0690cc62f0E' Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity28_$u7b$$u7b$closure$u7d$$u7d$17h06ac7f0690cc62f0E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1184, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 98, Column: 9 } Function: '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$8allocate17h3ef17fcd49b45161E' Args: - String: '''' - Callee: __rust_alloc DebugLoc: { File: 'src/main.rs', Line: 14, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$8allocate17h3ef17fcd49b45161E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/alloc.rs', Line: 45, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '80' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN5alloc5alloc5alloc17ha8621a78912994ecE - String: ':' - Line: '6' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$8allocate17h3ef17fcd49b45161E' - String: ':' - Line: '1' - String: ':' - Column: '35' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 99, Column: 40 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1143, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 108, Column: 40 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1143, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 99, Column: 40 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1143, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 108, Column: 40 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1143, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1152, Column: 43 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' Args: - String: '''' - Callee: _ZN9hashbrown3raw11TableLayout20calculate_layout_for17hd5066d4e0b6d4059E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 251, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1143, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '0' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' - String: ':' - Line: '9' - String: ':' - Column: '43' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/alloc.rs', Line: 61, Column: 9 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' Args: - String: '''' - Callee: '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$8allocate17h3ef17fcd49b45161E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1143, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14915' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw5alloc5inner8do_alloc17hc514418911661440E - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' - String: ':' - Line: '14' - String: ':' - Column: '38' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1132, Column: 51 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' Args: - Callee: _ZN9hashbrown3raw4sse25Group12static_empty17ha645b8eba9d61ef3E - String: ' will not be inlined into ' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1173, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1132, Column: 51 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' Args: - Callee: _ZN9hashbrown3raw4sse25Group12static_empty17ha645b8eba9d61ef3E - String: ' will not be inlined into ' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1173, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1184, Column: 21 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' Args: - String: '''' - Callee: _ZN9hashbrown3raw19capacity_to_buckets17h6b8ddf6eaa02825eE - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1173, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14955' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' - String: ':' - Line: '11' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/option.rs', Line: 1239, Column: 25 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity28_$u7b$$u7b$closure$u7d$$u7d$17h06ac7f0690cc62f0E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1173, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14980' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core6option15Option$LT$T$GT$10ok_or_else17he230d43d141388caE' - String: ':' - Line: '6' - String: ':' - Column: '25' - String: ' @ ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' - String: ':' - Line: '11' - String: ':' - Column: '51' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1186, Column: 30 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1173, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14740' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' - String: ':' - Line: '13' - String: ':' - Column: '30' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E' Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 462, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-40' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN9hashbrown3raw11TableLayout3new17h740adb3f94ec47e3E - String: ':' - Line: '4' - String: ':' - Column: '25' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E' - String: ':' - Line: '8' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 468, Column: 20 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1173, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 462, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '125' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E' - String: ':' - Line: '6' - String: ':' - Column: '20' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 177, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' Args: - Callee: _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 189, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 177, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' Args: - Callee: _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 189, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 433, Column: 16 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' Args: - String: '''' - Callee: _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 436, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5alloc6layout6Layout5array17hd0e0ef8e7773a3d9E - String: ':' - Line: '2' - String: ':' - Column: '16' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' - String: ':' - Line: '7' - String: ':' - Column: '32' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 184, Column: 45 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '105' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' - String: ':' - Line: '16' - String: ':' - Column: '45' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 246, Column: 9 } Function: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$15allocate_zeroed17h226acb6c11978e3eE' Args: - String: '''' - Callee: _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 176, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$15allocate_zeroed17h226acb6c11978e3eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 245, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '95' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$15allocate_zeroed17h226acb6c11978e3eE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 177, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' Args: - Callee: _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 189, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 177, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' Args: - Callee: _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 189, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 433, Column: 16 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' Args: - String: '''' - Callee: _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 436, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-20' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5alloc6layout6Layout5array17h0d164c05247cc9e2E - String: ':' - Line: '2' - String: ':' - Column: '16' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' - String: ':' - Line: '7' - String: ':' - Column: '32' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 184, Column: 45 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '105' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' - String: ':' - Line: '16' - String: ':' - Column: '45' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 185, Column: 38 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$15allocate_zeroed17h226acb6c11978e3eE' - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14900' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' - String: ':' - Line: '17' - String: ':' - Column: '38' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 332, Column: 19 } Function: _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 328, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 332, Column: 19 } Function: _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 328, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 241, Column: 9 } Function: _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E Args: - String: '''' - Callee: _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E - String: ''' inlined into ''' - Caller: _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 328, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14910' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E - String: ':' - Line: '2' - String: ':' - Column: '18' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 1235, Column: 17 } Function: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h7d351658519b3511E' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 250, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h7d351658519b3511E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 1227, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h7d351658519b3511E' - String: ':' - Line: '8' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr145drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$core..mem..manually_drop..ManuallyDrop$LT$std..io..error..Error$GT$$GT$$GT$$GT$17h2d4eb3ea8b82d8fcE' Args: - String: '''' - Callee: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h7d351658519b3511E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr145drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$core..mem..manually_drop..ManuallyDrop$LT$std..io..error..Error$GT$$GT$$GT$$GT$17h2d4eb3ea8b82d8fcE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr145drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$core..mem..manually_drop..ManuallyDrop$LT$std..io..error..Error$GT$$GT$$GT$$GT$17h2d4eb3ea8b82d8fcE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/mem/mod.rs', Line: 987, Column: 24 } Function: _ZN6anyhow5error17object_drop_front17hdbb921d55eea020eE Args: - String: '''' - Callee: '_ZN4core3ptr145drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$core..mem..manually_drop..ManuallyDrop$LT$std..io..error..Error$GT$$GT$$GT$$GT$17h2d4eb3ea8b82d8fcE' - String: ''' inlined into ''' - Caller: _ZN6anyhow5error17object_drop_front17hdbb921d55eea020eE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 597, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core3mem4drop17h3adf69f494eeac6cE - String: ':' - Line: '0' - String: ':' - Column: '24' - String: ' @ ' - String: _ZN6anyhow5error17object_drop_front17hdbb921d55eea020eE - String: ':' - Line: '6' - String: ':' - Column: '5' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 909, Column: 18 } Function: '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..error..Error$GT$6source17hf6dfa1cc3bd8b261E' Args: - Callee: _ZN6anyhow5error9ErrorImpl5error17hfc586854135b20c9E - String: ' will not be inlined into ' - Caller: '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..error..Error$GT$6source17hf6dfa1cc3bd8b261E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 908, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 909, Column: 18 } Function: '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..error..Error$GT$6source17hf6dfa1cc3bd8b261E' Args: - Callee: _ZN6anyhow5error9ErrorImpl5error17hfc586854135b20c9E - String: ' will not be inlined into ' - Caller: '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..error..Error$GT$6source17hf6dfa1cc3bd8b261E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 908, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/error.rs', Line: 121, Column: 9 } Function: _ZN4core5error5Error5cause17hf9725e2bbce76f0aE Args: - String: '''' - Callee: '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..error..Error$GT$6source17hf6dfa1cc3bd8b261E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 908, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5error5Error5cause17hf9725e2bbce76f0aE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/error.rs', Line: 120, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '15' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core5error5Error5cause17hf9725e2bbce76f0aE - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 927, Column: 31 } Function: '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Display$GT$3fmt17hb94fd50e247a9b0aE' Args: - Callee: _ZN6anyhow5error9ErrorImpl5error17hfc586854135b20c9E - String: ' will not be inlined into ' - Caller: '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Display$GT$3fmt17hb94fd50e247a9b0aE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 926, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 927, Column: 31 } Function: '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Display$GT$3fmt17hb94fd50e247a9b0aE' Args: - Callee: _ZN6anyhow5error9ErrorImpl5error17hfc586854135b20c9E - String: ' will not be inlined into ' - Caller: '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Display$GT$3fmt17hb94fd50e247a9b0aE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 926, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 918, Column: 18 } Function: '_ZN70_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Debug$GT$3fmt17h38ff4fce26d47c03E' Args: - Callee: '_ZN6anyhow3fmt42_$LT$impl$u20$anyhow..error..ErrorImpl$GT$5debug17hdd87cd700aa5b2cdE' - String: ' will not be inlined into ' - Caller: '_ZN70_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Debug$GT$3fmt17h38ff4fce26d47c03E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 917, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 918, Column: 18 } Function: '_ZN70_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Debug$GT$3fmt17h38ff4fce26d47c03E' Args: - Callee: '_ZN6anyhow3fmt42_$LT$impl$u20$anyhow..error..ErrorImpl$GT$5debug17hdd87cd700aa5b2cdE' - String: ' will not be inlined into ' - Caller: '_ZN70_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Debug$GT$3fmt17h38ff4fce26d47c03E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 917, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr74drop_in_place$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$17h3af844d6b38561a8E' Args: - String: '''' - Callee: '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core3ptr74drop_in_place$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$17h3af844d6b38561a8E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '95' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr74drop_in_place$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$17h3af844d6b38561a8E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 1235, Column: 17 } Function: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2f131d6962e05049E' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 250, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2f131d6962e05049E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 1227, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2f131d6962e05049E' - String: ':' - Line: '8' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E' Args: - String: '''' - Callee: '_ZN4core3ptr74drop_in_place$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$17h3af844d6b38561a8E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '95' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E' Args: - String: '''' - Callee: '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2f131d6962e05049E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/mem/mod.rs', Line: 987, Column: 24 } Function: _ZN6anyhow5error11object_drop17h1469acd2381ff032E Args: - String: '''' - Callee: '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E' - String: ''' inlined into ''' - Caller: _ZN6anyhow5error11object_drop17h1469acd2381ff032E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 589, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14870' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN4core3mem4drop17hc551c677cfbba812E - String: ':' - Line: '0' - String: ':' - Column: '24' - String: ' @ ' - String: _ZN6anyhow5error11object_drop17h1469acd2381ff032E - String: ':' - Line: '4' - String: ':' - Column: '5' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 217, Column: 9 } Function: '_ZN5alloc5boxed12Box$LT$T$GT$3new17h5f797a9db89e1e16E' Args: - String: '''' - Callee: _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E - String: ''' inlined into ''' - Caller: '_ZN5alloc5boxed12Box$LT$T$GT$3new17h5f797a9db89e1e16E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', Line: 215, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14865' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc5boxed12Box$LT$T$GT$3new17h5f797a9db89e1e16E' - String: ':' - Line: '2' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 226, Column: 40 } Function: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' Args: - String: '''' - Callee: '_ZN5alloc5boxed12Box$LT$T$GT$3new17h5f797a9db89e1e16E' - String: ''' inlined into ''' - Caller: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 218, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' - String: ':' - Line: '8' - String: ':' - Column: '40' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 35, Column: 22 } Function: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' Args: - Callee: _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE - String: ' will not be inlined into ' - Caller: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 218, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } Function: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' Args: - Callee: mi_malloc_aligned - String: ' will not be inlined into ' - Caller: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 218, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } Function: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' Args: - Callee: mi_malloc - String: ' will not be inlined into ' - Caller: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 218, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 332, Column: 19 } Function: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 218, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 237, Column: 21 } Function: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' Args: - String: '''' - Callee: '_ZN6anyhow3ptr12Own$LT$T$GT$3new17h9dcae3f38a9f8cf9E' - String: ''' inlined into ''' - Caller: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 218, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' - String: ':' - Line: '19' - String: ':' - Column: '21' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 103, Column: 18 } Function: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$8from_std17h498f00c1e6c98754E' Args: - String: '''' - Callee: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 218, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$8from_std17h498f00c1e6c98754E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 84, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '150' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 531, Column: 9 } Function: '_ZN6anyhow5error72_$LT$impl$u20$core..convert..From$LT$E$GT$$u20$for$u20$anyhow..Error$GT$4from17h3fbcaf4e75eb45afE' Args: - String: '''' - Callee: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$8from_std17h498f00c1e6c98754E' - String: ''' inlined into ''' - Caller: '_ZN6anyhow5error72_$LT$impl$u20$core..convert..From$LT$E$GT$$u20$for$u20$anyhow..Error$GT$4from17h3fbcaf4e75eb45afE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 529, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '0' - String: ', threshold=' - Threshold: '45' - String: ')' - String: ' at callsite ' - String: '_ZN6anyhow5error72_$LT$impl$u20$core..convert..From$LT$E$GT$$u20$for$u20$anyhow..Error$GT$4from17h3fbcaf4e75eb45afE' - String: ':' - Line: '2' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 103, Column: 18 } Function: '_ZN6anyhow5error72_$LT$impl$u20$core..convert..From$LT$E$GT$$u20$for$u20$anyhow..Error$GT$4from17h3fbcaf4e75eb45afE' Args: - String: '''' - Callee: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 218, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN6anyhow5error72_$LT$impl$u20$core..convert..From$LT$E$GT$$u20$for$u20$anyhow..Error$GT$4from17h3fbcaf4e75eb45afE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 529, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '150' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 3610, Column: 13 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17h230a15dde8d10691E' Args: - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17len_mismatch_fail17hd27ebc611dcbd4d3E' - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17h230a15dde8d10691E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 3593, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 3610, Column: 13 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17h230a15dde8d10691E' Args: - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17len_mismatch_fail17hd27ebc611dcbd4d3E' - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17h230a15dde8d10691E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 3593, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 304, Column: 55 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact28_$u7b$$u7b$closure$u7d$$u7d$17ha9b754c0e0c33142E' Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17h230a15dde8d10691E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 3593, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact28_$u7b$$u7b$closure$u7d$$u7d$17ha9b754c0e0c33142E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 304, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '5' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact28_$u7b$$u7b$closure$u7d$$u7d$17ha9b754c0e0c33142E' - String: ':' - Line: '0' - String: ':' - Column: '55' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 436, Column: 9 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E Args: - String: '''' - Callee: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$3get17hba0d1d8419e17cdfE' - String: ''' inlined into ''' - Caller: _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 80, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN108_$LT$core..ops..range..RangeTo$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$3get17h80d378b8ef409177E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$3get17haa1997c472ad941aE' - String: ':' - Line: '4' - String: ':' - Column: '15' - String: ' @ ' - String: _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E - String: ':' - Line: '4' - String: ':' - Column: '46' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 85, Column: 13 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E Args: - String: '''' - Callee: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact28_$u7b$$u7b$closure$u7d$$u7d$17ha9b754c0e0c33142E' - String: ''' inlined into ''' - Caller: _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 80, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14985' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E - String: ':' - Line: '5' - String: ':' - Column: '13' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } Function: '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h09c873751d508e46E' Args: - Callee: '_ZN47_$LT$std..fs..File$u20$as$u20$std..io..Read$GT$8read_buf17h24f44ecddda3db77E' - String: ' will not be inlined into ' - Caller: '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h09c873751d508e46E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 25, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } Function: '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h09c873751d508e46E' Args: - Callee: '_ZN47_$LT$std..fs..File$u20$as$u20$std..io..Read$GT$8read_buf17h24f44ecddda3db77E' - String: ' will not be inlined into ' - Caller: '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h09c873751d508e46E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 25, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 100, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3max17hae4946db965cca35E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: _ZN3std2io7readbuf11BorrowedBuf8set_init17hdd27df897cb6d85bE - String: ':' - Line: '1' - String: ':' - Column: '21' - String: ' @ ' - String: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE - String: ':' - Line: '11' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 114, Column: 13 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE Args: - String: '''' - Callee: '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h09c873751d508e46E' - String: ''' inlined into ''' - Caller: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 100, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE - String: ':' - Line: '14' - String: ':' - Column: '13' - String: ';' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE Args: - String: load eliminated by PRE ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 1865, Column: 9 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$8split_at17hb040f089413910f9E' Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$8split_at17hb040f089413910f9E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 1864, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 1865, Column: 9 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$8split_at17hb040f089413910f9E' Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$8split_at17hb040f089413910f9E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 1864, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 422, Column: 13 } Function: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h2583b64bd1eccc39E' Args: - Callee: _ZN4core5slice5index24slice_end_index_len_fail17h09e01c281ef61abfE - String: ' will not be inlined into ' - Caller: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h2583b64bd1eccc39E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 422, Column: 13 } Function: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h2583b64bd1eccc39E' Args: - Callee: _ZN4core5slice5index24slice_end_index_len_fail17h09e01c281ef61abfE - String: ' will not be inlined into ' - Caller: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h2583b64bd1eccc39E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 22 } Function: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 235, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 13 } Function: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 235, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 22 } Function: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 235, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 13 } Function: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 235, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 814, Column: 9 } Function: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' Args: - String: '''' - Callee: _ZN4core3cmp6min_by17hd4f33f4a265e89c9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1171, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 235, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3min17h6955f9dd2679a295E - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3min17h3b66dd7ee6e4c354E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' - String: ':' - Line: '1' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 237, Column: 22 } Function: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$8split_at17hb040f089413910f9E' - String: ''' inlined into ''' - Caller: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 235, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14990' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' - String: ':' - Line: '2' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 463, Column: 9 } Function: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' Args: - String: '''' - Callee: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h2583b64bd1eccc39E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 235, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '10' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN108_$LT$core..ops..range..RangeTo$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h6792fcbda7961c72E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h335d4021eba981ccE' - String: ':' - Line: '1' - String: ':' - Column: '15' - String: ' @ ' - String: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' - String: ':' - Line: '10' - String: ':' - Column: '16' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 245, Column: 13 } Function: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17h230a15dde8d10691E' - String: ''' inlined into ''' - Caller: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 235, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' - String: ':' - Line: '10' - String: ':' - Column: '13' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' Args: - Callee: '_ZN47_$LT$std..fs..File$u20$as$u20$std..io..Read$GT$4read17hbb7f0df773dc4115E' - String: ' will not be inlined into ' - Caller: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 264, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' Args: - Callee: '_ZN47_$LT$std..fs..File$u20$as$u20$std..io..Read$GT$4read17hbb7f0df773dc4115E' - String: ' will not be inlined into ' - Caller: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 264, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 379, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' Args: - String: '''' - Callee: _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE - String: ''' inlined into ''' - Caller: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 264, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14900' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17h29b0fdb1806a6a16E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' - String: ':' - Line: '9' - String: ':' - Column: '32' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 274, Column: 13 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' Args: - String: '''' - Callee: '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE' - String: ''' inlined into ''' - Caller: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 264, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15015' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' - String: ':' - Line: '10' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 814, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' Args: - String: '''' - Callee: _ZN4core3cmp6min_by17hd4f33f4a265e89c9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1171, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 264, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3min17h6955f9dd2679a295E - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3min17h3b66dd7ee6e4c354E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: _ZN3std2io8buffered9bufreader6buffer6Buffer7consume17hb7e1989b2442b326E - String: ':' - Line: '1' - String: ':' - Column: '20' - String: ' @ ' - String: '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$7consume17h7344573d7200fc4bE' - String: ':' - Line: '1' - String: ':' - Column: '18' - String: ' @ ' - String: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' - String: ':' - Line: '12' - String: ':' - Column: '14' - String: ';' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 22 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 119, Column: 9 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 22 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 119, Column: 9 } ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 506, Column: 13 } Function: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h383d22df7fa14028E' Args: - Callee: _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE - String: ' will not be inlined into ' - Caller: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h383d22df7fa14028E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 504, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 506, Column: 13 } Function: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h383d22df7fa14028E' Args: - Callee: _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE - String: ' will not be inlined into ' - Caller: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h383d22df7fa14028E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 504, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: '''' - Callee: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E' - String: ''' inlined into ''' - Caller: _ZN3std2io18default_read_exact17hbdd649a58a871350E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 465, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14755' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN3std2io18default_read_exact17hbdd649a58a871350E - String: ':' - Line: '2' - String: ':' - Column: '15' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: '''' - Callee: _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E - String: ''' inlined into ''' - Caller: _ZN3std2io18default_read_exact17hbdd649a58a871350E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 465, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14700' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN3std2io18default_read_exact17hbdd649a58a871350E - String: ':' - Line: '8' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 29, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: '''' - Callee: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h383d22df7fa14028E' - String: ''' inlined into ''' - Caller: _ZN3std2io18default_read_exact17hbdd649a58a871350E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 465, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14975' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h51b3fa1d9bf735cbE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN3std2io18default_read_exact17hbdd649a58a871350E - String: ':' - Line: '6' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 476, Column: 5 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: '''' - Callee: '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN3std2io18default_read_exact17hbdd649a58a871350E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 465, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '90' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN3std2io18default_read_exact17hbdd649a58a871350E - String: ':' - Line: '11' - String: ':' - Column: '5' - String: ';' ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 379, Column: 27 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 379, Column: 27 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 277, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 277, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1962, Column: 23 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1962, Column: 23 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 476, Column: 5 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 476, Column: 5 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 466, Column: 11 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 117, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 117, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 117, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 117, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 117, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 22 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 119, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: load eliminated by PRE ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 117, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 117, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 117, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 117, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 117, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 22 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 119, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: _ZN3std2io18default_read_exact17hbdd649a58a871350E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 304, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: '''' - Callee: _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E - String: ''' inlined into ''' - Caller: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 303, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' - String: ':' - Line: '1' - String: ':' - Column: '12' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 308, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: '''' - Callee: _ZN3std2io18default_read_exact17hbdd649a58a871350E - String: ''' inlined into ''' - Caller: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 303, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14400' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' - String: ':' - Line: '5' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 466, Column: 11 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 22 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 119, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1962, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 22 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 119, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1962, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: '_ZN4core6result19Result$LT$T$C$E$GT$3map17h5d4c9a7b44af8308E' Args: - String: '''' - Callee: '_ZN4core5array98_$LT$impl$u20$core..convert..TryFrom$LT$$RF$$u5b$T$u5d$$GT$$u20$for$u20$$u5b$T$u3b$$u20$N$u5d$$GT$8try_from28_$u7b$$u7b$closure$u7d$$u7d$17h4c910e5a7656103dE' - String: ''' inlined into ''' - Caller: '_ZN4core6result19Result$LT$T$C$E$GT$3map17h5d4c9a7b44af8308E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 744, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core6result19Result$LT$T$C$E$GT$3map17h5d4c9a7b44af8308E' - String: ':' - Line: '2' - String: ':' - Column: '25' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 23 } Function: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h246a2ae22ca37d1dE' Args: - Callee: _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E - String: ' will not be inlined into ' - Caller: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h246a2ae22ca37d1dE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1071, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 23 } Function: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h246a2ae22ca37d1dE' Args: - Callee: _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E - String: ' will not be inlined into ' - Caller: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h246a2ae22ca37d1dE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1071, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 458, Column: 9 } Function: '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E' Args: - String: '''' - Callee: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE' - String: ''' inlined into ''' - Caller: '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/lib.rs', Line: 2193, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15045' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN108_$LT$core..ops..range..RangeTo$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h0ee9aad9ea6a159aE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN4core5slice5index74_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$5index17hb9cbc87ce97b51dfE' - String: ':' - Line: '1' - String: ':' - Column: '15' - String: ' @ ' - String: '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E' - String: ':' - Line: '1' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/array/mod.rs', Line: 209, Column: 9 } Function: '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E' Args: - String: '''' - Callee: '_ZN4core6result19Result$LT$T$C$E$GT$3map17h5d4c9a7b44af8308E' - String: ''' inlined into ''' - Caller: '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/lib.rs', Line: 2193, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15005' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5array98_$LT$impl$u20$core..convert..TryFrom$LT$$RF$$u5b$T$u5d$$GT$$u20$for$u20$$u5b$T$u3b$$u20$N$u5d$$GT$8try_from17h537643d78d9bd018E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN53_$LT$T$u20$as$u20$core..convert..TryInto$LT$U$GT$$GT$8try_into17hb8cd9d3a00a41eedE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E' - String: ':' - Line: '1' - String: ':' - Column: '37' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/lib.rs', Line: 2194, Column: 28 } Function: '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E' Args: - String: '''' - Callee: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h246a2ae22ca37d1dE' - String: ''' inlined into ''' - Caller: '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/lib.rs', Line: 2193, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14955' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E' - String: ':' - Line: '1' - String: ':' - Column: '28' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 219, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: '''' - Callee: '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E' - String: ''' inlined into ''' - Caller: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 217, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14350' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E - String: ':' - Line: '2' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 220, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: '''' - Callee: '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E' - String: ''' inlined into ''' - Caller: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 217, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E - String: ':' - Line: '3' - String: ':' - Column: '12' - String: ';' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 466, Column: 11 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 22 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 119, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1962, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 218, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 218, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 218, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 218, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 218, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 218, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 118, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 72, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 141, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 22 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 119, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1962, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 218, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 218, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 218, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 243, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 218, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 270, Column: 20 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 218, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 746, Column: 25 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 218, Column: 23 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', Line: 913, Column: 36 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 92, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr76drop_in_place$LT$core..result..Result$LT$u32$C$std..io..error..Error$GT$$GT$17h616b09680f5b9f11E' Args: - String: '''' - Callee: '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core3ptr76drop_in_place$LT$core..result..Result$LT$u32$C$std..io..error..Error$GT$$GT$17h616b09680f5b9f11E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '95' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr76drop_in_place$LT$core..result..Result$LT$u32$C$std..io..error..Error$GT$$GT$17h616b09680f5b9f11E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 177, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' Args: - Callee: _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 189, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 177, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' Args: - Callee: _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 189, Column: 27 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' Args: - Callee: _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E - String: ' will not be inlined into ' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 433, Column: 16 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' Args: - String: '''' - Callee: _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 436, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-20' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5alloc6layout6Layout5array17ha9e0225a29b9a19fE - String: ':' - Line: '2' - String: ':' - Column: '16' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' - String: ':' - Line: '7' - String: ':' - Column: '32' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 184, Column: 45 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE' - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14895' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' - String: ':' - Line: '16' - String: ':' - Column: '45' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/os/fd/owned.rs', Line: 178, Column: 21 } Function: '_ZN69_$LT$std..os..fd..owned..OwnedFd$u20$as$u20$core..ops..drop..Drop$GT$4drop17h90c0e28bc2f139a6E' Args: - Callee: close - String: ' will not be inlined into ' - Caller: '_ZN69_$LT$std..os..fd..owned..OwnedFd$u20$as$u20$core..ops..drop..Drop$GT$4drop17h90c0e28bc2f139a6E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/os/fd/owned.rs', Line: 170, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/os/fd/owned.rs', Line: 178, Column: 21 } Function: '_ZN69_$LT$std..os..fd..owned..OwnedFd$u20$as$u20$core..ops..drop..Drop$GT$4drop17h90c0e28bc2f139a6E' Args: - Callee: close - String: ' will not be inlined into ' - Caller: '_ZN69_$LT$std..os..fd..owned..OwnedFd$u20$as$u20$core..ops..drop..Drop$GT$4drop17h90c0e28bc2f139a6E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/os/fd/owned.rs', Line: 170, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr48drop_in_place$LT$std..os..fd..owned..OwnedFd$GT$17hf3e612f139eadf2eE' Args: - String: '''' - Callee: '_ZN69_$LT$std..os..fd..owned..OwnedFd$u20$as$u20$core..ops..drop..Drop$GT$4drop17h90c0e28bc2f139a6E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr48drop_in_place$LT$std..os..fd..owned..OwnedFd$GT$17hf3e612f139eadf2eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr48drop_in_place$LT$std..os..fd..owned..OwnedFd$GT$17hf3e612f139eadf2eE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr49drop_in_place$LT$std..sys..unix..fd..FileDesc$GT$17h769dd353d5316370E' Args: - String: '''' - Callee: '_ZN4core3ptr48drop_in_place$LT$std..os..fd..owned..OwnedFd$GT$17hf3e612f139eadf2eE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr49drop_in_place$LT$std..sys..unix..fd..FileDesc$GT$17h769dd353d5316370E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr49drop_in_place$LT$std..sys..unix..fd..FileDesc$GT$17h769dd353d5316370E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr45drop_in_place$LT$std..sys..unix..fs..File$GT$17ha1c7f45478fc6597E' Args: - String: '''' - Callee: '_ZN4core3ptr49drop_in_place$LT$std..sys..unix..fd..FileDesc$GT$17h769dd353d5316370E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr45drop_in_place$LT$std..sys..unix..fs..File$GT$17ha1c7f45478fc6597E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr45drop_in_place$LT$std..sys..unix..fs..File$GT$17ha1c7f45478fc6597E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr34drop_in_place$LT$std..fs..File$GT$17hb7e207cdea1634ddE' Args: - String: '''' - Callee: '_ZN4core3ptr45drop_in_place$LT$std..sys..unix..fs..File$GT$17ha1c7f45478fc6597E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr34drop_in_place$LT$std..fs..File$GT$17hb7e207cdea1634ddE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr34drop_in_place$LT$std..fs..File$GT$17hb7e207cdea1634ddE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E' Args: - String: '''' - Callee: '_ZN4core3ptr65drop_in_place$LT$std..io..buffered..bufreader..buffer..Buffer$GT$17h4e1d01f4cafc09fbE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E' Args: - String: '''' - Callee: '_ZN4core3ptr34drop_in_place$LT$std..fs..File$GT$17hb7e207cdea1634ddE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 666, Column: 12 } Function: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E' Args: - String: '''' - Callee: '_ZN4core3cmp5impls57_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$2lt17hbc71024a1daecb16E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1363, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 665, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E' - String: ':' - Line: '1' - String: ':' - Column: '12' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 668, Column: 33 } Function: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E' Args: - String: '''' - Callee: '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$18backward_unchecked17hb8e96bbe702a714eE' - String: ''' inlined into ''' - Caller: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 665, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E' - String: ':' - Line: '3' - String: ':' - Column: '33' - String: ';' ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 5 } Function: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E Args: - String: '''' - Callee: '_ZN4core3cmp5impls55_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$u32$GT$2lt17hbc640549d95e956cE' - String: ''' inlined into ''' - Caller: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E - String: ':' - Line: '0' - String: ':' - Column: '5' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 294, Column: 13 } Function: '_ZN4core3ops8function5impls79_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$8call_mut17h4a62ca7df4afe95fE' Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core3ops8function5impls79_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$8call_mut17h4a62ca7df4afe95fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 293, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ops8function5impls79_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$8call_mut17h4a62ca7df4afe95fE' - String: ':' - Line: '1' - String: ':' - Column: '13' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 879, Column: 36 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 876, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 880, Column: 36 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 876, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 879, Column: 36 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 876, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 880, Column: 36 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 876, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 267, Column: 35 } Function: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 254, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 271, Column: 26 } Function: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 254, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 271, Column: 36 } Function: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 254, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 267, Column: 35 } Function: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 254, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 271, Column: 26 } Function: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 254, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 271, Column: 36 } Function: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 254, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 267, Column: 26 } Function: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' Args: - String: '''' - Callee: '_ZN4core3ops8function5impls79_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$8call_mut17h4a62ca7df4afe95fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 293, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 254, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' - String: ':' - Line: '13' - String: ':' - Column: '26' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 271, Column: 17 } Function: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' Args: - String: '''' - Callee: '_ZN4core3ops8function5impls79_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$8call_mut17h4a62ca7df4afe95fE' - String: ''' inlined into ''' - Caller: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 254, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' - String: ':' - Line: '17' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 276, Column: 13 } Function: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 876, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 254, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '75' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' - String: ':' - Line: '22' - String: ':' - Column: '13' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 420, Column: 13 } Function: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' Args: - Callee: _ZN4core5slice5index22slice_index_order_fail17h06dec397234c3a6cE - String: ' will not be inlined into ' - Caller: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 422, Column: 13 } Function: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' Args: - Callee: _ZN4core5slice5index24slice_end_index_len_fail17h09e01c281ef61abfE - String: ' will not be inlined into ' - Caller: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 420, Column: 13 } Function: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' Args: - Callee: _ZN4core5slice5index22slice_index_order_fail17h06dec397234c3a6cE - String: ' will not be inlined into ' - Caller: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 422, Column: 13 } Function: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' Args: - Callee: _ZN4core5slice5index24slice_end_index_len_fail17h09e01c281ef61abfE - String: ' will not be inlined into ' - Caller: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 826, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: '''' - Callee: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 665, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 249, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core4iter5range116_$LT$impl$u20$core..iter..traits..double_ended..DoubleEndedIterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9next_back17h98253b0f2ebbde87E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN98_$LT$core..iter..adapters..rev..Rev$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h45d470ce7a0405eeE' - String: ':' - Line: '1' - String: ':' - Column: '19' - String: ' @ ' - String: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE - String: ':' - Line: '33' - String: ':' - Column: '14' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 283, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: '''' - Callee: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 254, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 249, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '175' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE - String: ':' - Line: '34' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 826, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: '''' - Callee: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 665, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 249, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core4iter5range116_$LT$impl$u20$core..iter..traits..double_ended..DoubleEndedIterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9next_back17h98253b0f2ebbde87E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN98_$LT$core..iter..adapters..rev..Rev$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h45d470ce7a0405eeE' - String: ':' - Line: '1' - String: ':' - Column: '19' - String: ' @ ' - String: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE - String: ':' - Line: '38' - String: ':' - Column: '14' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 288, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 876, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 249, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '75' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE - String: ':' - Line: '39' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 463, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: '''' - Callee: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 249, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '65' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN108_$LT$core..ops..range..RangeTo$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h3f482ace1e878f58E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h63f39e724073a3d2E' - String: ':' - Line: '1' - String: ':' - Column: '15' - String: ' @ ' - String: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE - String: ':' - Line: '40' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 289, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: '''' - Callee: '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE' - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 249, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14835' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE - String: ':' - Line: '40' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 879, Column: 36 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'hoisting ' - Inst: icmp DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 879, Column: 36 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 271, Column: 17 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 271, Column: 17 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h164e91993159f120E' Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h164e91993159f120E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 750, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h164e91993159f120E' - String: ':' - Line: '1' - String: ':' - Column: '16' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 759, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: '''' - Callee: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h164e91993159f120E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 750, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 758, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '5' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' - String: ':' - Line: '1' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 760, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: '''' - Callee: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h164e91993159f120E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 750, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 758, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '5' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' - String: ':' - Line: '2' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 761, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: '''' - Callee: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h164e91993159f120E' - String: ''' inlined into ''' - Caller: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 758, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' - String: ':' - Line: '3' - String: ':' - Column: '13' - String: ';' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 760, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 759, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 760, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 760, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 759, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 760, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: load eliminated by PRE ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 61 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 61 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 761, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 759, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 761, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 761, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 759, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 761, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: load eliminated by PRE ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 40 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 40 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 61 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 760, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 759, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 760, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 759, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 761, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 759, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 761, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 759, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 768, Column: 17 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' Args: - String: '''' - Callee: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 758, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 766, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '105' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' - String: ':' - Line: '2' - String: ':' - Column: '17' - String: ';' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 760, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 759, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 760, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 759, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 761, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 759, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 761, Column: 13 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 759, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } Function: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 753, Column: 17 } ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 978, Column: 32 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 966, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 978, Column: 43 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 966, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 978, Column: 32 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 966, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 978, Column: 43 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 966, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 463, Column: 9 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' Args: - String: '''' - Callee: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 966, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '65' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN108_$LT$core..ops..range..RangeTo$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h3f482ace1e878f58E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h63f39e724073a3d2E' - String: ':' - Line: '1' - String: ':' - Column: '15' - String: ' @ ' - String: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' - String: ':' - Line: '8' - String: ':' - Column: '33' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 463, Column: 9 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' Args: - String: '''' - Callee: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 966, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '65' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN108_$LT$core..ops..range..RangeTo$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h3f482ace1e878f58E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h63f39e724073a3d2E' - String: ':' - Line: '1' - String: ':' - Column: '15' - String: ' @ ' - String: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' - String: ':' - Line: '8' - String: ':' - Column: '46' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 978, Column: 17 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' Args: - String: '''' - Callee: _ZN4core3mem4swap17ha9fe964faa446cbeE - String: ''' inlined into ''' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 966, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15020' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' - String: ':' - Line: '12' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 963, Column: 9 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse17h9207c78ad9af6638E' Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE' - String: ''' inlined into ''' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse17h9207c78ad9af6638E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 943, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14890' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse17h9207c78ad9af6638E' - String: ':' - Line: '20' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 778, Column: 9 } Function: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E Args: - String: '''' - Callee: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E' - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 722, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14915' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E - String: ':' - Line: '56' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 772, Column: 13 } Function: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E Args: - String: '''' - Callee: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 766, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 722, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '110' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E - String: ':' - Line: '50' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 773, Column: 13 } Function: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E Args: - String: '''' - Callee: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 766, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 722, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '110' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E - String: ':' - Line: '51' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 774, Column: 13 } Function: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E Args: - String: '''' - Callee: '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E' - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 722, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14890' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E - String: ':' - Line: '52' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 786, Column: 9 } Function: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse17h9207c78ad9af6638E' - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 722, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14975' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E - String: ':' - Line: '64' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 624, Column: 35 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: '''' - Callee: '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 189, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 673, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE' - String: ':' - Line: '4' - String: ':' - Column: '35' - String: ' @ ' - String: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E' - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E - String: ':' - Line: '30' - String: ':' - Column: '18' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 707, Column: 29 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: '''' - Callee: '_ZN4core5slice4sort14break_patterns28_$u7b$$u7b$closure$u7d$$u7d$17h6513e179dea6d8e5E' - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 673, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E - String: ':' - Line: '34' - String: ':' - Column: '29' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 714, Column: 13 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 876, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 673, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '75' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E - String: ':' - Line: '41' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 714, Column: 20 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'hoisting ' - Inst: add DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 714, Column: 20 } ... --- !Passed Pass: loop-unroll Name: FullyUnrolled DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 621, Column: 12 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'completely unrolled loop with ' - UnrollCount: '3' - String: ' iterations' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 587, Column: 13 } Function: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h42334f934d6ec51aE' Args: - Callee: _ZN4core5slice5index29slice_end_index_overflow_fail17hd99ee152c27dfee8E - String: ' will not be inlined into ' - Caller: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h42334f934d6ec51aE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 585, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 587, Column: 13 } Function: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h42334f934d6ec51aE' Args: - Callee: _ZN4core5slice5index29slice_end_index_overflow_fail17hd99ee152c27dfee8E - String: ' will not be inlined into ' - Caller: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h42334f934d6ec51aE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 585, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 589, Column: 9 } Function: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h42334f934d6ec51aE' Args: - String: '''' - Callee: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h42334f934d6ec51aE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 585, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '70' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h42334f934d6ec51aE' - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE' Args: - String: '''' - Callee: '_ZN83_$LT$core..slice..sort..InsertionHole$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2ba80b2f1b606843E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 52, Column: 12 } Function: _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 35, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E - String: ':' - Line: '17' - String: ':' - Column: '12' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 826, Column: 9 } Function: _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E Args: - String: '''' - Callee: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 665, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 35, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core4iter5range116_$LT$impl$u20$core..iter..traits..double_ended..DoubleEndedIterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9next_back17h98253b0f2ebbde87E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN98_$LT$core..iter..adapters..rev..Rev$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h45d470ce7a0405eeE' - String: ':' - Line: '1' - String: ':' - Column: '19' - String: ' @ ' - String: _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E - String: ':' - Line: '36' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 81, Column: 9 } Function: _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E Args: - String: '''' - Callee: '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 35, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E - String: ':' - Line: '46' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 73, Column: 21 } Function: _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 35, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E - String: ':' - Line: '38' - String: ':' - Column: '21' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 155, Column: 5 } Function: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 148, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 155, Column: 5 } Function: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 148, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 624, Column: 35 } Function: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E Args: - String: '''' - Callee: '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 189, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 148, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE' - String: ':' - Line: '4' - String: ':' - Column: '35' - String: ' @ ' - String: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E' - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E - String: ':' - Line: '10' - String: ':' - Column: '14' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 627, Column: 9 } Function: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E Args: - String: '''' - Callee: '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h42334f934d6ec51aE' - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 148, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14860' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN117_$LT$core..ops..range..RangeToInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h4c397383be450561E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h5170846dd41b598cE' - String: ':' - Line: '1' - String: ':' - Column: '15' - String: ' @ ' - String: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E - String: ':' - Line: '15' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 163, Column: 13 } Function: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E Args: - String: '''' - Callee: _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 148, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14955' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E - String: ':' - Line: '15' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 96, Column: 12 } Function: _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 88, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE - String: ':' - Line: '8' - String: ':' - Column: '12' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 624, Column: 35 } Function: _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE Args: - String: '''' - Callee: '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 189, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 88, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE' - String: ':' - Line: '4' - String: ':' - Column: '35' - String: ' @ ' - String: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E' - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE - String: ':' - Line: '43' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 139, Column: 9 } Function: _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE Args: - String: '''' - Callee: '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 88, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE - String: ':' - Line: '51' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 132, Column: 21 } Function: _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 88, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE - String: ':' - Line: '44' - String: ':' - Column: '21' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 180, Column: 5 } Function: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 173, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 180, Column: 5 } Function: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 173, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 826, Column: 9 } Function: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E Args: - String: '''' - Callee: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E' - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 173, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15010' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core4iter5range116_$LT$impl$u20$core..iter..traits..double_ended..DoubleEndedIterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9next_back17h98253b0f2ebbde87E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN98_$LT$core..iter..adapters..rev..Rev$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h45d470ce7a0405eeE' - String: ':' - Line: '1' - String: ':' - Column: '19' - String: ' @ ' - String: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E - String: ':' - Line: '10' - String: ':' - Column: '14' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 29, Column: 9 } Function: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E Args: - String: '''' - Callee: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 173, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '70' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h75b6a2ec9a7cc1f9E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E - String: ':' - Line: '16' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 189, Column: 13 } Function: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E Args: - String: '''' - Callee: _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 173, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14960' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E - String: ':' - Line: '16' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 624, Column: 35 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: '''' - Callee: '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 189, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 198, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE' - String: ':' - Line: '4' - String: ':' - Column: '35' - String: ' @ ' - String: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E' - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E - String: ':' - Line: '12' - String: ':' - Column: '14' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 198, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '787' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E - String: ':' - Line: '17' - String: ':' - Column: '31' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 231, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 876, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 198, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '75' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E - String: ':' - Line: '33' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 463, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: '''' - Callee: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 198, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '65' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN108_$LT$core..ops..range..RangeTo$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h3f482ace1e878f58E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h63f39e724073a3d2E' - String: ':' - Line: '1' - String: ':' - Column: '15' - String: ' @ ' - String: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E - String: ':' - Line: '37' - String: ':' - Column: '45' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 235, Column: 13 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: '''' - Callee: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 148, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 198, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 463, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: '''' - Callee: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 418, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 198, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '65' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN108_$LT$core..ops..range..RangeTo$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h3f482ace1e878f58E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h63f39e724073a3d2E' - String: ':' - Line: '1' - String: ':' - Column: '15' - String: ' @ ' - String: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E - String: ':' - Line: '40' - String: ':' - Column: '46' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: '''' - Callee: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 173, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 198, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: licm Name: Hoisted Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'hoisting ' - Inst: icmp ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 235, Column: 13 } ... --- !Passed Pass: loop-unroll Name: FullyUnrolled DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'completely unrolled loop with ' - UnrollCount: '5' - String: ' iterations' ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: load eliminated by PRE ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 238, Column: 13 } ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 1898, Column: 9 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E' Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 1897, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 1898, Column: 9 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E' Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 1897, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 351, Column: 23 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: '''' - Callee: _ZN4core5slice4sort19partition_in_blocks5width17h7c2e7a704ba7bdc9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 341, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 302, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ':' - Line: '49' - String: ':' - Column: '23' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 355, Column: 27 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: '''' - Callee: _ZN4core5slice4sort19partition_in_blocks5width17h7c2e7a704ba7bdc9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 341, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 302, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ':' - Line: '53' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 624, Column: 35 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: '''' - Callee: '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 189, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 302, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '787' - String: ')' - String: ' at callsite ' - String: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE' - String: ':' - Line: '4' - String: ':' - Column: '35' - String: ' @ ' - String: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E' - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ':' - Line: '81' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 397, Column: 40 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 302, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '787' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ':' - Line: '95' - String: ':' - Column: '40' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 431, Column: 30 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: '''' - Callee: _ZN4core5slice4sort19partition_in_blocks5width17h5923dcf353057604E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 341, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 302, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ':' - Line: '129' - String: ':' - Column: '30' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 431, Column: 53 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: '''' - Callee: _ZN4core5slice4sort19partition_in_blocks5width17h5923dcf353057604E - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 302, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ':' - Line: '129' - String: ':' - Column: '53' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 814, Column: 9 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: '''' - Callee: _ZN4core3cmp6min_by17hd4f33f4a265e89c9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1171, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 302, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3min17h6955f9dd2679a295E - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3min17h3b66dd7ee6e4c354E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ':' - Line: '129' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 624, Column: 35 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: '''' - Callee: '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 189, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 302, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '787' - String: ')' - String: ' at callsite ' - String: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE' - String: ':' - Line: '4' - String: ':' - Column: '35' - String: ' @ ' - String: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E' - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ':' - Line: '107' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 425, Column: 39 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 302, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '787' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ':' - Line: '123' - String: ':' - Column: '39' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 624, Column: 35 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: '''' - Callee: '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 189, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 302, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '787' - String: ')' - String: ' at callsite ' - String: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE' - String: ':' - Line: '4' - String: ':' - Column: '35' - String: ' @ ' - String: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E' - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ':' - Line: '166' - String: ':' - Column: '26' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 549, Column: 9 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: '''' - Callee: _ZN4core5slice4sort19partition_in_blocks5width17h7c2e7a704ba7bdc9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 341, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 302, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ':' - Line: '247' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 546, Column: 9 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: '''' - Callee: _ZN4core5slice4sort19partition_in_blocks5width17h7c2e7a704ba7bdc9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 341, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 302, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ':' - Line: '244' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 533, Column: 9 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: '''' - Callee: _ZN4core5slice4sort19partition_in_blocks5width17h7c2e7a704ba7bdc9E - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 302, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ':' - Line: '231' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 470, Column: 55 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 470, Column: 55 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 472, Column: 46 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 472, Column: 56 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 470, Column: 46 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 475, Column: 48 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 475, Column: 48 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 470, Column: 55 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 470, Column: 55 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 472, Column: 46 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 472, Column: 56 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 470, Column: 46 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 475, Column: 48 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 475, Column: 48 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 568, Column: 26 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: _ZN4core5slice4sort9partition17h806290e418586c69E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 560, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 568, Column: 26 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: _ZN4core5slice4sort9partition17h806290e418586c69E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 560, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 566, Column: 9 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 876, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort9partition17h806290e418586c69E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 560, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '75' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort9partition17h806290e418586c69E - String: ':' - Line: '6' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 567, Column: 26 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 1897, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort9partition17h806290e418586c69E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 560, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '5' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort9partition17h806290e418586c69E - String: ':' - Line: '7' - String: ':' - Column: '26' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 588, Column: 28 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort9partition17h806290e418586c69E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 560, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort9partition17h806290e418586c69E - String: ':' - Line: '28' - String: ':' - Column: '28' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 593, Column: 29 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort9partition17h806290e418586c69E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 560, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort9partition17h806290e418586c69E - String: ':' - Line: '33' - String: ':' - Column: '29' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 29, Column: 9 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: '''' - Callee: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E' - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort9partition17h806290e418586c69E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 560, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14930' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h75b6a2ec9a7cc1f9E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core5slice4sort9partition17h806290e418586c69E - String: ':' - Line: '38' - String: ':' - Column: '40' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 598, Column: 14 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: '''' - Callee: _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort9partition17h806290e418586c69E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 560, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14575' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort9partition17h806290e418586c69E - String: ':' - Line: '38' - String: ':' - Column: '14' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 603, Column: 5 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: '''' - Callee: '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort9partition17h806290e418586c69E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 560, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort9partition17h806290e418586c69E - String: ':' - Line: '43' - String: ':' - Column: '5' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 606, Column: 5 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 876, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort9partition17h806290e418586c69E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 560, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '75' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort9partition17h806290e418586c69E - String: ':' - Line: '46' - String: ':' - Column: '5' - String: ';' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 588, Column: 28 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 397, Column: 40 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 470, Column: 55 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i8 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 470, Column: 55 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 475, Column: 48 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i8 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 475, Column: 48 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 588, Column: 28 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 397, Column: 40 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort9partition17h806290e418586c69E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 622, Column: 22 } Function: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 615, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 622, Column: 22 } Function: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 615, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 620, Column: 5 } Function: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E' - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 615, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14925' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E - String: ':' - Line: '5' - String: ':' - Column: '5' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 621, Column: 22 } Function: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 1897, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 615, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '5' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E - String: ':' - Line: '6' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 641, Column: 29 } Function: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 615, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E - String: ':' - Line: '26' - String: ':' - Column: '29' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 646, Column: 28 } Function: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', Line: 166, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 615, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '787' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E - String: ':' - Line: '31' - String: ':' - Column: '28' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 668, Column: 1 } Function: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E Args: - String: '''' - Callee: '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE' - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 615, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E - String: ':' - Line: '53' - String: ':' - Column: '1' - String: ';' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E Args: - String: 'load of type ' - Type: i32 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 646, Column: 28 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Passed Pass: licm Name: InstSunk DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 922, Column: 18 } Function: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E Args: - String: 'sinking ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 922, Column: 18 } ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 506, Column: 13 } Function: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17hfdf0a1153c3e56e1E' Args: - Callee: _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE - String: ' will not be inlined into ' - Caller: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17hfdf0a1153c3e56e1E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 504, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 506, Column: 13 } Function: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17hfdf0a1153c3e56e1E' Args: - Callee: _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE - String: ' will not be inlined into ' - Caller: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17hfdf0a1153c3e56e1E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 504, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 29 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 868, Column: 22 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 29 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 868, Column: 22 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - Callee: _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE - String: ' will not be inlined into ' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 823, Column: 13 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 249, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '510' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 835, Column: 38 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14580' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E - String: ':' - Line: '38' - String: ':' - Column: '38' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 673, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '355' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 198, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '1120' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 861, Column: 28 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: _ZN4core5slice4sort9partition17h806290e418586c69E - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14165' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E - String: ':' - Line: '64' - String: ':' - Column: '28' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 814, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: _ZN4core3cmp6min_by17hd4f33f4a265e89c9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1171, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3min17h6955f9dd2679a295E - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3min17h3b66dd7ee6e4c354E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E - String: ':' - Line: '65' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 866, Column: 29 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 1897, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '5' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E - String: ':' - Line: '69' - String: ':' - Column: '29' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 867, Column: 30 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E' - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E - String: ':' - Line: '70' - String: ':' - Column: '30' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E - String: ':' - Line: '54' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 852, Column: 27 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14805' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E - String: ':' - Line: '55' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 29, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17hfdf0a1153c3e56e1E' - String: ''' inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14975' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h44b794b2d334175fE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E - String: ':' - Line: '58' - String: ':' - Column: '27' - String: ';' ... --- !Missed Pass: inline-cost Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - Callee: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ' has uninlinable pattern (' - InlineResult: recursive - String: ') and cost is not fully computed' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: recursive ... --- !Missed Pass: inline-cost Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - Callee: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ' has uninlinable pattern (' - InlineResult: recursive - String: ') and cost is not fully computed' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: recursive ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 815, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: '''' - Callee: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 148, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: licm Name: InstSunk DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 922, Column: 18 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'sinking ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 922, Column: 18 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 829, Column: 13 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'hoisting ' - Inst: icmp DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 829, Column: 13 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 839, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'hoisting ' - Inst: icmp DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 839, Column: 12 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 839, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'hoisting ' - Inst: select DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 839, Column: 12 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 850, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'hoisting ' - Inst: icmp DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 850, Column: 16 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 813, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 813, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: load eliminated by PRE ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: load eliminated by PRE ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: load eliminated by PRE ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 588, Column: 28 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 588, Column: 28 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 588, Column: 28 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 465, Column: 37 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 424, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 842, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 878, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 874, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 466, Column: 42 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 396, Column: 21 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Passed Pass: licm Name: InstSunk DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 922, Column: 18 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'sinking ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', Line: 922, Column: 18 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: inline-cost Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 897, Column: 5 } Function: _ZN4core5slice4sort9quicksort17h7842f2cad712b10eE Args: - Callee: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ' has uninlinable pattern (' - InlineResult: recursive - String: ') and cost is not fully computed' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 897, Column: 5 } Function: _ZN4core5slice4sort9quicksort17h7842f2cad712b10eE Args: - String: '''' - Callee: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN4core5slice4sort9quicksort17h7842f2cad712b10eE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 885, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: recursive ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/hash/mod.rs', Line: 770, Column: 9 } Function: '_ZN83_$LT$core..hash..BuildHasherDefault$LT$H$GT$$u20$as$u20$core..hash..BuildHasher$GT$12build_hasher17hbca0200ad2e8509bE' Args: - String: '''' - Callee: '_ZN59_$LT$fxhash..FxHasher$u20$as$u20$core..default..Default$GT$7default17h56322d00267286b4E' - String: ''' inlined into ''' - Caller: '_ZN83_$LT$core..hash..BuildHasherDefault$LT$H$GT$$u20$as$u20$core..hash..BuildHasher$GT$12build_hasher17hbca0200ad2e8509bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/hash/mod.rs', Line: 769, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN83_$LT$core..hash..BuildHasherDefault$LT$H$GT$$u20$as$u20$core..hash..BuildHasher$GT$12build_hasher17hbca0200ad2e8509bE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/hash/mod.rs', Line: 810, Column: 21 } Function: '_ZN4core4hash5impls50_$LT$impl$u20$core..hash..Hash$u20$for$u20$u32$GT$4hash17h8bb8d9ec57f9e346E' Args: - String: '''' - Callee: '_ZN55_$LT$fxhash..FxHasher$u20$as$u20$core..hash..Hasher$GT$9write_u3217h6ea1c51f6600b21eE' - String: ''' inlined into ''' - Caller: '_ZN4core4hash5impls50_$LT$impl$u20$core..hash..Hash$u20$for$u20$u32$GT$4hash17h8bb8d9ec57f9e346E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/hash/mod.rs', Line: 809, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15015' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core4hash5impls50_$LT$impl$u20$core..hash..Hash$u20$for$u20$u32$GT$4hash17h8bb8d9ec57f9e346E' - String: ':' - Line: '1' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 267, Column: 21 } Function: _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE Args: - String: '''' - Callee: '_ZN83_$LT$core..hash..BuildHasherDefault$LT$H$GT$$u20$as$u20$core..hash..BuildHasher$GT$12build_hasher17hbca0200ad2e8509bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/hash/mod.rs', Line: 769, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 261, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE - String: ':' - Line: '6' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 268, Column: 5 } Function: _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE Args: - String: '''' - Callee: '_ZN4core4hash5impls50_$LT$impl$u20$core..hash..Hash$u20$for$u20$u32$GT$4hash17h8bb8d9ec57f9e346E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/hash/mod.rs', Line: 809, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 261, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-25' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE - String: ':' - Line: '7' - String: ':' - Column: '5' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 269, Column: 5 } Function: _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE Args: - String: '''' - Callee: '_ZN55_$LT$fxhash..FxHasher$u20$as$u20$core..hash..Hasher$GT$6finish17h60276984bd66316eE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fxhash-0.2.1/lib.rs', Line: 178, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 261, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE - String: ':' - Line: '8' - String: ':' - Column: '5' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 85, Column: 51 } Function: _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse213_mm_set1_epi817hb94aa74bb45fa466E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1081, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 75, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E - String: ':' - Line: '10' - String: ':' - Column: '51' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 85, Column: 23 } Function: _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse214_mm_cmpeq_epi817h87687a818487a9d4E - String: ''' inlined into ''' - Caller: _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 75, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '974' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E - String: ':' - Line: '10' - String: ':' - Column: '23' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 86, Column: 21 } Function: _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse217_mm_movemask_epi817h361d500a1788e36fE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1386, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 75, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-25' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E - String: ':' - Line: '11' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 814, Column: 9 } Function: '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E' Args: - String: '''' - Callee: _ZN4core3cmp6min_by17hd4f33f4a265e89c9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1171, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2182, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-40' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3min17h6955f9dd2679a295E - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN9hashbrown3raw2h217hebd1ca978dc249e3E - String: ':' - Line: '4' - String: ':' - Column: '20' - String: ' @ ' - String: '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E' - String: ':' - Line: '2' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 49, Column: 15 } Function: '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E' Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse215_mm_loadu_si12817hb29751f91b7d64a2E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1200, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2182, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group4load17ha2bdad54841b756eE - String: ':' - Line: '1' - String: ':' - Column: '15' - String: ' @ ' - String: '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E' - String: ':' - Line: '4' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2187, Column: 27 } Function: '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E' Args: - String: '''' - Callee: _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 75, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2182, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-25' - String: ', threshold=' - Threshold: '974' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E' - String: ':' - Line: '5' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2219, Column: 36 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: '''' - Callee: '_ZN95_$LT$hashbrown..raw..bitmask..BitMaskIter$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hcd1710d002aba3b9E' - String: ''' inlined into ''' - Caller: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2216, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14985' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' - String: ':' - Line: '3' - String: ':' - Column: '36' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 94, Column: 9 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: '''' - Callee: _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 75, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2216, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-25' - String: ', threshold=' - Threshold: '974' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group11match_empty17h2c4e7d4941d31755E - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' - String: ':' - Line: '7' - String: ':' - Column: '38' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 62, Column: 9 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: '''' - Callee: _ZN9hashbrown3raw4cold17h85b79fa5cb55eabdE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 56, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2216, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '45' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw6likely17h947c12da0c6bd19eE - String: ':' - Line: '2' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' - String: ':' - Line: '7' - String: ':' - Column: '20' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 49, Column: 15 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse215_mm_loadu_si12817hb29751f91b7d64a2E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1200, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2216, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group4load17ha2bdad54841b756eE - String: ':' - Line: '1' - String: ':' - Column: '15' - String: ' @ ' - String: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' - String: ':' - Line: '11' - String: ':' - Column: '30' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2228, Column: 32 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: '''' - Callee: _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E - String: ''' inlined into ''' - Caller: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2216, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15025' - String: ', threshold=' - Threshold: '974' - String: ')' - String: ' at callsite ' - String: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' - String: ':' - Line: '12' - String: ':' - Column: '32' - String: ';' ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2219, Column: 36 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2219, Column: 36 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', Line: 118, Column: 19 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 182, Column: 9 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 182, Column: 9 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Passed Pass: licm Name: PromoteLoopAccessesToScalar DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 183, Column: 9 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: Moving accesses to memory location out of the loop ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2223, Column: 27 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2223, Column: 27 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2223, Column: 27 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2226, Column: 42 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2226, Column: 42 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2226, Column: 42 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2226, Column: 42 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2226, Column: 42 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2226, Column: 42 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2226, Column: 42 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 181, Column: 9 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 181, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 181, Column: 9 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2228, Column: 54 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2228, Column: 54 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2228, Column: 54 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2228, Column: 54 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/simd.rs', Line: 193, Column: 1 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: 'hoisting ' - Inst: insertelement DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/simd.rs', Line: 193, Column: 1 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/simd.rs', Line: 193, Column: 1 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: 'hoisting ' - Inst: shufflevector DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/simd.rs', Line: 193, Column: 1 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', Line: 118, Column: 19 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: PromoteLoopAccessesToScalar DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 181, Column: 9 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: Moving accesses to memory location out of the loop ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2223, Column: 27 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: load eliminated by PRE ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2220, Column: 34 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: load eliminated by PRE ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2220, Column: 62 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: load eliminated by PRE ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2220, Column: 62 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: load eliminated by PRE ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2226, Column: 42 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2205, Column: 19 } Function: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' Args: - String: '''' - Callee: '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE' - String: ''' inlined into ''' - Caller: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2203, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14855' - String: ', threshold=' - Threshold: '438' - String: ')' - String: ' at callsite ' - String: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' - String: ':' - Line: '2' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2206, Column: 37 } Function: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$6bucket17h224c8a87222395a4E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1267, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2203, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' - String: ':' - Line: '3' - String: ':' - Column: '37' - String: ';' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2226, Column: 42 } Function: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2226, Column: 42 } Function: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2206, Column: 37 } Function: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2206, Column: 37 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2206, Column: 37 } Function: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' Args: - String: load eliminated by PRE ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2226, Column: 42 } Function: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 233, Column: 19 } Function: '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE' Args: - String: '''' - Callee: '_ZN51_$LT$T$u20$as$u20$core..borrow..Borrow$LT$T$GT$$GT$6borrow17h9596354329525d8aE' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 233, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE' - String: ':' - Line: '0' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 233, Column: 14 } Function: '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE' Args: - String: '''' - Callee: '_ZN4core3cmp5impls54_$LT$impl$u20$core..cmp..PartialEq$u20$for$u20$u32$GT$2eq17h0575c314f1f054b3E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 233, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE' - String: ':' - Line: '0' - String: ':' - Column: '14' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 2175, Column: 20 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 919, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15005' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw24RawIterHash$LT$T$C$A$GT$3new17hf4865d7e5e85e486E' - String: ':' - Line: '2' - String: ':' - Column: '20' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$9iter_hash17h4bb75b8e2635b903E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' - String: ':' - Line: '2' - String: ':' - Column: '32' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 921, Column: 27 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' Args: - String: '''' - Callee: '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 919, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14910' - String: ', threshold=' - Threshold: '438' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' - String: ':' - Line: '2' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 923, Column: 27 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' Args: - String: '''' - Callee: '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 919, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' - String: ':' - Line: '4' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 62, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' Args: - String: '''' - Callee: _ZN9hashbrown3raw4cold17h85b79fa5cb55eabdE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 56, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 919, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '45' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw6likely17h947c12da0c6bd19eE - String: ':' - Line: '2' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' - String: ':' - Line: '4' - String: ':' - Column: '20' - String: ';' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 233, Column: 14 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 233, Column: 14 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 233, Column: 14 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 901, Column: 20 } Function: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE' Args: - String: '''' - Callee: _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 900, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE' - String: ':' - Line: '1' - String: ':' - Column: '20' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 902, Column: 29 } Function: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 919, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 900, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '110' - String: ', threshold=' - Threshold: '569' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE' - String: ':' - Line: '2' - String: ':' - Column: '29' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 130, Column: 9 } Function: '_ZN15similarity_join6record13load_relation28_$u7b$$u7b$closure$u7d$$u7d$17hcf3ae76b736dc3cfE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN15similarity_join6record13load_relation28_$u7b$$u7b$closure$u7d$$u7d$17hcf3ae76b736dc3cfE' DebugLoc: { File: 'src/record.rs', Line: 41, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '145' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h0be1087d6254dc0fE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$16with_capacity_in17h70dda23586bcca2dE' - String: ':' - Line: '1' - String: ':' - Column: '20' - String: ' @ ' - String: '_ZN5alloc3vec12Vec$LT$T$GT$13with_capacity17h56b1a198accd2119E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN15similarity_join6record13load_relation28_$u7b$$u7b$closure$u7d$$u7d$17hcf3ae76b736dc3cfE' - String: ':' - Line: '0' - String: ':' - Column: '67' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 49, Column: 15 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse215_mm_loadu_si12817hb29751f91b7d64a2E - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1211, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group4load17ha2bdad54841b756eE - String: ':' - Line: '1' - String: ':' - Column: '15' - String: ' @ ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' - String: ':' - Line: '4' - String: ':' - Column: '29' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 110, Column: 21 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse217_mm_movemask_epi817h361d500a1788e36fE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1386, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1211, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-25' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group22match_empty_or_deleted17he4785729a82ee490E - String: ':' - Line: '10' - String: ':' - Column: '21' - String: ' @ ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' - String: ':' - Line: '5' - String: ':' - Column: '42' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 70, Column: 9 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' Args: - String: '''' - Callee: _ZN9hashbrown3raw4cold17h85b79fa5cb55eabdE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 56, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1211, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '45' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw8unlikely17h51f3123906009edeE - String: ':' - Line: '2' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' - String: ':' - Line: '17' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 59, Column: 15 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse214_mm_load_si12817h24ce96806e62121dE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1187, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1211, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group12load_aligned17h397531b7c90c31f7E - String: ':' - Line: '3' - String: ':' - Column: '15' - String: ' @ ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' - String: ':' - Line: '20' - String: ':' - Column: '32' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 110, Column: 21 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse217_mm_movemask_epi817h361d500a1788e36fE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1386, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1211, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-25' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group22match_empty_or_deleted17he4785729a82ee490E - String: ':' - Line: '10' - String: ':' - Column: '21' - String: ' @ ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' - String: ':' - Line: '21' - String: ':' - Column: '30' - String: ';' ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' Args: - String: 'hoisting ' - Inst: icmp ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' Args: - String: 'hoisting ' - Inst: call ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1397, Column: 13 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E' Args: - String: '''' - Callee: '_ZN75_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$core..clone..Clone$GT$5clone17h67eb7c9025470c8aE' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1387, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E' - String: ':' - Line: '10' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1396, Column: 29 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1387, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14590' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E' - String: ':' - Line: '9' - String: ':' - Column: '29' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 59, Column: 15 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E' Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse214_mm_load_si12817h24ce96806e62121dE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1187, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1035, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group12load_aligned17h397531b7c90c31f7E - String: ':' - Line: '3' - String: ':' - Column: '15' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawIterRange$LT$T$GT$3new17h83d47a506439db1aE' - String: ':' - Line: '6' - String: ':' - Column: '29' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E' - String: ':' - Line: '3' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 110, Column: 21 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E' Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse217_mm_movemask_epi817h361d500a1788e36fE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1386, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1035, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-25' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group22match_empty_or_deleted17he4785729a82ee490E - String: ':' - Line: '10' - String: ':' - Column: '21' - String: ' @ ' - String: _ZN9hashbrown3raw4sse25Group10match_full17hdadeff2b5424afe3E - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawIterRange$LT$T$GT$3new17h83d47a506439db1aE' - String: ':' - Line: '6' - String: ':' - Column: '55' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E' - String: ':' - Line: '3' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1808, Column: 33 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw15Bucket$LT$T$GT$6next_n17h25e11bcf11e20fdcE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 332, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1803, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' - String: ':' - Line: '5' - String: ':' - Column: '33' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 59, Column: 15 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse214_mm_load_si12817h24ce96806e62121dE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1187, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1803, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group12load_aligned17h397531b7c90c31f7E - String: ':' - Line: '3' - String: ':' - Column: '15' - String: ' @ ' - String: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' - String: ':' - Line: '17' - String: ':' - Column: '38' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 110, Column: 21 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse217_mm_movemask_epi817h361d500a1788e36fE - String: ''' inlined into ''' - Caller: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1803, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15025' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group22match_empty_or_deleted17he4785729a82ee490E - String: ':' - Line: '10' - String: ':' - Column: '21' - String: ' @ ' - String: _ZN9hashbrown3raw4sse25Group10match_full17hdadeff2b5424afe3E - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' - String: ':' - Line: '17' - String: ':' - Column: '74' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1821, Column: 29 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw15Bucket$LT$T$GT$6next_n17h25e11bcf11e20fdcE' - String: ''' inlined into ''' - Caller: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1803, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' - String: ':' - Line: '18' - String: ':' - Column: '29' - String: ';' ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1806, Column: 38 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1806, Column: 38 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1806, Column: 38 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1821, Column: 29 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: PromoteLoopAccessesToScalar DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1820, Column: 17 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: Moving accesses to memory location out of the loop ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1821, Column: 29 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Passed Pass: licm Name: PromoteLoopAccessesToScalar DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1821, Column: 29 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: Moving accesses to memory location out of the loop ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1811, Column: 20 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1811, Column: 20 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1811, Column: 20 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1811, Column: 38 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1811, Column: 38 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1811, Column: 38 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1811, Column: 38 } ... --- !Passed Pass: licm Name: PromoteLoopAccessesToScalar DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1822, Column: 17 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: Moving accesses to memory location out of the loop ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1808, Column: 33 } Function: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' Args: - String: load eliminated by PRE ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 117, Column: 14 } Function: '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$10deallocate17hfe4fc286dc536cf3E' Args: - String: '''' - Callee: __rust_dealloc DebugLoc: { File: 'src/main.rs', Line: 14, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$10deallocate17hfe4fc286dc536cf3E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/alloc.rs', Line: 49, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-10' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN5alloc5alloc7dealloc17hd511352e90405d82E - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$10deallocate17hfe4fc286dc536cf3E' - String: ':' - Line: '1' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1421, Column: 43 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E' Args: - String: '''' - Callee: _ZN9hashbrown3raw11TableLayout20calculate_layout_for17hd5066d4e0b6d4059E - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1419, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E' - String: ':' - Line: '2' - String: ':' - Column: '43' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1425, Column: 9 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E' Args: - String: '''' - Callee: '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$10deallocate17hfe4fc286dc536cf3E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1419, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15010' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E' - String: ':' - Line: '6' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1413, Column: 17 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize28_$u7b$$u7b$closure$u7d$$u7d$17h2a86b80f9442596dE' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1419, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize28_$u7b$$u7b$closure$u7d$$u7d$17h2a86b80f9442596dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1411, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '45' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize28_$u7b$$u7b$closure$u7d$$u7d$17h2a86b80f9442596dE' - String: ':' - Line: '2' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/scopeguard.rs', Line: 47, Column: 9 } Function: '_ZN88_$LT$hashbrown..scopeguard..ScopeGuard$LT$T$C$F$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hf4905b2cbccd719cE' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize28_$u7b$$u7b$closure$u7d$$u7d$17h2a86b80f9442596dE' - String: ''' inlined into ''' - Caller: '_ZN88_$LT$hashbrown..scopeguard..ScopeGuard$LT$T$C$F$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hf4905b2cbccd719cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/scopeguard.rs', Line: 46, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14945' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN88_$LT$hashbrown..scopeguard..ScopeGuard$LT$T$C$F$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hf4905b2cbccd719cE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr256drop_in_place$LT$hashbrown..scopeguard..ScopeGuard$LT$hashbrown..raw..RawTableInner$LT$hashbrown..raw..alloc..inner..Global$GT$$C$hashbrown..raw..RawTableInner$LT$hashbrown..raw..alloc..inner..Global$GT$..prepare_resize..$u7b$$u7b$closure$u7d$$u7d$$GT$$GT$17h22b458bbaca91cefE' Args: - String: '''' - Callee: '_ZN88_$LT$hashbrown..scopeguard..ScopeGuard$LT$T$C$F$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hf4905b2cbccd719cE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr256drop_in_place$LT$hashbrown..scopeguard..ScopeGuard$LT$hashbrown..raw..RawTableInner$LT$hashbrown..raw..alloc..inner..Global$GT$$C$hashbrown..raw..RawTableInner$LT$hashbrown..raw..alloc..inner..Global$GT$..prepare_resize..$u7b$$u7b$closure$u7d$$u7d$$GT$$GT$17h22b458bbaca91cefE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14910' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr256drop_in_place$LT$hashbrown..scopeguard..ScopeGuard$LT$hashbrown..raw..RawTableInner$LT$hashbrown..raw..alloc..inner..Global$GT$$C$hashbrown..raw..RawTableInner$LT$hashbrown..raw..alloc..inner..Global$GT$..prepare_resize..$u7b$$u7b$closure$u7d$$u7d$$GT$$GT$17h22b458bbaca91cefE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 255, Column: 21 } Function: _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE Args: - String: '''' - Callee: '_ZN83_$LT$core..hash..BuildHasherDefault$LT$H$GT$$u20$as$u20$core..hash..BuildHasher$GT$12build_hasher17hbca0200ad2e8509bE' - String: ''' inlined into ''' - Caller: _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 248, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE - String: ':' - Line: '7' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 256, Column: 5 } Function: _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE Args: - String: '''' - Callee: '_ZN4core4hash5impls50_$LT$impl$u20$core..hash..Hash$u20$for$u20$u32$GT$4hash17h8bb8d9ec57f9e346E' - String: ''' inlined into ''' - Caller: _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 248, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15025' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE - String: ':' - Line: '8' - String: ':' - Column: '5' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 257, Column: 5 } Function: _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE Args: - String: '''' - Callee: '_ZN55_$LT$fxhash..FxHasher$u20$as$u20$core..hash..Hasher$GT$6finish17h60276984bd66316eE' - String: ''' inlined into ''' - Caller: _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 248, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE - String: ':' - Line: '9' - String: ':' - Column: '5' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 222, Column: 16 } Function: '_ZN9hashbrown3map11make_hasher28_$u7b$$u7b$closure$u7d$$u7d$17hdc76bd6995535f10E' Args: - String: '''' - Callee: _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 248, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3map11make_hasher28_$u7b$$u7b$closure$u7d$$u7d$17hdc76bd6995535f10E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 222, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3map11make_hasher28_$u7b$$u7b$closure$u7d$$u7d$17hdc76bd6995535f10E' - String: ':' - Line: '0' - String: ':' - Column: '16' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 814, Column: 9 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E' Args: - String: '''' - Callee: _ZN4core3cmp6min_by17hd4f33f4a265e89c9E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1171, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1324, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-40' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3min17h6955f9dd2679a295E - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN9hashbrown3raw2h217hebd1ca978dc249e3E - String: ':' - Line: '4' - String: ':' - Column: '20' - String: ' @ ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E' - String: ':' - Line: '1' - String: ':' - Column: '30' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 780, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-40' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN9hashbrown3raw11TableLayout3new17h740adb3f94ec47e3E - String: ':' - Line: '4' - String: ':' - Column: '25' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' - String: ':' - Line: '9' - String: ':' - Column: '37' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 788, Column: 17 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 780, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14605' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' - String: ':' - Line: '8' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 792, Column: 25 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1035, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 780, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-5' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' - String: ':' - Line: '12' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1997, Column: 26 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: '''' - Callee: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1803, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 780, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '40' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN91_$LT$hashbrown..raw..RawIter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h3905473dea73cc44E' - String: ':' - Line: '1' - String: ':' - Column: '26' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' - String: ':' - Line: '12' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 808, Column: 13 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: '''' - Callee: _ZN4core3mem4swap17h52c302ac7ef84f2eE - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 780, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15020' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' - String: ':' - Line: '28' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 811, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: '''' - Callee: '_ZN4core3ptr256drop_in_place$LT$hashbrown..scopeguard..ScopeGuard$LT$hashbrown..raw..RawTableInner$LT$hashbrown..raw..alloc..inner..Global$GT$$C$hashbrown..raw..RawTableInner$LT$hashbrown..raw..alloc..inner..Global$GT$..prepare_resize..$u7b$$u7b$closure$u7d$$u7d$$GT$$GT$17h22b458bbaca91cefE' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 780, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14930' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' - String: ':' - Line: '31' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 794, Column: 28 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: '''' - Callee: '_ZN9hashbrown3map11make_hasher28_$u7b$$u7b$closure$u7d$$u7d$17hdc76bd6995535f10E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 222, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 780, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' - String: ':' - Line: '14' - String: ':' - Column: '28' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1200, Column: 21 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1211, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 780, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '70' - String: ', threshold=' - Threshold: '569' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$19prepare_insert_slot17h79388176e01ce371E' - String: ':' - Line: '1' - String: ':' - Column: '21' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' - String: ':' - Line: '20' - String: ':' - Column: '44' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1202, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1324, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 780, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-20' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$19prepare_insert_slot17h79388176e01ce371E' - String: ':' - Line: '3' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' - String: ':' - Line: '20' - String: ':' - Column: '44' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 801, Column: 17 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$6bucket17h224c8a87222395a4E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1267, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 780, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' - String: ':' - Line: '21' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 801, Column: 17 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw15Bucket$LT$T$GT$24copy_from_nonoverlapping17h66aa0b3825165c06E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 363, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 780, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' - String: ':' - Line: '21' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: licm Name: InstSunk DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', Line: 25, Column: 17 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: 'sinking ' - Inst: xor DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', Line: 25, Column: 17 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 504, Column: 32 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1372, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2844, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1132, Column: 51 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 504, Column: 32 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1180, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1372, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2844, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1132, Column: 51 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 717, Column: 12 } Function: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E' Args: - String: '''' - Callee: '_ZN4core3cmp5impls57_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$2lt17hbc71024a1daecb16E' - String: ''' inlined into ''' - Caller: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 716, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E' - String: ':' - Line: '1' - String: ':' - Column: '12' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 718, Column: 24 } Function: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E' Args: - String: '''' - Callee: '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$13steps_between17h3989600a33f39965E' - String: ''' inlined into ''' - Caller: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 716, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15010' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E' - String: ':' - Line: '2' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', Line: 409, Column: 33 } Function: '_ZN146_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..iter..adapters..step_by..SpecRangeSetup$LT$core..ops..range..Range$LT$usize$GT$$GT$$GT$5setup17hbd10847dd5825ff4E' Args: - String: '''' - Callee: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E' - String: ''' inlined into ''' - Caller: '_ZN146_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..iter..adapters..step_by..SpecRangeSetup$LT$core..ops..range..Range$LT$usize$GT$$GT$$GT$5setup17hbd10847dd5825ff4E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', Line: 408, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN146_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..iter..adapters..step_by..SpecRangeSetup$LT$core..ops..range..Range$LT$usize$GT$$GT$$GT$5setup17hbd10847dd5825ff4E' - String: ':' - Line: '1' - String: ':' - Column: '33' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', Line: 412, Column: 35 } Function: '_ZN146_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..iter..adapters..step_by..SpecRangeSetup$LT$core..ops..range..Range$LT$usize$GT$$GT$$GT$5setup17hbd10847dd5825ff4E' Args: - String: '''' - Callee: '_ZN4core3num23_$LT$impl$u20$usize$GT$8div_ceil17h7a387dba9ed6f1f6E' - String: ''' inlined into ''' - Caller: '_ZN146_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..iter..adapters..step_by..SpecRangeSetup$LT$core..ops..range..Range$LT$usize$GT$$GT$$GT$5setup17hbd10847dd5825ff4E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', Line: 408, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15015' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN146_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..iter..adapters..step_by..SpecRangeSetup$LT$core..ops..range..Range$LT$usize$GT$$GT$$GT$5setup17hbd10847dd5825ff4E' - String: ':' - Line: '4' - String: ':' - Column: '35' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', Line: 34, Column: 20 } Function: '_ZN4core4iter8adapters7step_by15StepBy$LT$I$GT$3new17h2ebf892157bf24f1E' Args: - String: '''' - Callee: '_ZN146_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..iter..adapters..step_by..SpecRangeSetup$LT$core..ops..range..Range$LT$usize$GT$$GT$$GT$5setup17hbd10847dd5825ff4E' - String: ''' inlined into ''' - Caller: '_ZN4core4iter8adapters7step_by15StepBy$LT$I$GT$3new17h2ebf892157bf24f1E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', Line: 32, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15005' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core4iter8adapters7step_by15StepBy$LT$I$GT$3new17h2ebf892157bf24f1E' - String: ':' - Line: '2' - String: ':' - Column: '20' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 137, Column: 24 } Function: _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse217_mm_setzero_si12817hf7d470f35c825ff2E - String: ''' inlined into ''' - Caller: _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 125, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E - String: ':' - Line: '12' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 138, Column: 27 } Function: _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse214_mm_cmpgt_epi817h8f4796e3881a5eb6E - String: ''' inlined into ''' - Caller: _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 125, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '974' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E - String: ':' - Line: '13' - String: ':' - Column: '27' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 141, Column: 17 } Function: _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse213_mm_set1_epi817hb94aa74bb45fa466E - String: ''' inlined into ''' - Caller: _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 125, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E - String: ':' - Line: '16' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 139, Column: 19 } Function: _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse212_mm_or_si12817hcba6ec9d3530d909E - String: ''' inlined into ''' - Caller: _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 125, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '974' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E - String: ':' - Line: '14' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 451, Column: 9 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' Args: - String: '''' - Callee: '_ZN4core4iter8adapters7step_by15StepBy$LT$I$GT$3new17h2ebf892157bf24f1E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', Line: 32, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1245, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-20' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core4iter6traits8iterator8Iterator7step_by17hf5d75d8f5c9fdec8E - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' - String: ':' - Line: '4' - String: ':' - Column: '38' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 59, Column: 15 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse214_mm_load_si12817h24ce96806e62121dE - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1245, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group12load_aligned17h397531b7c90c31f7E - String: ':' - Line: '3' - String: ':' - Column: '15' - String: ' @ ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' - String: ':' - Line: '5' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1251, Column: 25 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' Args: - String: '''' - Callee: _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1245, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '974' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' - String: ':' - Line: '6' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', Line: 69, Column: 9 } Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' Args: - String: '''' - Callee: _ZN4core9core_arch3x864sse215_mm_store_si12817h97f0f1ad74f17bf0E - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1245, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '731' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw4sse25Group13store_aligned17hefdcd612909c3794E - String: ':' - Line: '3' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' - String: ':' - Line: '7' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' Args: - String: 'hoisting ' - Inst: icmp ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' Args: - String: 'hoisting ' - Inst: call ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 711, Column: 13 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 705, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14940' - String: ', threshold=' - Threshold: '569' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' - String: ':' - Line: '6' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 624, Column: 35 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: '''' - Callee: '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 189, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 705, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE' - String: ':' - Line: '4' - String: ':' - Column: '35' - String: ' @ ' - String: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E' - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' - String: ':' - Line: '24' - String: ':' - Column: '30' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 736, Column: 32 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$6bucket17h224c8a87222395a4E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1267, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 705, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' - String: ':' - Line: '31' - String: ':' - Column: '32' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 737, Column: 32 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: '''' - Callee: '_ZN9hashbrown3map11make_hasher28_$u7b$$u7b$closure$u7d$$u7d$17hdc76bd6995535f10E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 705, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' - String: ':' - Line: '32' - String: ':' - Column: '32' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 740, Column: 33 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1211, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 705, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '70' - String: ', threshold=' - Threshold: '569' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' - String: ':' - Line: '35' - String: ':' - Column: '33' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 62, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: '''' - Callee: _ZN9hashbrown3raw4cold17h85b79fa5cb55eabdE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 56, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 705, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '45' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw6likely17h947c12da0c6bd19eE - String: ':' - Line: '2' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' - String: ':' - Line: '42' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1331, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1324, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 705, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-20' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$15replace_ctrl_h217hd9886cdb76e99903E' - String: ':' - Line: '2' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' - String: ':' - Line: '49' - String: ':' - Column: '43' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 748, Column: 25 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1324, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 705, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-20' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' - String: ':' - Line: '43' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 767, Column: 35 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$6bucket17h224c8a87222395a4E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1267, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 705, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' - String: ':' - Line: '62' - String: ':' - Column: '35' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 767, Column: 25 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: '''' - Callee: _ZN4core3mem4swap17h64bd47b1ede9e413E - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 705, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15020' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' - String: ':' - Line: '62' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 760, Column: 25 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$6bucket17h224c8a87222395a4E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 705, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' - String: ':' - Line: '55' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 760, Column: 25 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw15Bucket$LT$T$GT$24copy_from_nonoverlapping17h66aa0b3825165c06E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 705, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' - String: ':' - Line: '55' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/num/mod.rs', Line: 456, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'hoisting ' - Inst: sub DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/num/mod.rs', Line: 456, Column: 5 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 481, Column: 18 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 481, Column: 18 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 481, Column: 18 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 481, Column: 18 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 737, Column: 32 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 737, Column: 32 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1372, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 711, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 730, Column: 20 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1238, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 730, Column: 20 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 737, Column: 32 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1360, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1238, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 730, Column: 20 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1238, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 730, Column: 20 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 737, Column: 32 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1360, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1238, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 737, Column: 32 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 99, Column: 40 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 673, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 99, Column: 40 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 673, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 673, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' - String: ':' - Line: '21' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 693, Column: 13 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 673, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14225' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' - String: ':' - Line: '20' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 688, Column: 13 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 673, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14545' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' - String: ':' - Line: '15' - String: ':' - Column: '13' - String: ';' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 737, Column: 32 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 737, Column: 32 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 711, Column: 13 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 684, Column: 53 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 730, Column: 20 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 730, Column: 20 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1238, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 737, Column: 32 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1238, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1360, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 788, Column: 17 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 680, Column: 31 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2844, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2844, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2844, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 730, Column: 20 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 730, Column: 20 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1238, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 737, Column: 32 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1238, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1360, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 1378, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2844, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2844, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2844, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 737, Column: 32 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$7reserve17hd77d5f8541dac4fdE' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 673, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$7reserve17hd77d5f8541dac4fdE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 643, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1211, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 818, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '70' - String: ', threshold=' - Threshold: '569' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' - String: ':' - Line: '2' - String: ':' - Column: '29' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 70, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: '''' - Callee: _ZN9hashbrown3raw4cold17h85b79fa5cb55eabdE - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 818, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '45' - String: ')' - String: ' at callsite ' - String: _ZN9hashbrown3raw8unlikely17h51f3123906009edeE - String: ':' - Line: '2' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' - String: ':' - Line: '8' - String: ':' - Column: '16' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 827, Column: 17 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$7reserve17hd77d5f8541dac4fdE' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 818, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14980' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' - String: ':' - Line: '9' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 818, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14930' - String: ', threshold=' - Threshold: '569' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' - String: ':' - Line: '10' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1309, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 818, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15020' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$21record_item_insert_at17h50d41967f8c0f30bE' - String: ':' - Line: '2' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' - String: ':' - Line: '13' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 833, Column: 26 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6bucket17hf08a13a598e6c743E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 818, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' - String: ':' - Line: '15' - String: ':' - Column: '26' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 673, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 818, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 825, Column: 28 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1309, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1309, Column: 9 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1309, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1309, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 865, Column: 18 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 3331, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14635' - String: ', threshold=' - Threshold: '569' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$12insert_entry17hd91b33dce550ee57E' - String: ':' - Line: '1' - String: ':' - Column: '18' - String: ' @ ' - String: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' - String: ':' - Line: '6' - String: ':' - Column: '27' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 673, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 3331, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 2782, Column: 50 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: '''' - Callee: '_ZN15similarity_join6record13load_relation28_$u7b$$u7b$closure$u7d$$u7d$17hcf3ae76b736dc3cfE' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 2775, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14860' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' - String: ':' - Line: '7' - String: ':' - Column: '50' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 2782, Column: 37 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: '''' - Callee: '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 2775, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14615' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' - String: ':' - Line: '7' - String: ':' - Column: '37' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 673, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 2775, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3max17hae4946db965cca35E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' - String: ':' - Line: '15' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3max17hae4946db965cca35E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' - String: ':' - Line: '16' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 433, Column: 16 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: '''' - Callee: _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 436, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-20' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5alloc6layout6Layout5array17h0d164c05247cc9e2E - String: ':' - Line: '2' - String: ':' - Column: '16' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' - String: ':' - Line: '18' - String: ':' - Column: '26' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 43 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17hc6b9d8d38f1fa913E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 239, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' - String: ':' - Line: '21' - String: ':' - Column: '43' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: '''' - Callee: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 464, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 405, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$15set_ptr_and_cap17hba7dded311dfec15E' - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' - String: ':' - Line: '22' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 43 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 398, Column: 28 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: inttoptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 302, Column: 24 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '140' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' - String: ':' - Line: '1' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 302, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' Args: - String: '''' - Callee: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 503, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '55' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' Args: - String: '''' - Callee: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 464, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1825, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E' Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3max17hae4946db965cca35E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' - String: ':' - Line: '15' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3max17hae4946db965cca35E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' - String: ':' - Line: '16' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 433, Column: 16 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: '''' - Callee: _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 436, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-20' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5alloc6layout6Layout5array17hd0e0ef8e7773a3d9E - String: ':' - Line: '2' - String: ':' - Column: '16' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' - String: ':' - Line: '18' - String: ':' - Column: '26' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 43 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17hf3cebb45b0cbef90E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 239, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' - String: ':' - Line: '21' - String: ':' - Column: '43' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: '''' - Callee: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 464, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 405, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$15set_ptr_and_cap17hc32ac00f13257e07E' - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' - String: ':' - Line: '22' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 43 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 398, Column: 28 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: inttoptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 302, Column: 24 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E' - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14855' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' - String: ':' - Line: '1' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 302, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' Args: - String: '''' - Callee: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 503, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '55' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' Args: - String: '''' - Callee: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 464, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1825, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E' Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3max17hae4946db965cca35E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' - String: ':' - Line: '15' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1240, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-35' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3max17hae4946db965cca35E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' - String: ':' - Line: '16' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', Line: 433, Column: 16 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: '''' - Callee: _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15020' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core5alloc6layout6Layout5array17ha9e0225a29b9a19fE - String: ':' - Line: '2' - String: ':' - Column: '16' - String: ' @ ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' - String: ':' - Line: '18' - String: ':' - Column: '26' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 43 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17h6e62f964d2d11881E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 239, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' - String: ':' - Line: '21' - String: ':' - Column: '43' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: '''' - Callee: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 464, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 405, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$15set_ptr_and_cap17h2bc1c99ba5775d25E' - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 383, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' - String: ':' - Line: '22' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 43 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 398, Column: 28 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: inttoptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 302, Column: 24 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE' - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14855' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' - String: ':' - Line: '1' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 302, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' Args: - String: '''' - Callee: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 503, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '55' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' Args: - String: '''' - Callee: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 464, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1825, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E' Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/record.rs', Line: 51, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/record.rs', Line: 51, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - Callee: _ZN4core9panicking5panic17h1d82ab6226901e9cE - String: ' will not be inlined into ' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/record.rs', Line: 23, Column: 16 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: _ZN3std2fs4File4open17h34e474e28e0e0bdcE - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14915' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '1' - String: ':' - Column: '16' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/record.rs', Line: 24, Column: 22 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14865' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '2' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 489, Column: 15 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14865' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$16with_capacity_in17h337d8ef67c907169E' - String: ':' - Line: '2' - String: ':' - Column: '15' - String: ' @ ' - String: '_ZN9hashbrown3raw17RawTable$LT$T$GT$13with_capacity17h263d0ed673c3c69dE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3map24HashMap$LT$K$C$V$C$S$GT$24with_capacity_and_hasher17h8a8f186ed957ce2dE' - String: ':' - Line: '3' - String: ':' - Column: '20' - String: ' @ ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '4' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 130, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14855' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h517eb7f51f7f540aE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$16with_capacity_in17h2e13b0177aac736aE' - String: ':' - Line: '1' - String: ':' - Column: '20' - String: ' @ ' - String: '_ZN5alloc3vec12Vec$LT$T$GT$13with_capacity17h91d454c5f0c08df6E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '5' - String: ':' - Column: '23' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 130, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '145' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h65853ad3cb8b3fa9E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$16with_capacity_in17h2ded9530409c73c5E' - String: ':' - Line: '1' - String: ':' - Column: '20' - String: ' @ ' - String: '_ZN5alloc3vec12Vec$LT$T$GT$13with_capacity17hae6931c7978f2904E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '6' - String: ':' - Column: '30' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1962, Column: 27 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN6anyhow5error72_$LT$impl$u20$core..convert..From$LT$E$GT$$u20$for$u20$anyhow..Error$GT$4from17h3fbcaf4e75eb45afE' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '0' - String: ', threshold=' - Threshold: '45' - String: ')' - String: ' at callsite ' - String: '_ZN153_$LT$core..result..Result$LT$T$C$F$GT$$u20$as$u20$core..ops..try_trait..FromResidual$LT$core..result..Result$LT$core..convert..Infallible$C$E$GT$$GT$$GT$13from_residual17h6329661a37d83887E' - String: ':' - Line: '2' - String: ':' - Column: '27' - String: ' @ ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '1' - String: ':' - Column: '16' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 217, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '680' - String: ', threshold=' - Threshold: '325' - String: ')' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/record.rs', Line: 34, Column: 10 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN4core3ptr76drop_in_place$LT$core..result..Result$LT$u32$C$std..io..error..Error$GT$$GT$17h616b09680f5b9f11E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '95' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '12' - String: ':' - Column: '10' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 130, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14790' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h0be1087d6254dc0fE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$16with_capacity_in17h70dda23586bcca2dE' - String: ':' - Line: '1' - String: ':' - Column: '20' - String: ' @ ' - String: '_ZN5alloc3vec12Vec$LT$T$GT$13with_capacity17h56b1a198accd2119E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '14' - String: ':' - Column: '26' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/record.rs', Line: 34, Column: 10 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN4core3ptr76drop_in_place$LT$core..result..Result$LT$u32$C$std..io..error..Error$GT$$GT$17h616b09680f5b9f11E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14905' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '12' - String: ':' - Column: '10' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/record.rs', Line: 61, Column: 1 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14955' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '39' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 624, Column: 35 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN47_$LT$u32$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17haf74a5f77c4b068aE' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '787' - String: ')' - String: ' at callsite ' - String: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17h50032c471b98e0bfE' - String: ':' - Line: '4' - String: ':' - Column: '35' - String: ' @ ' - String: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h5b78cebea794f397E' - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '17' - String: ':' - Column: '18' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 2898, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: _ZN4core5slice4sort9quicksort17h7842f2cad712b10eE - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14970' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$13sort_unstable17h7835f10a0003edc1E' - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '27' - String: ':' - Column: '16' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 217, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '680' - String: ', threshold=' - Threshold: '525' - String: ')' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN88_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$similarity_join..util..ForceUnwrap$GT$12unwrap_force17h273f87d9dbbec25aE' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '787' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '18' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/record.rs', Line: 41, Column: 30 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14895' - String: ', threshold=' - Threshold: '919' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '19' - String: ':' - Column: '30' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/record.rs', Line: 41, Column: 30 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14425' - String: ', threshold=' - Threshold: '525' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '19' - String: ':' - Column: '30' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/record.rs', Line: 52, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14955' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '30' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/record.rs', Line: 53, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14950' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '31' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/record.rs', Line: 46, Column: 13 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1825, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '45' - String: ', threshold=' - Threshold: '525' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '24' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/record.rs', Line: 47, Column: 13 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14955' - String: ', threshold=' - Threshold: '525' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ':' - Line: '25' - String: ':' - Column: '13' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 103, Column: 18 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 218, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '150' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Missed Pass: inline-cost Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 897, Column: 5 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - Callee: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ' has uninlinable pattern (' - InlineResult: recursive - String: ') and cost is not fully computed' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 897, Column: 5 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: recursive ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 673, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join6record13load_relation17h254df26235556605E DebugLoc: { File: 'src/record.rs', Line: 22, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/record.rs', Line: 32, Column: 16 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: 'src/record.rs', Line: 32, Column: 16 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 32, Column: 16 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2618, Column: 63 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 921, Column: 13 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: 'src/record.rs', Line: 30, Column: 5 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 34, Column: 10 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 32, Column: 16 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<2 x i64>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 820, Column: 29 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 300, Column: 16 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2618, Column: 63 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2618, Column: 63 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 34, Column: 10 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 32, Column: 16 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<2 x i64>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 300, Column: 16 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 32, Column: 16 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join6record13load_relation17h254df26235556605E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr34drop_in_place$LT$anyhow..Error$GT$17h10d757e304a52fe5E' Args: - Callee: '_ZN6anyhow5error65_$LT$impl$u20$core..ops..drop..Drop$u20$for$u20$anyhow..Error$GT$4drop17h71fcb23f4c845bd8E' - String: ' will not be inlined into ' - Caller: '_ZN4core3ptr34drop_in_place$LT$anyhow..Error$GT$17h10d757e304a52fe5E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr34drop_in_place$LT$anyhow..Error$GT$17h10d757e304a52fe5E' Args: - Callee: '_ZN6anyhow5error65_$LT$impl$u20$core..ops..drop..Drop$u20$for$u20$anyhow..Error$GT$4drop17h71fcb23f4c845bd8E' - String: ' will not be inlined into ' - Caller: '_ZN4core3ptr34drop_in_place$LT$anyhow..Error$GT$17h10d757e304a52fe5E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 23 } Function: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17he10a8659ad3fe1e0E' Args: - Callee: _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E - String: ' will not be inlined into ' - Caller: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17he10a8659ad3fe1e0E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1071, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 23 } Function: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17he10a8659ad3fe1e0E' Args: - Callee: _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E - String: ' will not be inlined into ' - Caller: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17he10a8659ad3fe1e0E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1071, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 23 } Function: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h18ca03a85aba0075E' Args: - Callee: _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E - String: ' will not be inlined into ' - Caller: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h18ca03a85aba0075E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1071, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 23 } Function: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h18ca03a85aba0075E' Args: - Callee: _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E - String: ' will not be inlined into ' - Caller: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h18ca03a85aba0075E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1071, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 309, Column: 13 } Function: _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E Args: - Callee: _ZN4core9panicking9panic_fmt17hf3068e6facc908aeE - String: ' will not be inlined into ' - Caller: _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 307, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 309, Column: 13 } Function: _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E Args: - Callee: _ZN4core9panicking9panic_fmt17hf3068e6facc908aeE - String: ' will not be inlined into ' - Caller: _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 307, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 289, Column: 28 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE' - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14860' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' - String: ':' - Line: '5' - String: ':' - Column: '28' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 289, Column: 13 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' Args: - String: '''' - Callee: _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E - String: ''' inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14945' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' - String: ':' - Line: '5' - String: ':' - Column: '13' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' Args: - String: '''' - Callee: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 464, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 404, Column: 19 } ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$7reserve17hf64da458ceb63d5aE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$7reserve17hf64da458ceb63d5aE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 908, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '225' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr62drop_in_place$LT$alloc..vec..set_len_on_drop..SetLenOnDrop$GT$17hd59c871c2f90ceedE' Args: - String: '''' - Callee: '_ZN83_$LT$alloc..vec..set_len_on_drop..SetLenOnDrop$u20$as$u20$core..ops..drop..Drop$GT$4drop17h78fd822af5aef725E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr62drop_in_place$LT$alloc..vec..set_len_on_drop..SetLenOnDrop$GT$17hd59c871c2f90ceedE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr62drop_in_place$LT$alloc..vec..set_len_on_drop..SetLenOnDrop$GT$17hd59c871c2f90ceedE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: AlwaysInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2488, Column: 33 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' Args: - String: '''' - Callee: '_ZN4core5clone5impls52_$LT$impl$u20$core..clone..Clone$u20$for$u20$u16$GT$5clone17h40c7af84fd8aa0c2E' - String: ''' inlined into ''' - Caller: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2476, Column: 0 } - String: '''' - String: ': always inline attribute' - String: ' at callsite ' - String: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' - String: ':' - Line: '12' - String: ':' - Column: '33' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2477, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' Args: - String: '''' - Callee: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$7reserve17hf64da458ceb63d5aE' - String: ''' inlined into ''' - Caller: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2476, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14970' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 624, Column: 35 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' Args: - String: '''' - Callee: '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E' - String: ''' inlined into ''' - Caller: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2476, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE' - String: ':' - Line: '4' - String: ':' - Column: '35' - String: ' @ ' - String: '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E' - String: ':' - Line: '1' - String: ':' - Column: '14' - String: ' @ ' - String: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' - String: ':' - Line: '11' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2501, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' Args: - String: '''' - Callee: '_ZN4core3ptr62drop_in_place$LT$alloc..vec..set_len_on_drop..SetLenOnDrop$GT$17hd59c871c2f90ceedE' - String: ''' inlined into ''' - Caller: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2476, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' - String: ':' - Line: '25' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2476, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '225' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', Line: 24, Column: 12 } Function: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' Args: - String: '''' - Callee: '_ZN51_$LT$u16$u20$as$u20$alloc..vec..is_zero..IsZero$GT$7is_zero17h254871527c743e34E' - String: ''' inlined into ''' - Caller: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', Line: 23, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' - String: ':' - Line: '1' - String: ':' - Column: '12' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 130, Column: 9 } Function: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 168, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', Line: 23, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '210' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h65853ad3cb8b3fa9E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$16with_capacity_in17h2ded9530409c73c5E' - String: ':' - Line: '1' - String: ':' - Column: '20' - String: ' @ ' - String: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' - String: ':' - Line: '4' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', Line: 28, Column: 9 } Function: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' Args: - String: '''' - Callee: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE' - String: ''' inlined into ''' - Caller: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', Line: 23, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14900' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' - String: ':' - Line: '5' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 138, Column: 9 } Function: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E' - String: ''' inlined into ''' - Caller: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', Line: 23, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14795' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$23with_capacity_zeroed_in17hf1560f00c6a9f6c5E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' - String: ':' - Line: '2' - String: ':' - Column: '31' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 293, Column: 13 } Function: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 284, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', Line: 23, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '205' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 18, Column: 9 } Function: '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h7c8f55f4951b4da0E' Args: - String: '''' - Callee: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17hfcab42288d10a6a9E' - String: ''' inlined into ''' - Caller: '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h7c8f55f4951b4da0E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2674, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice5index74_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$5index17h6613f4a385e01365E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h7c8f55f4951b4da0E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 935, Column: 15 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$3get17h5b79f511bfd4ae85E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$3get17h5b79f511bfd4ae85E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 933, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14885' - String: ', threshold=' - Threshold: '569' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$3get17h5b79f511bfd4ae85E' - String: ':' - Line: '2' - String: ':' - Column: '15' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 988, Column: 20 } Function: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E' Args: - String: '''' - Callee: _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 938, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$9get_inner17h8bce3c7767b7b6dcE' - String: ':' - Line: '5' - String: ':' - Column: '20' - String: ' @ ' - String: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E' - String: ':' - Line: '6' - String: ':' - Column: '20' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 989, Column: 9 } Function: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$3get17h5b79f511bfd4ae85E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 938, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14895' - String: ', threshold=' - Threshold: '569' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$9get_inner17h8bce3c7767b7b6dcE' - String: ':' - Line: '6' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E' - String: ':' - Line: '6' - String: ':' - Column: '20' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 549, Column: 9 } Function: _ZN4core4iter8adapters3zip27TrustedRandomAccessNoCoerce4size17hd9aff81dc2115762E Args: - String: '''' - Callee: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$9size_hint17h5344156502bbd702E' - String: ''' inlined into ''' - Caller: _ZN4core4iter8adapters3zip27TrustedRandomAccessNoCoerce4size17hd9aff81dc2115762E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 545, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core4iter8adapters3zip27TrustedRandomAccessNoCoerce4size17hd9aff81dc2115762E - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 263, Column: 21 } Function: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$3new17hbe1509098f47047eE' Args: - String: '''' - Callee: _ZN4core4iter8adapters3zip27TrustedRandomAccessNoCoerce4size17hd9aff81dc2115762E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 545, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$3new17hbe1509098f47047eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 262, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$3new17hbe1509098f47047eE' - String: ':' - Line: '1' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 264, Column: 35 } Function: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$3new17hbe1509098f47047eE' Args: - String: '''' - Callee: _ZN4core4iter8adapters3zip27TrustedRandomAccessNoCoerce4size17hd9aff81dc2115762E - String: ''' inlined into ''' - Caller: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$3new17hbe1509098f47047eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 262, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$3new17hbe1509098f47047eE' - String: ':' - Line: '2' - String: ':' - Column: '35' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 814, Column: 9 } Function: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$3new17hbe1509098f47047eE' Args: - String: '''' - Callee: _ZN4core3cmp6min_by17hd4f33f4a265e89c9E - String: ''' inlined into ''' - Caller: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$3new17hbe1509098f47047eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 262, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3min17h6955f9dd2679a295E - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core3cmp3min17h3b66dd7ee6e4c354E - String: ':' - Line: '1' - String: ':' - Column: '8' - String: ' @ ' - String: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$3new17hbe1509098f47047eE' - String: ':' - Line: '2' - String: ':' - Column: '19' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 643, Column: 24 } Function: _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE Args: - String: '''' - Callee: '_ZN4core5slice4iter87_$LT$impl$u20$core..iter..traits..collect..IntoIterator$u20$for$u20$$RF$$u5b$T$u5d$$GT$9into_iter17h1a7b40a1148a0daaE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter.rs', Line: 25, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 638, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-30' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE - String: ':' - Line: '5' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 23, Column: 9 } Function: _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE Args: - String: '''' - Callee: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$3new17hbe1509098f47047eE' - String: ''' inlined into ''' - Caller: _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 638, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN4core4iter8adapters3zip16Zip$LT$A$C$B$GT$3new17h6c67f02fef12bf9fE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE - String: ':' - Line: '5' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 277, Column: 23 } Function: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$4next17h2e0336b4b578b1d2E' Args: - String: '''' - Callee: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$24__iterator_get_unchecked17h23c52010207f1128E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 372, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$4next17h2e0336b4b578b1d2E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 269, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-40' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$4next17h2e0336b4b578b1d2E' - String: ':' - Line: '8' - String: ':' - Column: '23' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 277, Column: 59 } Function: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$4next17h2e0336b4b578b1d2E' Args: - String: '''' - Callee: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$24__iterator_get_unchecked17h23c52010207f1128E' - String: ''' inlined into ''' - Caller: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$4next17h2e0336b4b578b1d2E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 269, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$4next17h2e0336b4b578b1d2E' - String: ':' - Line: '8' - String: ':' - Column: '59' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 84, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hfa1e56bb0f626777E' Args: - String: '''' - Callee: '_ZN111_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..adapters..zip..ZipImpl$LT$A$C$B$GT$$GT$4next17h2e0336b4b578b1d2E' - String: ''' inlined into ''' - Caller: '_ZN102_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hfa1e56bb0f626777E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 83, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14985' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN102_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hfa1e56bb0f626777E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', Line: 84, Column: 28 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE' Args: - String: '''' - Callee: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$28_$u7b$$u7b$closure$u7d$$u7d$17h6ca9fa961b787aacE' - String: ''' inlined into ''' - Caller: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', Line: 84, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14985' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE' - String: ':' - Line: '0' - String: ':' - Column: '28' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', Line: 84, Column: 21 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE' Args: - String: '''' - Callee: '_ZN54_$LT$u64$u20$as$u20$core..iter..traits..accum..Sum$GT$3sum28_$u7b$$u7b$closure$u7d$$u7d$17hb8a27f1045bed0d9E' - String: ''' inlined into ''' - Caller: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', Line: 84, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE' - String: ':' - Line: '0' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2480, Column: 29 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: '''' - Callee: '_ZN102_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hfa1e56bb0f626777E' - String: ''' inlined into ''' - Caller: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2474, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14985' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E - String: ':' - Line: '6' - String: ':' - Column: '29' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: '''' - Callee: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE' - String: ''' inlined into ''' - Caller: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2474, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14985' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E - String: ':' - Line: '7' - String: ':' - Column: '21' - String: ';' ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 12 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 12 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 12 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 25 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 25 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 25 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 25 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 277, Column: 23 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: 'src/main.rs', Line: 120, Column: 55 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: 'src/main.rs', Line: 122, Column: 30 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Passed Pass: licm Name: PromoteLoopAccessesToScalar DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 274, Column: 13 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: Moving accesses to memory location out of the loop ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 277, Column: 23 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 277, Column: 23 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 277, Column: 59 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 277, Column: 59 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 277, Column: 59 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 277, Column: 59 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/main.rs', Line: 120, Column: 55 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: 'src/main.rs', Line: 120, Column: 55 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/main.rs', Line: 120, Column: 55 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: 'hoisting ' - Inst: trunc DebugLoc: { File: 'src/main.rs', Line: 120, Column: 55 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/main.rs', Line: 122, Column: 30 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: 'src/main.rs', Line: 122, Column: 30 } ... --- !Passed Pass: licm Name: PromoteLoopAccessesToScalar DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 274, Column: 13 } Function: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E Args: - String: Moving accesses to memory location out of the loop ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', Line: 124, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h825b9950abc1e838E' Args: - String: '''' - Callee: _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E - String: ''' inlined into ''' - Caller: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h825b9950abc1e838E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', Line: 120, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14960' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h825b9950abc1e838E' - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 494, Column: 38 } Function: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17hc6b9d8d38f1fa913E' - String: ''' inlined into ''' - Caller: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 493, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E' - String: ':' - Line: '1' - String: ':' - Column: '38' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 495, Column: 22 } Function: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 250, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 493, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '0' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E' - String: ':' - Line: '2' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u16$GT$$GT$17h093bb07298e3619fE' Args: - String: '''' - Callee: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u16$GT$$GT$17h093bb07298e3619fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u16$GT$$GT$17h093bb07298e3619fE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E' Args: - String: '''' - Callee: '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h8539f7eab489f3a4E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E' Args: - String: '''' - Callee: '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u16$GT$$GT$17h093bb07298e3619fE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 4141, Column: 38 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point28_$u7b$$u7b$closure$u7d$$u7d$17h7f490543ddccd1deE' Args: - String: '''' - Callee: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$28_$u7b$$u7b$closure$u7d$$u7d$17h0080217968fa1ff2E' - String: ''' inlined into ''' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point28_$u7b$$u7b$closure$u7d$$u7d$17h7f490543ddccd1deE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 4141, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point28_$u7b$$u7b$closure$u7d$$u7d$17h7f490543ddccd1deE' - String: ':' - Line: '0' - String: ':' - Column: '38' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 2787, Column: 23 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E' Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point28_$u7b$$u7b$closure$u7d$$u7d$17h7f490543ddccd1deE' - String: ''' inlined into ''' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 2769, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15020' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E' - String: ':' - Line: '18' - String: ':' - Column: '23' - String: ';' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressCondExecuted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 4141, Column: 38 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E' Args: - String: failed to hoist load with loop-invariant address because load is conditionally executed ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 4141, Column: 38 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E' Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 4141, Column: 38 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/main.rs', Line: 33, Column: 80 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E' Args: - String: 'hoisting ' - Inst: load DebugLoc: { File: 'src/main.rs', Line: 33, Column: 80 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/main.rs', Line: 33, Column: 80 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E' Args: - String: 'hoisting ' - Inst: trunc DebugLoc: { File: 'src/main.rs', Line: 33, Column: 80 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 4141, Column: 9 } Function: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point17h38ae2f01f410bca7E' Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E' - String: ''' inlined into ''' - Caller: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point17h38ae2f01f410bca7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 4137, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14975' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point17h38ae2f01f410bca7E' - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 497, Column: 13 } Function: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h19529fe6016375d7E' Args: - Callee: _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE - String: ' will not be inlined into ' - Caller: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h19529fe6016375d7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 495, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 497, Column: 13 } Function: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h19529fe6016375d7E' Args: - Callee: _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE - String: ' will not be inlined into ' - Caller: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h19529fe6016375d7E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 495, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 18, Column: 9 } Function: '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h445919385991af25E' Args: - String: '''' - Callee: '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h19529fe6016375d7E' - String: ''' inlined into ''' - Caller: '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h445919385991af25E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2674, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14975' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core5slice5index74_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$5index17h7a5bcf47c04e99e1E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h445919385991af25E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 497, Column: 13 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - Callee: _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE - String: ' will not be inlined into ' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/option.rs', Line: 898, Column: 21 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - Callee: _ZN4core6option13expect_failed17h0646ff7561f3f4b3E - String: ' will not be inlined into ' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 497, Column: 13 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - Callee: _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE - String: ' will not be inlined into ' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/option.rs', Line: 898, Column: 21 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - Callee: _ZN4core6option13expect_failed17h0646ff7561f3f4b3E - String: ' will not be inlined into ' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2535, Column: 5 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E' - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14810' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN5alloc3vec9from_elem17h272b13c46cd7d66aE - String: ':' - Line: '1' - String: ':' - Column: '5' - String: ' @ ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '22' - String: ':' - Column: '36' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 31, Column: 26 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: '_ZN94_$LT$$RF$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..collect..IntoIterator$GT$9into_iter17h04a8c941a7d519c3E' - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '6' - String: ':' - Column: '26' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 31, Column: 26 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h4b6802111f20d06bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 156, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-25' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '6' - String: ':' - Column: '26' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 116, Column: 26 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h7c8f55f4951b4da0E' - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '91' - String: ':' - Column: '26' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 116, Column: 13 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: '_ZN4core5slice4iter87_$LT$impl$u20$core..iter..traits..collect..IntoIterator$u20$for$u20$$RF$$u5b$T$u5d$$GT$9into_iter17h1a7b40a1148a0daaE' - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '91' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E' - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14880' - String: ', threshold=' - Threshold: '569' - String: ')' - String: ' at callsite ' - String: '_ZN101_$LT$hashbrown..map..HashMap$LT$K$C$V$C$S$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$$RF$Q$GT$$GT$5index17ha13272bdefe93ab9E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '7' - String: ':' - Column: '57' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 116, Column: 13 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '91' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/accum.rs', Line: 149, Column: 1 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h825b9950abc1e838E' - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14950' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN54_$LT$u64$u20$as$u20$core..iter..traits..accum..Sum$GT$3sum17h2eb8818e88a6f150E' - String: ':' - Line: '100' - String: ':' - Column: '1' - String: ' @ ' - String: _ZN4core4iter6traits8iterator8Iterator3sum17he8161fb7a11e4cc1E - String: ':' - Line: '5' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '103' - String: ':' - Column: '18' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 129, Column: 9 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '5' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '104' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 33, Column: 35 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point17h38ae2f01f410bca7E' - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14985' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '8' - String: ':' - Column: '35' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 451, Column: 9 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: '_ZN4core4iter8adapters7step_by15StepBy$LT$I$GT$3new17h2ebf892157bf24f1E' - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15020' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core4iter6traits8iterator8Iterator7step_by17hf5d75d8f5c9fdec8E - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '21' - String: ':' - Column: '79' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h445919385991af25E' - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14975' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '50' - String: ':' - Column: '57' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 75, Column: 38 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: '_ZN4core5slice4iter87_$LT$impl$u20$core..iter..traits..collect..IntoIterator$u20$for$u20$$RF$$u5b$T$u5d$$GT$9into_iter17hed4131322fff98a2E' - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '50' - String: ':' - Column: '38' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 75, Column: 38 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: '''' - Callee: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h4b6802111f20d06bE' - String: ''' inlined into ''' - Caller: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' DebugLoc: { File: 'src/main.rs', Line: 25, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15025' - String: ', threshold=' - Threshold: '525' - String: ')' - String: ' at callsite ' - String: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ':' - Line: '50' - String: ':' - Column: '38' - String: ';' ... --- !Passed Pass: licm Name: InstSunk DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', Line: 561, Column: 1 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'sinking ' - Inst: select DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', Line: 561, Column: 1 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'hoisting ' - Inst: icmp ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'hoisting ' - Inst: call ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'hoisting ' - Inst: icmp ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'hoisting ' - Inst: call ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'hoisting ' - Inst: trunc ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'hoisting ' - Inst: icmp ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'hoisting ' - Inst: icmp ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Passed Pass: gvn Name: LoadElim Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: 'src/main.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', Line: 84, Column: 28 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: '''' - Callee: '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E' - String: ''' inlined into ''' - Caller: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', Line: 84, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-13845' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' - String: ':' - Line: '0' - String: ':' - Column: '28' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', Line: 84, Column: 21 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: '''' - Callee: '_ZN54_$LT$u64$u20$as$u20$core..iter..traits..accum..Sum$GT$3sum28_$u7b$$u7b$closure$u7d$$u7d$17h80e9880b2a4a32bdE' - String: ''' inlined into ''' - Caller: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', Line: 84, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' - String: ':' - Line: '0' - String: ':' - Column: '21' - String: ';' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 27 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: '''' - Callee: '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE' - String: ''' inlined into ''' - Caller: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 106, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-13860' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' - String: ':' - Line: '1' - String: ':' - Column: '27' - String: ';' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 108, Column: 17 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 38 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 108, Column: 17 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 38 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 108, Column: 17 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 38 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 108, Column: 17 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 38 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 232, Column: 27 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: '''' - Callee: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold9enumerate28_$u7b$$u7b$closure$u7d$$u7d$17h6264a6a7d853454bE' - String: ''' inlined into ''' - Caller: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 212, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-13835' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' - String: ':' - Line: '20' - String: ':' - Column: '27' - String: ';' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 38 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 38 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 38 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 108, Column: 17 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 38 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 108, Column: 17 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 229, Column: 17 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 48, Column: 22 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 38 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 108, Column: 17 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 38 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 108, Column: 17 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 38 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 108, Column: 17 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 38 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 108, Column: 17 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 107, Column: 38 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 32, Column: 43 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 27, Column: 42 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 119, Column: 22 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 108, Column: 17 } Function: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 113, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: '''' - Callee: '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E' - String: ''' inlined into ''' - Caller: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 96, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-13820' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' - String: ':' - Line: '17' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'hoisting ' - Inst: icmp ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'hoisting ' - Inst: call ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'hoisting ' - Inst: icmp ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'hoisting ' - Inst: icmp ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 229, Column: 17 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 48, Column: 22 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated Function: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', Line: 124, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: '''' - Callee: '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E' - String: ''' inlined into ''' - Caller: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', Line: 120, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-13820' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 229, Column: 17 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 48, Column: 22 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: float - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated Function: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 494, Column: 38 } Function: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17h6e62f964d2d11881E' - String: ''' inlined into ''' - Caller: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 493, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E' - String: ':' - Line: '1' - String: ':' - Column: '38' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 495, Column: 22 } Function: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 250, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 493, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '0' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E' - String: ':' - Line: '2' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u32$GT$$GT$17he1b189960886f975E' Args: - String: '''' - Callee: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u32$GT$$GT$17he1b189960886f975E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u32$GT$$GT$17he1b189960886f975E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E' Args: - String: '''' - Callee: '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9d554f3713eaa1d4E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E' Args: - String: '''' - Callee: '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u32$GT$$GT$17he1b189960886f975E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr61drop_in_place$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$17h54c9f96dbfa2aeefE' Args: - String: '''' - Callee: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core3ptr61drop_in_place$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$17h54c9f96dbfa2aeefE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '5' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr61drop_in_place$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$17h54c9f96dbfa2aeefE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 597, Column: 25 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 595, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15005' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' - String: ':' - Line: '2' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1997, Column: 26 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' Args: - String: '''' - Callee: '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 595, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14960' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN91_$LT$hashbrown..raw..RawIter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h3905473dea73cc44E' - String: ':' - Line: '1' - String: ':' - Column: '26' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' - String: ':' - Line: '2' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 1433, Column: 18 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' Args: - String: '''' - Callee: '_ZN4core3ptr61drop_in_place$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$17h54c9f96dbfa2aeefE' - String: ''' inlined into ''' - Caller: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 595, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr7mut_ptr31_$LT$impl$u20$$BP$mut$u20$T$GT$13drop_in_place17hde1734e1f383b20eE' - String: ':' - Line: '2' - String: ':' - Column: '18' - String: ' @ ' - String: '_ZN9hashbrown3raw15Bucket$LT$T$GT$4drop17haa620959c1757898E' - String: ':' - Line: '1' - String: ':' - Column: '23' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' - String: ':' - Line: '3' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: licm Name: InstSunk DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', Line: 25, Column: 17 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' Args: - String: 'sinking ' - Inst: xor DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', Line: 25, Column: 17 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 597, Column: 13 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1677, Column: 17 } Function: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E' - String: ''' inlined into ''' - Caller: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1674, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14860' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' - String: ':' - Line: '3' - String: ':' - Column: '17' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 794, Column: 9 } Function: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' Args: - String: '''' - Callee: _ZN4core3cmp6max_by17h709db21befafa9e3E - String: ''' inlined into ''' - Caller: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1674, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '487' - String: ')' - String: ' at callsite ' - String: _ZN4core3cmp3Ord3max17h10dab41b1209b26bE - String: ':' - Line: '4' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN9hashbrown3raw11TableLayout3new17h740adb3f94ec47e3E - String: ':' - Line: '4' - String: ':' - Column: '25' - String: ' @ ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$12free_buckets17h80e94a8bb1563e3eE' - String: ':' - Line: '1' - String: ':' - Column: '33' - String: ' @ ' - String: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' - String: ':' - Line: '4' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 498, Column: 9 } Function: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' Args: - String: '''' - Callee: '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E' - String: ''' inlined into ''' - Caller: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1674, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14965' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$12free_buckets17h80e94a8bb1563e3eE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' - String: ':' - Line: '4' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 597, Column: 13 } Function: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 498, Column: 9 } Function: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' Args: - String: load eliminated by PRE ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 498, Column: 9 } Function: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1382, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE' Args: - String: '''' - Callee: '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14795' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 597, Column: 13 } Function: '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr141drop_in_place$LT$hashbrown..map..HashMap$LT$u32$C$alloc..vec..Vec$LT$u32$GT$$C$core..hash..BuildHasherDefault$LT$fxhash..FxHasher$GT$$GT$$GT$17h0b10d14cfa4b9e07E' Args: - String: '''' - Callee: '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr141drop_in_place$LT$hashbrown..map..HashMap$LT$u32$C$alloc..vec..Vec$LT$u32$GT$$C$core..hash..BuildHasherDefault$LT$fxhash..FxHasher$GT$$GT$$GT$17h0b10d14cfa4b9e07E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14795' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr141drop_in_place$LT$hashbrown..map..HashMap$LT$u32$C$alloc..vec..Vec$LT$u32$GT$$C$core..hash..BuildHasherDefault$LT$fxhash..FxHasher$GT$$GT$$GT$17h0b10d14cfa4b9e07E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 597, Column: 13 } Function: '_ZN4core3ptr141drop_in_place$LT$hashbrown..map..HashMap$LT$u32$C$alloc..vec..Vec$LT$u32$GT$$C$core..hash..BuildHasherDefault$LT$fxhash..FxHasher$GT$$GT$$GT$17h0b10d14cfa4b9e07E' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN4core3ptr141drop_in_place$LT$hashbrown..map..HashMap$LT$u32$C$alloc..vec..Vec$LT$u32$GT$$C$core..hash..BuildHasherDefault$LT$fxhash..FxHasher$GT$$GT$$GT$17h0b10d14cfa4b9e07E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN4core3ptr141drop_in_place$LT$hashbrown..map..HashMap$LT$u32$C$alloc..vec..Vec$LT$u32$GT$$C$core..hash..BuildHasherDefault$LT$fxhash..FxHasher$GT$$GT$$GT$17h0b10d14cfa4b9e07E' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr57drop_in_place$LT$$u5b$alloc..vec..Vec$LT$u32$GT$$u5d$$GT$17h1582285934047aa5E' Args: - String: '''' - Callee: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr57drop_in_place$LT$$u5b$alloc..vec..Vec$LT$u32$GT$$u5d$$GT$17h1582285934047aa5E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr57drop_in_place$LT$$u5b$alloc..vec..Vec$LT$u32$GT$$u5d$$GT$17h1582285934047aa5E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 240, Column: 12 } Function: '_ZN4core3ptr57drop_in_place$LT$$u5b$alloc..vec..Vec$LT$u32$GT$$u5d$$GT$17h1582285934047aa5E' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 3013, Column: 13 } Function: '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hcf34e6a5bc1110f5E' Args: - String: '''' - Callee: '_ZN4core3ptr57drop_in_place$LT$$u5b$alloc..vec..Vec$LT$u32$GT$$u5d$$GT$17h1582285934047aa5E' - String: ''' inlined into ''' - Caller: '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hcf34e6a5bc1110f5E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 3008, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14955' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hcf34e6a5bc1110f5E' - String: ':' - Line: '5' - String: ':' - Column: '13' - String: ';' ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 240, Column: 12 } Function: '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hcf34e6a5bc1110f5E' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 494, Column: 38 } Function: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E' Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17hf3cebb45b0cbef90E' - String: ''' inlined into ''' - Caller: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 493, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15030' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E' - String: ':' - Line: '1' - String: ':' - Column: '38' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 495, Column: 22 } Function: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E' Args: - String: '''' - Callee: '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE' - String: ''' inlined into ''' - Caller: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 493, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15000' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E' - String: ':' - Line: '2' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr77drop_in_place$LT$alloc..raw_vec..RawVec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hf5c78fbe8006561eE' Args: - String: '''' - Callee: '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr77drop_in_place$LT$alloc..raw_vec..RawVec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hf5c78fbe8006561eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr77drop_in_place$LT$alloc..raw_vec..RawVec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hf5c78fbe8006561eE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE' Args: - String: '''' - Callee: '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hcf34e6a5bc1110f5E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14955' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE' Args: - String: '''' - Callee: '_ZN4core3ptr77drop_in_place$LT$alloc..raw_vec..RawVec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hf5c78fbe8006561eE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 240, Column: 12 } Function: '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' Args: - String: '''' - Callee: '_ZN4core3ptr141drop_in_place$LT$hashbrown..map..HashMap$LT$u32$C$alloc..vec..Vec$LT$u32$GT$$C$core..hash..BuildHasherDefault$LT$fxhash..FxHasher$GT$$GT$$GT$17h0b10d14cfa4b9e07E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14795' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' Args: - String: '''' - Callee: '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14890' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' Args: - String: '''' - Callee: '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E' - String: ''' inlined into ''' - Caller: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 597, Column: 13 } Function: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 240, Column: 12 } Function: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/accum.rs', Line: 149, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: '''' - Callee: '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE' - String: ''' inlined into ''' - Caller: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E DebugLoc: { File: 'src/main.rs', Line: 17, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-13815' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN54_$LT$u64$u20$as$u20$core..iter..traits..accum..Sum$GT$3sum17h9b765828d3fdf962E' - String: ':' - Line: '100' - String: ':' - Column: '1' - String: ' @ ' - String: _ZN4core4iter6traits8iterator8Iterator3sum17h17c609e0298f2fb2E - String: ':' - Line: '5' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E - String: ':' - Line: '113' - String: ':' - Column: '10' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 131, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: '''' - Callee: '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE' - String: ''' inlined into ''' - Caller: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E DebugLoc: { File: 'src/main.rs', Line: 17, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14595' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E - String: ':' - Line: '114' - String: ':' - Column: '1' - String: ';' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 118, Column: 23 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 229, Column: 17 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 48, Column: 22 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 597, Column: 13 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 240, Column: 12 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1382, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1382, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1021, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1021, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 498, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 498, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1382, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1382, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1021, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1021, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 498, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 498, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17hd75554de6c06dea4E' Args: - String: '''' - Callee: '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17hd75554de6c06dea4E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '95' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17hd75554de6c06dea4E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', Line: 1738, Column: 14 } Function: _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE Args: - Callee: _ZN4core9panicking9panic_fmt17hf3068e6facc908aeE - String: ' will not be inlined into ' - Caller: _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', Line: 1717, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', Line: 1738, Column: 14 } Function: _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE Args: - Callee: _ZN4core9panicking9panic_fmt17hf3068e6facc908aeE - String: ' will not be inlined into ' - Caller: _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', Line: 1717, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', Line: 1738, Column: 14 } Function: _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE Args: - String: '''' - Callee: _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 307, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', Line: 1717, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '20' - String: ', threshold=' - Threshold: '0' - String: ')' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', Line: 463, Column: 9 } Function: _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE Args: - String: '''' - Callee: '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h2583b64bd1eccc39E' - String: ''' inlined into ''' - Caller: _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', Line: 1717, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14990' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN108_$LT$core..ops..range..RangeTo$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h6792fcbda7961c72E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h335d4021eba981ccE' - String: ':' - Line: '1' - String: ':' - Column: '15' - String: ' @ ' - String: _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE - String: ':' - Line: '28' - String: ':' - Column: '13' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1703, Column: 23 } Function: '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E' Args: - Callee: '_ZN61_$LT$std..io..stdio..StdoutLock$u20$as$u20$std..io..Write$GT$9write_all17he93f54dd5d409866E' - String: ' will not be inlined into ' - Caller: '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1702, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1703, Column: 23 } Function: '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E' Args: - Callee: '_ZN61_$LT$std..io..stdio..StdoutLock$u20$as$u20$std..io..Write$GT$9write_all17he93f54dd5d409866E' - String: ' will not be inlined into ' - Caller: '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1702, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1706, Column: 25 } Function: '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E' Args: - String: '''' - Callee: '_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17hd75554de6c06dea4E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1702, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '100' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E' - String: ':' - Line: '4' - String: ':' - Column: '25' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', Line: 633, Column: 42 } Function: _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE Args: - String: '''' - Callee: _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE - String: ''' inlined into ''' - Caller: _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 163, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14845' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: '_ZN4core4char7methods22_$LT$impl$u20$char$GT$11encode_utf817hd4a0e19551c81989E' - String: ':' - Line: '2' - String: ':' - Column: '42' - String: ' @ ' - String: _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE - String: ':' - Line: '1' - String: ':' - Column: '26' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 164, Column: 9 } Function: _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE Args: - String: '''' - Callee: '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1702, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 163, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '160' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 203, Column: 9 } Function: '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$10write_char17h2c72e1cd5ebe338bE' Args: - String: '''' - Callee: _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 163, Column: 0 } - String: ''' not inlined into ''' - Caller: '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$10write_char17h2c72e1cd5ebe338bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 202, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '365' - String: ', threshold=' - Threshold: '250' - String: ')' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 199, Column: 9 } Function: '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$9write_str17h557c47b44ec0bae9E' Args: - String: '''' - Callee: '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1702, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$9write_str17h557c47b44ec0bae9E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 198, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '160' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$9write_str17h557c47b44ec0bae9E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 192, Column: 9 } Function: _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E Args: - Callee: _ZN4core3fmt5write17heba65d7649896adbE - String: ' will not be inlined into ' - Caller: _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 191, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 192, Column: 9 } Function: _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E Args: - Callee: _ZN4core3fmt5write17heba65d7649896adbE - String: ' will not be inlined into ' - Caller: _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 191, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 207, Column: 9 } Function: '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$9write_fmt17h7fc38c6cafccd0a3E' Args: - String: '''' - Callee: _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 191, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$9write_fmt17h7fc38c6cafccd0a3E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 206, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '15' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$9write_fmt17h7fc38c6cafccd0a3E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 192, Column: 9 } Function: _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E Args: - Callee: _ZN4core3fmt5write17heba65d7649896adbE - String: ' will not be inlined into ' - Caller: _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 191, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 192, Column: 9 } Function: _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E Args: - Callee: _ZN4core3fmt5write17heba65d7649896adbE - String: ' will not be inlined into ' - Caller: _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 191, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: '_ZN4core3ptr89drop_in_place$LT$std..io..Write..write_fmt..Adapter$LT$std..io..stdio..StdoutLock$GT$$GT$17h4bec449389b40dd8E' Args: - String: '''' - Callee: '_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17hd75554de6c06dea4E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: ''' inlined into ''' - Caller: '_ZN4core3ptr89drop_in_place$LT$std..io..Write..write_fmt..Adapter$LT$std..io..stdio..StdoutLock$GT$$GT$17h4bec449389b40dd8E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '100' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN4core3ptr89drop_in_place$LT$std..io..Write..write_fmt..Adapter$LT$std..io..stdio..StdoutLock$GT$$GT$17h4bec449389b40dd8E' - String: ':' - Line: '0' - String: ':' - Column: '1' - String: ';' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } Function: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E Args: - Callee: _ZN4core3fmt5write17heba65d7649896adbE - String: ' will not be inlined into ' - Caller: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1693, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } Function: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E Args: - Callee: _ZN4core3fmt5write17heba65d7649896adbE - String: ' will not be inlined into ' - Caller: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1693, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1725, Column: 5 } Function: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E Args: - String: '''' - Callee: '_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17hd75554de6c06dea4E' - String: ''' inlined into ''' - Caller: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1693, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14900' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E - String: ':' - Line: '32' - String: ':' - Column: '5' - String: ';' ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 539, Column: 18 } Function: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1713, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1725, Column: 5 } Function: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1713, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1725, Column: 5 } Function: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1725, Column: 5 } Function: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1713, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 142, Column: 17 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std2io5stdio5stdin17h995b0e8d735359f6E - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 143, Column: 17 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std2io5stdio5Stdin4lock17hf95e06cbedaff7afE - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 147, Column: 18 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std2io5stdio6stdout17h5984a4f21c459b04E - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 148, Column: 22 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std2io5stdio6Stdout4lock17h2a3d726881475cecE - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: '_ZN61_$LT$std..io..stdio..StdoutLock$u20$as$u20$std..io..Write$GT$5flush17ha5612cedfec32950E' - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 160, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: '_ZN4core3num7dec2flt60_$LT$impl$u20$core..str..traits..FromStr$u20$for$u20$f32$GT$8from_str17hcbf54fa69594bcc8E' - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std4time10SystemTime3now17h8870b0e32eac639dE - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std4time10SystemTime7elapsed17h5728fe486c12e534E - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std2io5stdio7_eprint17h4300be9c055caca2E - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 142, Column: 17 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std2io5stdio5stdin17h995b0e8d735359f6E - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 143, Column: 17 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std2io5stdio5Stdin4lock17hf95e06cbedaff7afE - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 147, Column: 18 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std2io5stdio6stdout17h5984a4f21c459b04E - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 148, Column: 22 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std2io5stdio6Stdout4lock17h2a3d726881475cecE - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: '_ZN61_$LT$std..io..stdio..StdoutLock$u20$as$u20$std..io..Write$GT$5flush17ha5612cedfec32950E' - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 160, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: '_ZN4core3num7dec2flt60_$LT$impl$u20$core..str..traits..FromStr$u20$for$u20$f32$GT$8from_str17hcbf54fa69594bcc8E' - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std4time10SystemTime3now17h8870b0e32eac639dE - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std4time10SystemTime7elapsed17h5728fe486c12e534E - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Missed Pass: inline Name: NoDefinition DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN3std2io5stdio7_eprint17h4300be9c055caca2E - String: ' will not be inlined into ' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ' because its definition is unavailable' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 73, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE' - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14865' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$3new17h6ee6826a50792bdaE' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '11' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 130, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE' - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14855' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h3e40c755a2fa20a3E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: '_ZN5alloc3vec16Vec$LT$T$C$A$GT$16with_capacity_in17hcf4a35bc3444630bE' - String: ':' - Line: '1' - String: ':' - Column: '20' - String: ' @ ' - String: '_ZN5alloc3vec12Vec$LT$T$GT$13with_capacity17h8cc411c24fe4f2f8E' - String: ':' - Line: '1' - String: ':' - Column: '9' - String: ' @ ' - String: _ZN5alloc6string6String13with_capacity17h2ce9c1443a5d696bE - String: ':' - Line: '1' - String: ':' - Column: '23' - String: ' @ ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '12' - String: ':' - Column: '20' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 335, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '965' - String: ', threshold=' - Threshold: '250' - String: ')' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 152, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN88_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$similarity_join..util..ForceUnwrap$GT$12unwrap_force17hcf5a18c71d2a474bE' DebugLoc: { File: 'src/util.rs', Line: 31, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-40' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '19' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17hc2025190665822f2E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14960' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '38' - String: ':' - Column: '5' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN4core3ptr47drop_in_place$LT$std..io..stdio..StdoutLock$GT$17h3084d735c2d0a482E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14955' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '39' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h8706786611654137E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14995' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '39' - String: ':' - Column: '1' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE' - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14870' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '39' - String: ':' - Column: '1' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 335, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '965' - String: ', threshold=' - Threshold: '250' - String: ')' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 158, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN88_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$similarity_join..util..ForceUnwrap$GT$12unwrap_force17hcf5a18c71d2a474bE' DebugLoc: { File: 'src/util.rs', Line: 31, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-40' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '25' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', Line: 1830, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', Line: 2020, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '680' - String: ', threshold=' - Threshold: '250' - String: ')' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 335, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '965' - String: ', threshold=' - Threshold: '250' - String: ')' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 163, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN88_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$similarity_join..util..ForceUnwrap$GT$12unwrap_force17hcf5a18c71d2a474bE' - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15040' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '30' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', Line: 1830, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', Line: 2020, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '680' - String: ', threshold=' - Threshold: '250' - String: ')' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 165, Column: 50 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: _ZN15similarity_join6record13load_relation17h254df26235556605E - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-12205' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '32' - String: ':' - Column: '50' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 165, Column: 50 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17he10a8659ad3fe1e0E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14960' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '32' - String: ':' - Column: '50' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h18ca03a85aba0075E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14945' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '32' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 307, Column: 0 } - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '20' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '32' - String: ':' - Column: '24' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 166, Column: 22 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-13460' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '33' - String: ':' - Column: '22' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 167, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14980' - String: ', threshold=' - Threshold: '325' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '34' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 167, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-14825' - String: ', threshold=' - Threshold: '250' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '34' - String: ':' - Column: '9' - String: ';' ... --- !Passed Pass: inline Name: Inlined DebugLoc: { File: 'src/main.rs', Line: 167, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN88_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$similarity_join..util..ForceUnwrap$GT$12unwrap_force17h665fc82143a86681E' - String: ''' inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: '''' - String: ' with ' - String: '(cost=' - Cost: '-15035' - String: ', threshold=' - Threshold: '375' - String: ')' - String: ' at callsite ' - String: _ZN15similarity_join4main17h3b296722dbf1bad4E - String: ':' - Line: '34' - String: ':' - Column: '9' - String: ';' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 301, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 673, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: noinline function attribute ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 217, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '680' - String: ', threshold=' - Threshold: '525' - String: ')' ... --- !Missed Pass: inline-cost Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 897, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - Callee: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ' has uninlinable pattern (' - InlineResult: recursive - String: ') and cost is not fully computed' ... --- !Missed Pass: inline Name: NeverInline DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 897, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 797, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because it should never be inlined ' - String: '(cost=never)' - String: ': ' - Reason: recursive ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', Line: 217, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '680' - String: ', threshold=' - Threshold: '525' - String: ')' ... --- !Missed Pass: inline Name: TooCostly DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 103, Column: 18 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: '''' - Callee: '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE' DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', Line: 218, Column: 0 } - String: ''' not inlined into ''' - Caller: _ZN15similarity_join4main17h3b296722dbf1bad4E DebugLoc: { File: 'src/main.rs', Line: 133, Column: 0 } - String: ''' because too costly to inline ' - String: '(cost=' - Cost: '150' - String: ', threshold=' - Threshold: '45' - String: ')' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 32, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 32, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 152, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 158, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 163, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1075, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 152, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 158, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 163, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/record.rs', Line: 34, Column: 10 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: 'src/record.rs', Line: 34, Column: 10 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 34, Column: 10 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1075, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: 'src/main.rs', Line: 167, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: 'src/main.rs', Line: 167, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', Line: 311, Column: 9 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1713, Column: 26 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: getelementptr DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1713, Column: 26 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1725, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 921, Column: 13 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: 'src/record.rs', Line: 30, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 170, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 48, Column: 22 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 597, Column: 13 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 240, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: 'src/main.rs', Line: 150, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 152, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 158, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2034, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 163, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2034, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 34, Column: 10 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Passed Pass: gvn Name: LoadElim DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' eliminated' - String: ' in favor of ' - InfavorOfValue: phi ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1075, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 17 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 17 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 232, Column: 27 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1725, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1713, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 32, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<2 x i64>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Passed Pass: gvn Name: LoadPRE DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: load eliminated by PRE ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 148, Column: 22 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 152, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 158, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2034, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 163, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2034, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 34, Column: 10 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1075, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 17 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 17 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 232, Column: 27 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1725, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1713, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 32, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<2 x i64>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 148, Column: 22 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 152, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 158, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2034, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 163, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2034, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', Line: 1116, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 34, Column: 10 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1075, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 17 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1077, Column: 17 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 232, Column: 27 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 1494, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 64, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 65, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 66, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 67, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 68, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 69, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 70, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 57 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 75, Column: 22 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', Line: 2481, Column: 21 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i16 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 165, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 51, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 49, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 71, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: store DebugLoc: { File: 'src/main.rs', Line: 78, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1725, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1713, Column: 26 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1714, Column: 15 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 32, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i32 - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<2 x i64>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 38, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 36, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: '<16 x i8>' - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', Line: 390, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 646, Column: 16 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1834, Column: 13 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: load DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 670, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1829, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: 'src/main.rs', Line: 148, Column: 22 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: 'src/main.rs', Line: 172, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', Line: 492, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i64 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: ptr - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: 'src/main.rs', Line: 171, Column: 5 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', Line: 88, Column: 13 } ... --- !Missed Pass: gvn Name: LoadClobbered DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'load of type ' - Type: i8 - String: ' not eliminated' - String: ' in favor of ' - OtherAccess: store DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 94, Column: 9 } - String: ' because it is clobbered by ' - ClobberedBy: atomicrmw DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', Line: 3202, Column: 24 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 32, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 152, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 158, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 163, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 34, Column: 10 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1075, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1725, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: inline Name: Inlined Function: main Args: - String: '''' - Callee: _ZN3std2rt10lang_start17h553b022b5decff43E DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', Line: 159, Column: 0 } - String: ''' inlined into ''' - Caller: main - String: '''' - String: ' with ' - String: '(cost=' - Cost: '15' - String: ', threshold=' - Threshold: '375' - String: ')' ... --- !Analysis Pass: loop-vectorize Name: NoCFGForSelect DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 114, Column: 13 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'loop not vectorized: ' - String: control flow cannot be substituted for a select ... --- !Analysis Pass: loop-vectorize Name: CantVectorizeLibcall DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'loop not vectorized: ' - String: call instruction cannot be vectorized ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: loop not vectorized ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', Line: 251, Column: 5 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 0, Column: 0 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 341, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 0, Column: 0 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Passed Pass: slp-vectorizer Name: StoresVectorized DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 117, Column: 13 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'Stores SLP vectorized with cost ' - Cost: '-1' - String: ' and with tree size ' - TreeSize: '2' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1942, Column: 5 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 12 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 105, Column: 24 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 108, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 909, Column: 26 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 29 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 74, Column: 45 } Function: _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Analysis Pass: loop-vectorize Name: LoopContainsSwitch DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', Line: 811, Column: 9 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: 'loop not vectorized: ' - String: loop contains a switch statement ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', Line: 0, Column: 0 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 39, Column: 8 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 39, Column: 8 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: LoopContainsSwitch DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', Line: 811, Column: 9 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: 'loop not vectorized: ' - String: loop contains a switch statement ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 85, Column: 22 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 85, Column: 22 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 85, Column: 22 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: loop not vectorized ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 18, Column: 5 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 18, Column: 5 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', Line: 18, Column: 5 } Function: '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 690, Column: 22 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 689, Column: 22 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 710, Column: 16 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 690, Column: 22 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 689, Column: 22 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 879, Column: 36 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 690, Column: 17 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 690, Column: 22 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 689, Column: 22 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 879, Column: 36 } Function: _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 19 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: loop not vectorized ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Passed Pass: slp-vectorizer Name: StoresVectorized DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'Stores SLP vectorized with cost ' - Cost: '-1' - String: ' and with tree size ' - TreeSize: '2' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Passed Pass: slp-vectorizer Name: StoresVectorized DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'Stores SLP vectorized with cost ' - Cost: '-1' - String: ' and with tree size ' - TreeSize: '2' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Passed Pass: slp-vectorizer Name: StoresVectorized DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'Stores SLP vectorized with cost ' - Cost: '-1' - String: ' and with tree size ' - TreeSize: '2' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Passed Pass: slp-vectorizer Name: StoresVectorized DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'Stores SLP vectorized with cost ' - Cost: '-1' - String: ' and with tree size ' - TreeSize: '2' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Passed Pass: slp-vectorizer Name: StoresVectorized DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2772, Column: 9 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'Stores SLP vectorized with cost ' - Cost: '-1' - String: ' and with tree size ' - TreeSize: '2' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 215, Column: 31 } Function: _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 73, Column: 20 } Function: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 73, Column: 20 } Function: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E Args: - String: loop not vectorized ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 52, Column: 12 } Function: _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 621, Column: 12 } Function: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 621, Column: 12 } Function: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E Args: - String: loop not vectorized ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 96, Column: 12 } Function: _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Analysis Pass: loop-vectorize Name: CantIdentifyArrayBounds DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 1022, Column: 18 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'loop not vectorized: ' - String: cannot identify array bounds ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 515, Column: 15 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: CantIdentifyArrayBounds DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 481, Column: 18 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'loop not vectorized: ' - String: cannot identify array bounds ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 538, Column: 15 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 470, Column: 55 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantIdentifyArrayBounds DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 481, Column: 18 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'loop not vectorized: ' - String: cannot identify array bounds ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 621, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 621, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 621, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 621, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 621, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 593, Column: 13 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 593, Column: 13 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 588, Column: 19 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 588, Column: 19 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 646, Column: 13 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 646, Column: 13 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 641, Column: 19 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 641, Column: 19 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: loop not vectorized ... --- !Passed Pass: loop-vectorize Name: Vectorized DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 977, Column: 19 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'vectorized loop (vectorization width: ' - VectorizationFactor: '4' - String: ', interleaved count: ' - InterleaveCount: '2' - String: ')' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 873, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 215, Column: 18 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 482, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/num/mod.rs', Line: 456, Column: 5 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 215, Column: 18 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 215, Column: 18 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 356, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 215, Column: 18 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1363, Column: 52 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1363, Column: 52 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1363, Column: 52 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 768, Column: 47 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 0, Column: 0 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', Line: 1363, Column: 52 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 768, Column: 47 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 751, Column: 16 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotPossible Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 813, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Passed Pass: loop-unroll Name: PartialUnrolled DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 621, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'unrolled loop by a factor of ' - UnrollCount: '4' - String: ' with run-time trip count' ... --- !Passed Pass: loop-unroll Name: PartialUnrolled DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 621, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'unrolled loop by a factor of ' - UnrollCount: '4' - String: ' with run-time trip count' ... --- !Passed Pass: loop-unroll Name: PartialUnrolled DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', Line: 621, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'unrolled loop by a factor of ' - UnrollCount: '2' - String: ' with run-time trip count' ... --- !Passed Pass: loop-unroll Name: PartialUnrolled DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 538, Column: 15 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'unrolled loop by a factor of ' - UnrollCount: '2' - String: ' with run-time trip count' ... --- !Passed Pass: loop-unroll Name: PartialUnrolled DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 515, Column: 15 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'unrolled loop by a factor of ' - UnrollCount: '4' - String: ' with run-time trip count' ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 813, Column: 12 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 830, Column: 13 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 851, Column: 17 } Function: _ZN4core5slice4sort7recurse17h4f6627290dcc6858E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 263, Column: 16 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 263, Column: 16 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 263, Column: 16 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 263, Column: 16 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 263, Column: 16 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 263, Column: 16 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: loop not vectorized ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 271, Column: 17 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 267, Column: 26 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 271, Column: 17 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', Line: 267, Column: 26 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', Line: 2685, Column: 9 } Function: _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 481, Column: 32 } Function: _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 240, Column: 25 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 240, Column: 25 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 240, Column: 25 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 240, Column: 25 } Function: '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Analysis Pass: loop-vectorize Name: NoCFGForSelect DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 114, Column: 13 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'loop not vectorized: ' - String: control flow cannot be substituted for a select ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 466, Column: 11 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 466, Column: 11 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 466, Column: 11 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: loop not vectorized ... --- !Missed Pass: slp-vectorizer Name: NotPossible Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 76 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Passed Pass: slp-vectorizer Name: StoresVectorized DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 117, Column: 13 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'Stores SLP vectorized with cost ' - Cost: '-1' - String: ' and with tree size ' - TreeSize: '2' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 86 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 466, Column: 11 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', Line: 26, Column: 9 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 57, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 52, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', Line: 268, Column: 12 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 42, Column: 53 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', Line: 111, Column: 30 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', Line: 86, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 15 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 473, Column: 27 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 467, Column: 9 } Function: _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Analysis Pass: loop-vectorize Name: CantVectorizeInstructionReturnType DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'loop not vectorized: ' - String: instruction return type cannot be vectorized ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1249, Column: 18 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: CantVectorizeInstructionReturnType DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'loop not vectorized: ' - String: instruction return type cannot be vectorized ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1811, Column: 20 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1811, Column: 20 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: loop not vectorized ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1382, Column: 9 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/num/mod.rs', Line: 1267, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', Line: 561, Column: 1 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 222, Column: 8 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Passed Pass: loop-unroll Name: PartialUnrolled DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1249, Column: 18 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: 'unrolled loop by a factor of ' - UnrollCount: '2' - String: ' with run-time trip count' ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 737, Column: 32 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE' Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Analysis Pass: loop-vectorize Name: NoCFGForSelect DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', Line: 251, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: control flow cannot be substituted for a select ... --- !Analysis Pass: loop-vectorize Name: CantVectorizeLibcall DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: call instruction cannot be vectorized ... --- !Analysis Pass: loop-vectorize Name: CantVectorizeInstruction DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 240, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: instruction cannot be vectorized ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 240, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: CantVectorizeInstructionReturnType DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', Line: 1188, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: instruction return type cannot be vectorized ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1811, Column: 20 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1811, Column: 20 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: loop not vectorized ... --- !Passed Pass: loop-vectorize Name: Vectorized DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'vectorized loop (vectorization width: ' - VectorizationFactor: '2' - String: ', interleaved count: ' - InterleaveCount: '2' - String: ')' ... --- !Analysis Pass: loop-vectorize Name: CantIdentifyArrayBounds DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 1022, Column: 18 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: cannot identify array bounds ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', Line: 162, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: CantIdentifyArrayBounds DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', Line: 1022, Column: 18 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: cannot identify array bounds ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: 'src/main.rs', Line: 46, Column: 37 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 2780, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 2780, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 2780, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: CFGNotUnderstood DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', Line: 118, Column: 19 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: loop control flow is not understood by vectorizer ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', Line: 118, Column: 19 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', Line: 118, Column: 19 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: NonReductionValueUsedOutsideLoop DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: value that could not be identified as reduction is used outside the loop ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1216, Column: 24 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: loop not vectorized ... --- !Analysis Pass: loop-vectorize Name: CFGNotUnderstood DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', Line: 118, Column: 19 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: loop control flow is not understood by vectorizer ... --- !Analysis Pass: loop-vectorize Name: CantComputeNumberOfIterations DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', Line: 118, Column: 19 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'loop not vectorized: ' - String: could not determine number of loop iterations ... --- !Missed Pass: loop-vectorize Name: MissedDetails DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', Line: 118, Column: 19 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: loop not vectorized ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 921, Column: 27 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1309, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 921, Column: 27 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: 'src/main.rs', Line: 49, Column: 29 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: 'src/main.rs', Line: 56, Column: 38 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', Line: 2792, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 921, Column: 27 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 921, Column: 27 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', Line: 113, Column: 0 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotBeneficial Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'List vectorization was possible but not beneficial with cost ' - Cost: '0' - String: ' >= ' - Treshold: '0' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: 'src/main.rs', Line: 153, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 921, Column: 13 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: 'src/record.rs', Line: 30, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 170, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 48, Column: 22 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 597, Column: 13 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 240, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', Line: 59, Column: 9 } ... --- !Passed Pass: TTI Name: DontUnroll DebugLoc: { File: 'src/main.rs', Line: 150, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'advising against unrolling the loop because it contains a ' - Call: call DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 2239, Column: 18 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 40, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1286, Column: 29 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1367, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 826, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 828, Column: 25 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1308, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', Line: 1310, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 31, Column: 26 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 32, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1828, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 231, Column: 44 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 1832, Column: 45 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: insertelement DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 12 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: shufflevector DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 12 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: insertelement DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 12 } ... --- !Passed Pass: licm Name: Hoisted DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 12 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: 'hoisting ' - Inst: shufflevector DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', Line: 270, Column: 12 } ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 152, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2051, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 158, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/main.rs', Line: 163, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', Line: 223, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', Line: 2610, Column: 55 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1949, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 34, Column: 10 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 57, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 58, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: 'src/record.rs', Line: 59, Column: 9 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', Line: 497, Column: 1 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1075, Column: 15 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', Line: 1076, Column: 16 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: licm Name: LoadWithLoopInvariantAddressInvalidated DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', Line: 1725, Column: 5 } Function: _ZN15similarity_join4main17h3b296722dbf1bad4E Args: - String: failed to move load with loop-invariant address because the loop may invalidate its value ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/alignment.rs', Line: 88, Column: 18 } Function: __rust_alloc Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/alignment.rs', Line: 88, Column: 18 } Function: __rust_realloc Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... --- !Missed Pass: slp-vectorizer Name: NotPossible DebugLoc: { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/alignment.rs', Line: 88, Column: 18 } Function: __rust_alloc_zeroed Args: - String: 'Cannot SLP vectorize list: vectorization was impossible' - String: ' with available vectorization factors' ... ================================================ FILE: tests/integration/analyze.rs ================================================ use crate::utils::{analyze_remarks, get_test_data_path, HTMLDir, OutputExt}; #[test] fn analyze_directory() -> anyhow::Result<()> { let dir = tempfile::TempDir::new()?; analyze_remarks( dir.path(), &[ "--source-dir", dir.path().to_str().unwrap(), "--output-dir", "foo", get_test_data_path("remarks-1").to_str().unwrap(), ], )? .assert_ok(); let dir = HTMLDir::new(&dir.path().join("foo")); dir.check_index(); Ok(()) } #[test] fn create_source_file() -> anyhow::Result<()> { let data_dir = get_test_data_path("remarks-similarity-join"); let dir = tempfile::TempDir::new()?; let output_dir = "output"; analyze_remarks( dir.path(), &[ "--source-dir", data_dir.to_str().unwrap(), "--output-dir", output_dir, data_dir.join("yaml").to_str().unwrap(), ], )? .assert_ok(); let dir = HTMLDir::new(&dir.path().join(output_dir)); dir.check_source("src_main.rs.html"); dir.check_source("src_record.rs.html"); Ok(()) } ================================================ FILE: tests/integration/build.rs ================================================ use crate::utils::{cargo_remark, init_cargo_project, OutputExt}; use cargo_remark::remark::{load_remarks_from_dir, Location, Remark, RemarkLoadOptions}; use std::path::Path; const INLINE_NEVER_SOURCE: &str = r#" #[inline(never)] fn foo() {} fn main() { foo(); } "#; #[test] fn test_build_filter() -> anyhow::Result<()> { let mut project = init_cargo_project()?; project.file("src/main.rs", INLINE_NEVER_SOURCE); cargo_remark(&project.dir, &["build", "--filter", "NeverInline"])?.assert_ok(); assert!(load_remarks(&project.remark_dir(), vec![]).is_empty()); Ok(()) } #[test] fn test_generate_remarks() -> anyhow::Result<()> { let mut project = init_cargo_project()?; project.file("src/main.rs", INLINE_NEVER_SOURCE); cargo_remark(&project.dir, &["build", "--filter", ""])?.assert_ok(); project.default_out_dir().check_index(); let remark_dir = project.remark_dir(); assert!(remark_dir.is_dir()); let remarks = load_remarks_from_dir( &remark_dir, RemarkLoadOptions { external: false, source_dir: project.dir.clone(), filter_kind: vec![], rustc_source_root: None, }, None, )?; let remark = remarks .iter() .find(|remark| remark.name == "NeverInline") .unwrap(); assert_eq!(remark.pass, "inline"); assert_eq!(remark.function.name, "foo::main"); // Windows doesn't seem to load the debug location correctly #[cfg(unix)] { assert_eq!( normalize_location(remark.function.location.as_ref()), Some(Location { file: "src/main.rs".to_string(), line: 6, column: 5 }) ); } Ok(()) } fn normalize_location(location: Option<&Location>) -> Option { location.map(|l| Location { file: l.file.replace('\\', "/"), line: l.line, column: l.column, }) } fn load_remarks(path: &Path, filter: Vec) -> Vec { load_remarks_from_dir( path, RemarkLoadOptions { external: false, source_dir: path.to_path_buf(), filter_kind: filter, rustc_source_root: None, }, None, ) .expect("Cannot load remarks") } ================================================ FILE: tests/integration/main.rs ================================================ mod analyze; mod build; mod utils; ================================================ FILE: tests/integration/utils/mod.rs ================================================ use std::path::{Path, PathBuf}; use std::process::{Command, Output, Stdio}; use tempfile::TempDir; pub fn cargo_remark(dir: &Path, args: &[&str]) -> anyhow::Result { let mut command = Command::new("cargo"); command.arg("remark"); for arg in args { command.arg(arg); } command.current_dir(dir); command.stdin(Stdio::null()); command.stdout(Stdio::piped()); let path = std::env::var("PATH").unwrap_or_default(); let path = format!("{}:{}", get_target_dir().display(), path); command.env("PATH", path); let child = command.spawn()?; Ok(child.wait_with_output()?) } pub fn analyze_remarks(dir: &Path, args: &[&str]) -> anyhow::Result { let mut command = Command::new("analyze-remarks"); for arg in args { command.arg(arg); } command.current_dir(dir); command.stdin(Stdio::null()); command.stdout(Stdio::piped()); let path = std::env::var("PATH").unwrap_or_default(); let path = format!("{}:{}", get_target_dir().display(), path); command.env("PATH", path); let child = command.spawn()?; Ok(child.wait_with_output()?) } pub trait OutputExt { fn assert_ok(self) -> Self; fn assert_error(self) -> Self; fn stdout(&self) -> String; fn stderr(&self) -> String; } impl OutputExt for Output { fn assert_ok(self) -> Self { if !self.status.success() { eprintln!("Stdout: {}", self.stdout()); eprintln!("Stderr: {}", self.stderr()); panic!("Output was not successful"); } self } fn assert_error(self) -> Self { if self.status.success() { eprintln!("Stdout: {}", self.stdout()); eprintln!("Stderr: {}", self.stderr()); panic!("Output was successful"); } self } fn stdout(&self) -> String { String::from_utf8_lossy(&self.stdout).to_string() } fn stderr(&self) -> String { String::from_utf8_lossy(&self.stderr).to_string() } } fn get_target_dir() -> PathBuf { let mut target_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR")); target_dir.push("target"); target_dir.push("debug"); target_dir } pub fn get_test_data_path>(path: P) -> PathBuf { PathBuf::from(env!("CARGO_MANIFEST_DIR")) .join("tests") .join("data") .join(path.as_ref()) } pub struct HTMLDir { dir: PathBuf, } impl HTMLDir { pub fn new(dir: &Path) -> Self { Self { dir: dir.to_path_buf(), } } pub fn check_index(&self) { self.check_exists("index.html"); } pub fn check_source(&self, file: &str) { self.check_exists(Path::new("src").join(file)); } fn check_exists>(&self, path: P) { let path = self.dir.join(path.as_ref()); assert!(path.is_file()); assert!(path.metadata().unwrap().len() > 0); } } pub struct CargoProject { pub dir: PathBuf, _tempdir: TempDir, } impl CargoProject { pub fn path>(&self, path: P) -> PathBuf { let path = path.into(); self.dir.join(path) } pub fn file>(&mut self, path: P, code: &str) -> &mut Self { let path = self.path(path.as_ref()); std::fs::write(path, code).expect("Could not write project file"); self } pub fn remark_dir(&self) -> PathBuf { self.path("target/remarks/yaml") } pub fn default_out_dir(&self) -> HTMLDir { self.out_dir(&self.path("target/remarks/web")) } fn out_dir(&self, path: &Path) -> HTMLDir { HTMLDir::new(path) } } impl Drop for CargoProject { fn drop(&mut self) { if std::thread::panicking() { // Do not delete the directory if an error has occurred let path = std::mem::replace(&mut self._tempdir, TempDir::new().unwrap()).into_path(); eprintln!("Directory of failed test located at: {}", path.display()); } } } pub fn init_cargo_project() -> anyhow::Result { let dir = tempfile::tempdir()?; let name = "foo"; let status = Command::new("cargo") .args(["new", "--bin", name]) .current_dir(dir.path()) .status()?; assert!(status.success()); let path = dir.path().join(name); println!("Created Cargo project {} at {}", name, path.display()); Ok(CargoProject { dir: path, _tempdir: dir, }) }