[
  {
    "path": ".github/workflows/check.yml",
    "content": "## Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md\nname: Check\n\non:\n  push:\n    branches:\n      - main\n  pull_request:\n\njobs:\n  test:\n    strategy:\n      matrix:\n        os: [ ubuntu-latest, windows-latest ]\n    name: Test\n    runs-on: ${{ matrix.os }}\n    steps:\n      - name: Checkout sources\n        uses: actions/checkout@v2\n\n      - name: Install nightly toolchain\n        uses: actions-rs/toolchain@v1\n        with:\n          profile: minimal\n          toolchain: nightly\n          override: true\n          components: clippy, rustfmt\n\n      - uses: Swatinem/rust-cache@v2\n\n      - name: Build\n        uses: actions-rs/cargo@v1\n        with:\n          command: build\n          args: --all --all-targets\n\n      - name: Run tests\n        uses: actions-rs/cargo@v1\n        with:\n          command: test\n\n      - name: Lint\n        uses: actions-rs/cargo@v1\n        with:\n          command: clippy\n          args: --all -- -D warnings\n\n      - name: Check Rust formatting\n        uses: actions-rs/cargo@v1\n        with:\n          command: fmt\n          args: --all -- --check\n"
  },
  {
    "path": ".gitignore",
    "content": "/target\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "# 0.1.2 (28. 9. 2023)\n## Fixes:\n- Fix parsing of the `--filter` CLI parameter (https://github.com/Kobzol/cargo-remark/issues/11)\n  (by [@joseluis](https://github.com/joseluis)).\n- Fix normalization of source file paths on Windows (https://github.com/Kobzol/cargo-remark/issues/6).\n- Fix missing images in remark table header (https://github.com/Kobzol/cargo-remark/issues/9).\n\n# 0.1.1 (16. 8. 2023)\n## Fixes\n- Fix links in remark message inside source file pages.\n\n# 0.1.0 (12. 8. 2023)\nInitial version\n"
  },
  {
    "path": "Cargo.toml",
    "content": "[package]\nname = \"cargo-remark\"\nversion = \"0.1.2\"\nedition = \"2021\"\n#rust-version = \"1.72.0\"\n\ndescription = \"Cargo subcommand for displaying LLVM optimization remarks from compiling Rust programs.\"\nrepository = \"https://github.com/kobzol/cargo-remark\"\nauthors = [\"Jakub Beránek <berykubik@gmail.com>\"]\nkeywords = [\n    \"llvm\",\n    \"optimization\",\n    \"remark\",\n    \"cargo\",\n]\ncategories = [\"development-tools::cargo-plugins\"]\n\nreadme = \"README.md\"\nlicense = \"MIT\"\ninclude = [\n    \"src/**/*.rs\",\n    \"templates\",\n    \"Cargo.toml\",\n    \"README.md\"\n]\n\n[dependencies]\n# Serialization\nserde = { version = \"1\", features = [\"derive\", \"rc\"] }\nserde_yaml = \"0.9\"\nserde_json = \"1\"\n\n# Data structures\nhashbrown = { version = \"0.16.0\", features = [\"rayon\", \"serde\"] }\nfxhash = \"0.2\"\n\n# Error handling\nanyhow = \"1\"\n\n# Logging\nlog = \"0.4\"\nenv_logger = \"0.10\"\n\n# Templates\naskama = { version = \"0.12\", features = [\"serde-json\"] }\nrust-embed = \"6.6\"\nhtml-escape = \"0.2\"\n\n# CLI\nclap = { version = \"4.3\", features = [\"derive\"] }\nindicatif = \"0.17\"\ncolored = \"2.0.0\"\nopener = \"0.6\"\n\nrustc-demangle = \"0.1\"\nregex = \"1.9\"\nrayon = \"1.7\"\ncargo_metadata = \"0.15\"\n\nmimalloc = { version = \"0.1\", default-features = false, optional = true }\n\n[dev-dependencies]\ninsta = \"1.29\"\ntempfile = \"3.5\"\n\n[features]\ndefault = [\"mimalloc\"]\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2023-present, Jakub Beránek\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# `cargo-remark` [![Build Status]][actions] [![Latest Version]][crates.io]\n\n[Build Status]: https://github.com/kobzol/cargo-remark/actions/workflows/check.yml/badge.svg\n[actions]: https://github.com/kobzol/cargo-remark/actions?query=branch%3Amain\n[Latest Version]: https://img.shields.io/crates/v/cargo-remark.svg\n[crates.io]: https://crates.io/crates/cargo-remark\n\n**Cargo subcommand that makes it possible to view LLVM [optimization remarks](https://llvm.org/docs/Remarks.html)\ngenerated during the compilation of your crate.**\n\nThese remarks can tell you where and why has LLVM failed to apply certain optimizations. In certain cases[^1], you can use\nthis knowledge to change your code so that it optimizes better. In the future, I hope that `rustc` will be able to emit\nits own, Rust-specific (MIR?) optimization remarks, but this is just an idea at this point.\n\n[^1]: Currently, probably only if you are a LLVM expert.\n\n`cargo remark` compiles your crate, generates LLVM remarks, and then parses them and visualizes them in a simple website.\nIt is parallelized, which is important for large programs, because there can be a lot of remarks and since they are in \nYAML, their parsing is not very fast.\n\n**Contributions are welcome!**\n\n# Generated output example\n![Screenshot of a set of visualized remarks on top of Rust source code](docs/remarks.png)\n\n# Installation\n```bash\n$ cargo install cargo-remark\n```\n\nNote that `rustc` has [gained](https://github.com/rust-lang/rust/pull/113040) the ability to output LLVM optimization\nremarks in the YAML format on 2. 7. 2023, and it is currently unstable. Therefore, you will need a recent nightly\nversion[^2] of the compiler to generate LLVM remarks.\n```bash\n$ rustup update nightly\n```\n\n[^2]: At least `nightly-2023-07-03-...`.\n\n# Usage\n`rustc` can generate LLVM remarks using the (currently unstable) `-Zremark-dir` flag, which is used internally by this\ncrate. To generate remarks from your crate, use the following command:\n```bash\n$ cargo remark build\n```\n\nAfter the build finishes, the remarks will be located in `target/remarks/yaml`, and the rendered website will be located\nin `target/remarks/web`. You can open the website by pointing your web browser to `target/remarks/web/index.html` file,\nor by using the `--open` flag.\n\nThis command will automatically build your crate with optimizations, so you don't have to pass the `--release` flag.\nCurrently, only missed optimization remarks will be visualized. `Analysis` and `Passed` remarks are ignored.\n\n### CLI parameters\n| **Flag**     | **Default**                                     | **Description**                                                   |\n|--------------|-------------------------------------------------|-------------------------------------------------------------------|\n| `--open`     | (unset)                                         | Open the generated website with the default browser.              |\n| `--external` | (unset)                                         | Visualize remarks from external crates (dependencies) and stdlib. |\n| `--filter`   | `FastISelFailure,NeverInline,SpillReloadCopies` | Comma separated list of remark passes that should be ignored.     |\n\n### Features\nThere is currently a single feature `mimalloc`, which is enabled by default, and which enables the use of the\n[mimalloc](https://docs.rs/mimalloc/latest/mimalloc/) allocator. To disable the feature, compile (or install) the crate\nwith `--no-default-features`.\n\n## Rendering remarks from a directory\nIf you have a directory with YAML remarks on disk, and you just want to visualize them without invoking Cargo, you can\nuse the `analyze-remarks` binary, which comes with this crate.\n\n```bash\n$ analyze-remarks <yaml-dir> --source-dir <crate root>\n```\n\nWhen you use this tool, you need to manually pass the root source directory from where the remarks were generated\n(with `cargo remark`, it is automatically inferred).\n\nYou could even use this binary to render remarks generated from C/C++ programs. One advantage of that is that `analyze-remarks`\nwill probably be much faster than [existing](https://github.com/OfekShilon/optview2) C/C++ remark tools, which are written\nin Python.\n\n## Usage with PGO\nIf you compile your crate with [Profile-guided optimization](https://doc.rust-lang.org/rustc/profile-guided-optimization.html)\n(PGO), the generated remarks will contain \"hotness\", a measure of how important is each missed optimization remark. This\ncan help with prioritizing which remarks should be resolved first.\n\nYou can combine `cargo remark` with the [`cargo-pgo`](https://github.com/Kobzol/cargo-pgo) command to generate remarks\nfrom a PGO optimized build:\n```bash\n# Compile with PGO instrumentation\n$ cargo pgo build\n\n# Gather PGO profiles\n$ ./target/release/<target>/<binary> <workload>\n\n# Compile with PGO optimizations and generate remarks\n$ cargo remark wrap -- pgo optimize\n```\n\n# Related work\nThis crate, and especially the generated website was heavily inspired by [optview2](https://github.com/OfekShilon/optview2),\na tool for visualizing LLVM optimization remarks generated from C and C++ programs.\n\n# License\n[MIT](LICENSE)\n"
  },
  {
    "path": "src/bin/analyze-remarks.rs",
    "content": "use cargo_remark::remark::{load_remarks_from_dir, RemarkLoadOptions};\nuse cargo_remark::render::render_remarks;\nuse cargo_remark::utils::callback::ProgressBarCallback;\nuse cargo_remark::utils::open_result;\nuse cargo_remark::utils::timing::time_block_print;\nuse cargo_remark::RustcSourceRoot;\nuse clap::Parser;\nuse env_logger::Env;\nuse std::path::PathBuf;\n\n#[cfg(feature = \"mimalloc\")]\n#[global_allocator]\nstatic GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;\n\n/// Analyze a directory containing YAML files with LLVM optimization remarks\n#[derive(clap::Parser, Debug)]\nstruct Args {\n    /// Directory containing remark files in YAML format.\n    /// They have to end with the `.opt.yaml` extension.\n    #[arg()]\n    remark_dir: PathBuf,\n\n    /// Root directory of source (crate) from which the remarks were generated.\n    #[arg(long)]\n    source_dir: PathBuf,\n\n    /// Output directory into which a HTML website with remark information will be generated.\n    #[arg(long, default_value = \"out\")]\n    output_dir: PathBuf,\n\n    /// Load remarks from external code (i.e. crate dependencies).\n    /// Note that this may produce a large amount of data!\n    #[arg(long)]\n    external: bool,\n\n    /// Sysroot directory of Rust toolchain which generated the remarks.\n    /// Used to resolve standard library sources.\n    /// Can be found with `rustc --print=sysroot`.\n    #[arg(long)]\n    sysroot: Option<PathBuf>,\n\n    /// Optimization remark kinds that should be ignored.\n    #[arg(\n        long = \"filter\",\n        value_delimiter = ',',\n        default_values = cargo_remark::DEFAULT_KIND_FILTER\n    )]\n    filter_kind: Vec<String>,\n\n    /// Open the generated website after the build finishes.\n    #[arg(long)]\n    open: bool,\n}\n\nfn analyze(args: Args) -> anyhow::Result<()> {\n    let Args {\n        remark_dir,\n        source_dir,\n        output_dir,\n        external,\n        sysroot,\n        filter_kind,\n        open,\n    } = args;\n\n    let rustc_source_root = sysroot\n        .map(|sysroot| RustcSourceRoot::from_sysroot(sysroot).expect(\"Cannot find Rust sources\"));\n\n    let remarks = time_block_print(\"Remark loading\", || {\n        load_remarks_from_dir(\n            remark_dir,\n            RemarkLoadOptions {\n                external,\n                source_dir: source_dir.clone(),\n                filter_kind,\n                rustc_source_root,\n            },\n            Some(&ProgressBarCallback::default()),\n        )\n    })?;\n    time_block_print(\"Render\", || {\n        render_remarks(\n            remarks,\n            &source_dir,\n            &output_dir,\n            Some(&ProgressBarCallback::default()),\n        )\n    })?;\n    open_result(&output_dir, open)?;\n\n    Ok(())\n}\n\nfn main() -> anyhow::Result<()> {\n    env_logger::Builder::from_env(Env::default().default_filter_or(\"cargo_remark=info\")).init();\n\n    let args = Args::parse();\n    analyze(args)?;\n    Ok(())\n}\n"
  },
  {
    "path": "src/cargo/mod.rs",
    "content": "use std::path::{Path, PathBuf};\nuse std::process::{Command, Stdio};\n\nuse anyhow::Context;\n\nuse cargo_remark::utils::cli::cli_format_path;\nuse cargo_remark::utils::io::ensure_directory;\nuse cargo_remark::RustcSourceRoot;\n\npub mod version;\n\npub enum CargoSubcommand {\n    Build,\n    Wrap,\n}\n\npub struct BuildOutput {\n    pub web_dir: PathBuf,\n    pub source_dir: PathBuf,\n    pub yaml_dir: PathBuf,\n}\n\npub fn run_cargo(subcmd: CargoSubcommand, cargo_args: Vec<String>) -> anyhow::Result<BuildOutput> {\n    let ctx = get_cargo_ctx()?;\n    let remark_dir = ctx.get_target_directory(Path::new(\"remarks\"))?;\n\n    let yaml_dir = ensure_directory(&remark_dir.join(\"yaml\"))?;\n\n    log::info!(\n        \"Optimization remarks will be stored into {}.\",\n        cli_format_path(&yaml_dir)\n    );\n\n    let mut cmd = match subcmd {\n        CargoSubcommand::Build => {\n            let cargo_args = parse_cargo_args(cargo_args);\n            let mut cargo = Command::new(\"cargo\");\n            cargo\n                .arg(\"build\")\n                .arg(\"--release\")\n                .stdin(Stdio::null())\n                .args(cargo_args.filtered);\n            cargo\n        }\n        CargoSubcommand::Wrap => {\n            if cargo_args.is_empty() {\n                return Err(anyhow::anyhow!(\"You have to enter a command after `--` that will be executed when using `wrap`.\"));\n            };\n\n            let mut cmd = Command::new(\"cargo\");\n            cmd.args(&cargo_args).stdin(Stdio::null());\n            cmd\n        }\n    };\n\n    // Use CARGO_ENCODED_RUSTFLAGS to make sure that paths with spaces work.\n    let flags = format!(\n        \"-Cremark=all\\u{001f}-Zremark-dir={}\\u{001f}-Cdebuginfo=1\",\n        yaml_dir.display()\n    );\n    set_cargo_env(&mut cmd, &flags);\n\n    let status = cmd\n        .spawn()\n        .map_err(|error| anyhow::anyhow!(\"Cannot start cargo: {error:?}\"))?\n        .wait()\n        .map_err(|error| anyhow::anyhow!(\"Cargo failed: {error:?}\"))?;\n    if !status.success() {\n        return Err(anyhow::anyhow!(\n            \"Cargo build failed: exit code {}\",\n            status.code().unwrap_or(1)\n        ));\n    }\n\n    log::info!(\"Optimization remarks sucessfully generated\");\n\n    let web_dir = ensure_directory(&remark_dir.join(\"web\"))?;\n    Ok(BuildOutput {\n        web_dir,\n        source_dir: ctx.root_directory,\n        yaml_dir,\n    })\n}\n\npub fn get_rustc_source_root() -> anyhow::Result<RustcSourceRoot> {\n    let output = Command::new(\"rustc\")\n        .arg(\"--print\")\n        .arg(\"sysroot\")\n        .output()\n        .context(\"Cannot get sysroot from `rustc`\")?;\n    let sysroot = PathBuf::from(String::from_utf8_lossy(&output.stdout).trim());\n    RustcSourceRoot::from_sysroot(sysroot)\n}\n\nfn set_cargo_env(command: &mut Command, flags: &str) {\n    let mut rustflags = std::env::var(\"CARGO_ENCODED_RUSTFLAGS\").unwrap_or_default();\n    if !rustflags.is_empty() {\n        rustflags.push('\\u{001f}');\n    }\n    rustflags.push_str(flags);\n\n    command.env(\"CARGO_ENCODED_RUSTFLAGS\", rustflags);\n}\n\n#[derive(Debug, Default)]\nstruct CargoArgs {\n    filtered: Vec<String>,\n}\n\nfn parse_cargo_args(cargo_args: Vec<String>) -> CargoArgs {\n    let mut args = CargoArgs::default();\n\n    for arg in cargo_args {\n        match arg.as_str() {\n            // Skip `--release`, we will pass it by ourselves.\n            \"--release\" => {\n                log::warn!(\"Do not pass `--release` manually, it will be added automatically by `cargo-remark`\");\n            }\n            _ => args.filtered.push(arg),\n        }\n    }\n    args\n}\n\nstruct CargoContext {\n    target_directory: PathBuf,\n    root_directory: PathBuf,\n}\n\nimpl CargoContext {\n    fn get_target_directory(&self, path: &Path) -> anyhow::Result<PathBuf> {\n        let directory = self.target_directory.join(path);\n        ensure_directory(&directory)?;\n        Ok(directory)\n    }\n}\n\n/// Finds Cargo metadata from the current directory.\nfn get_cargo_ctx() -> anyhow::Result<CargoContext> {\n    let cmd = cargo_metadata::MetadataCommand::new();\n    let metadata = cmd\n        .exec()\n        .map_err(|error| anyhow::anyhow!(\"Cannot get cargo metadata: {:?}\", error))?;\n    Ok(CargoContext {\n        target_directory: metadata.target_directory.into_std_path_buf(),\n        root_directory: metadata.workspace_root.into_std_path_buf(),\n    })\n}\n"
  },
  {
    "path": "src/cargo/version.rs",
    "content": "use std::process::Command;\n\n/// Returns true if the currently used rustc supports `-Zremark-dir`.\npub fn check_remark_dir_support() -> anyhow::Result<bool> {\n    let output = Command::new(\"rustc\").arg(\"-Z\").arg(\"help\").output()?;\n    if !output.status.success() {\n        return Err(anyhow::anyhow!(\n            \"Failed to execute rustc -Z help. You must use a nightly compiler.\"\n        ));\n    }\n\n    let options = String::from_utf8_lossy(&output.stdout);\n    for line in options.lines() {\n        let items: Vec<&str> = line.split_whitespace().take(2).map(|v| v.trim()).collect();\n        if items.len() != 2 || items[0] != \"-Z\" {\n            continue;\n        }\n        if items[1] == \"remark-dir=val\" {\n            return Ok(true);\n        }\n    }\n\n    Ok(false)\n}\n"
  },
  {
    "path": "src/lib.rs",
    "content": "use std::path::PathBuf;\n\npub mod remark;\npub mod render;\npub mod utils;\n\npub const DEFAULT_KIND_FILTER: &[&str] = &[\"FastISelFailure\", \"NeverInline\", \"SpillReloadCopies\"];\n\n/// Directory containing Rust sources\npub struct RustcSourceRoot(pub PathBuf);\n\nimpl RustcSourceRoot {\n    pub fn from_sysroot(path: PathBuf) -> anyhow::Result<Self> {\n        let src_dir = path.join(\"lib\").join(\"rustlib\").join(\"src\").join(\"rust\");\n        if src_dir.is_dir() {\n            Ok(Self(src_dir))\n        } else {\n            Err(anyhow::anyhow!(\"Path {} does not exist\", src_dir.display()))\n        }\n    }\n}\n"
  },
  {
    "path": "src/main.rs",
    "content": "mod cargo;\n\nuse cargo::version::check_remark_dir_support;\nuse cargo::{get_rustc_source_root, run_cargo, CargoSubcommand};\nuse cargo_remark::remark::{load_remarks_from_dir, RemarkLoadOptions};\nuse cargo_remark::render::render_remarks;\nuse cargo_remark::utils::callback::ProgressBarCallback;\nuse cargo_remark::utils::cli::cli_format_path;\nuse cargo_remark::utils::open_result;\nuse cargo_remark::utils::timing::time_block_log_info;\nuse clap::Parser;\nuse env_logger::Env;\n\n#[cfg(feature = \"mimalloc\")]\n#[global_allocator]\nstatic GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;\n\n#[derive(clap::Parser, Debug)]\n#[clap(author, version, about)]\n#[clap(bin_name(\"cargo\"))]\n#[clap(disable_help_subcommand(true))]\nenum Args {\n    #[clap(subcommand)]\n    #[clap(author, version, about)]\n    Remark(Subcommand),\n}\n\n#[derive(clap::Subcommand, Debug)]\nenum Subcommand {\n    /// Build a crate with optimizations, generate optimization remarks and render a website\n    /// with remark summary.\n    Build(SharedArgs),\n    /// Wrap an arbitrary cargo command, while configuring it to generate remarks.\n    Wrap(SharedArgs),\n}\n\n#[derive(clap::Parser, Debug)]\n#[clap(trailing_var_arg = true)]\nstruct SharedArgs {\n    /// Open the generated website after the build finishes.\n    #[arg(long)]\n    open: bool,\n\n    /// Load remarks from external code (i.e. crate dependencies).\n    /// Note that this may produce a large amount of data!\n    #[arg(long)]\n    external: bool,\n\n    /// Optimization remark kinds that should be ignored.\n    #[arg(\n        long = \"filter\",\n        value_delimiter = ',',\n        default_values = cargo_remark::DEFAULT_KIND_FILTER\n    )]\n    filter_kind: Vec<String>,\n\n    /// Additional arguments that will be passed to Cargo.\n    cargo_args: Vec<String>,\n}\n\nfn generate_remarks(subcmd: CargoSubcommand, args: SharedArgs) -> anyhow::Result<()> {\n    let SharedArgs {\n        open,\n        external,\n        filter_kind,\n        cargo_args,\n    } = args;\n    if !check_remark_dir_support()? {\n        return Err(anyhow::anyhow!(\n            \"Your version of rustc does not support `-Zremark-dir`. Please use a nightly version newer than 4. 7. 2023.\"\n        ));\n    }\n    let output = run_cargo(subcmd, cargo_args)?;\n\n    let rustc_source_root = match get_rustc_source_root() {\n        Ok(root) => Some(root),\n        Err(error) => {\n            log::warn!(\"Cannot find rustc source root: {error:?}\");\n            None\n        }\n    };\n\n    let remarks = time_block_log_info(\"Remark loading\", || {\n        load_remarks_from_dir(\n            output.yaml_dir,\n            RemarkLoadOptions {\n                external,\n                source_dir: output.source_dir.clone(),\n                filter_kind,\n                rustc_source_root,\n            },\n            Some(&ProgressBarCallback::default()),\n        )\n    })?;\n    time_block_log_info(\"Rendering\", || {\n        render_remarks(\n            remarks,\n            &output.source_dir,\n            &output.web_dir,\n            Some(&ProgressBarCallback::default()),\n        )\n    })?;\n\n    log::info!(\"Website built into {}.\", cli_format_path(&output.web_dir));\n\n    open_result(&output.web_dir, open)?;\n    Ok(())\n}\n\nfn main() -> anyhow::Result<()> {\n    env_logger::Builder::from_env(Env::default().default_filter_or(\"cargo_remark=info\")).init();\n\n    let args = Args::parse();\n\n    match args {\n        Args::Remark(args) => match args {\n            Subcommand::Build(args) => generate_remarks(CargoSubcommand::Build, args),\n            Subcommand::Wrap(args) => generate_remarks(CargoSubcommand::Wrap, args),\n        },\n    }\n}\n"
  },
  {
    "path": "src/remark/mod.rs",
    "content": "use std::borrow::Cow;\nuse std::collections::BTreeMap;\nuse std::fs::File;\nuse std::hash::Hash;\nuse std::io::BufReader;\nuse std::path::{Path, PathBuf};\nuse std::sync::OnceLock;\n\nuse anyhow::Context;\nuse rayon::iter::{IntoParallelIterator, ParallelIterator};\nuse regex::Regex;\nuse serde::Deserialize;\nuse serde_yaml::Value;\n\nuse crate::remark::parse::{\n    AnalysisRemark, MissedRemark, RemarkArg, RemarkArgCallee, RemarkArgCaller,\n};\nuse crate::utils::callback::LoadCallback;\nuse crate::utils::timing::time_block_log_debug;\nuse crate::RustcSourceRoot;\n\nmod parse;\n\n/// We expect that the remark YAML files will have this extension.\nconst EXPECTED_EXTENSION: &str = \".opt.yaml\";\n\npub type Line = u32;\npub type Column = u32;\n\n#[derive(Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]\npub struct Location {\n    pub file: String,\n    pub line: Line,\n    pub column: Column,\n}\n\n#[derive(Debug, PartialEq, Eq, Hash)]\npub struct Function {\n    pub name: String,\n    pub location: Option<Location>,\n}\n\n#[derive(Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]\npub enum MessagePart {\n    String(String),\n    AnnotatedString { message: String, location: Location },\n}\n\n#[derive(Debug)]\npub struct Remark {\n    pub pass: String,\n    pub name: String,\n    pub function: Function,\n    pub message: Vec<MessagePart>,\n    pub hotness: Option<i32>,\n}\n\n#[derive(Default)]\npub struct RemarkLoadOptions {\n    /// Load remarks from external crates\n    pub external: bool,\n    /// Source directory\n    pub source_dir: PathBuf,\n    /// Remark kinds that should be ignored\n    pub filter_kind: Vec<String>,\n    /// Root path of rustc toolchain sources\n    pub rustc_source_root: Option<RustcSourceRoot>,\n}\n\npub fn load_remarks_from_file<P: AsRef<Path>>(\n    path: P,\n    options: &RemarkLoadOptions,\n) -> anyhow::Result<Vec<Remark>> {\n    let path = path.as_ref();\n\n    let file =\n        File::open(path).with_context(|| format!(\"Cannot open remark file {}\", path.display()))?;\n    log::debug!(\"Parsing {}\", path.display());\n\n    if file.metadata()?.len() == 0 {\n        log::debug!(\"File is empty\");\n        return Ok(vec![]);\n    }\n\n    let reader = BufReader::new(file);\n\n    let remarks = time_block_log_debug(\"Parsed remark file\", || parse_remarks(reader, options));\n    Ok(remarks)\n}\n\nfn parse_remarks<R: std::io::Read>(reader: R, options: &RemarkLoadOptions) -> Vec<Remark> {\n    let mut remarks = Vec::new();\n    let mut analysis_remarks = Vec::new();\n    for document in serde_yaml::Deserializer::from_reader(reader) {\n        match parse::Remark::deserialize(document) {\n            Ok(remark) => {\n                // TODO: optimize (intern)\n                match remark {\n                    parse::Remark::Missed(remark) => {\n                        let MissedRemark {\n                            pass,\n                            name,\n                            debug_loc,\n                            function,\n                            args,\n                            hotness,\n                        } = remark;\n\n                        if let Some(location) = debug_loc {\n                            if !options.external {\n                                if location.file.starts_with('/') {\n                                    continue;\n                                }\n                                if !options.source_dir.join(location.file.as_ref()).is_file() {\n                                    continue;\n                                }\n                            }\n                            if options\n                                .filter_kind\n                                .iter()\n                                .any(|filter| filter == name.as_ref())\n                            {\n                                continue;\n                            }\n\n                            let remark = Remark {\n                                pass: pass.to_string(),\n                                name: name.to_string(),\n                                function: Function {\n                                    name: demangle(&function),\n                                    location: Some(parse_debug_loc(options, location)),\n                                },\n                                message: construct_message(options, args),\n                                hotness,\n                            };\n                            remarks.push(remark);\n                        }\n                    }\n                    parse::Remark::Analysis(remark) => {\n                        let AnalysisRemark {\n                            pass,\n                            name,\n                            debug_loc,\n                            function,\n                            args,\n                            hotness,\n                        } = remark;\n\n                        // Only look at loop vectorize analysis for now to find out possible reasons why loops didn't vectorize\n                        if pass != \"loop-vectorize\" {\n                            continue;\n                        }\n\n                        if let Some(location) = debug_loc {\n                            if !options.external {\n                                if location.file.starts_with('/') {\n                                    continue;\n                                }\n                                if !options.source_dir.join(location.file.as_ref()).is_file() {\n                                    continue;\n                                }\n                            }\n\n                            if options\n                                .filter_kind\n                                .iter()\n                                .any(|filter| filter == name.as_ref())\n                            {\n                                continue;\n                            }\n\n                            let remark = Remark {\n                                pass: pass.to_string(),\n                                name: name.to_string(),\n                                function: Function {\n                                    name: demangle(&function),\n                                    location: Some(parse_debug_loc(options, location)),\n                                },\n                                message: construct_message(options, args),\n                                hotness,\n                            };\n                            analysis_remarks.push(remark);\n                        }\n                    }\n\n                    parse::Remark::Passed {} => {}\n                }\n            }\n            Err(error) => {\n                log::debug!(\"Error while deserializing remark: {error:?}\");\n            }\n        }\n    }\n\n    remarks = append_vectorization_analysis_to_remarks(remarks, analysis_remarks);\n    remarks\n}\n\nfn append_vectorization_analysis_to_remarks(\n    remarks: Vec<Remark>,\n    analysis: Vec<Remark>,\n) -> Vec<Remark> {\n    // gets the reason why loop wasn't vectorized from analysis remarks,\n    // then appends the analysis remarks to the missed vectorization remark\n    // this does edit the original remark\n    let mut remark_vec: Vec<Remark> = remarks.into_iter().collect();\n\n    // get missed loop vectorizations\n    let missed_vectorization = remark_vec.iter_mut().filter(|remark| {\n        remark.pass == \"loop-vectorize\"\n            && remark.message.first()\n                == Some(&MessagePart::String(\"loop not vectorized\".to_string()))\n    });\n\n    for missed_remark in missed_vectorization {\n        // Find analysis that points to the same function and location as the missed remark\n        // then collect the analysis reasons for the vectorization failure\n        let mut vectorize_miss_reasons: Vec<&str> = analysis\n            .iter()\n            .filter_map(|remark| {\n                // todo: if-let chain if in Rust 2024\n                if remark.function.location == missed_remark.function.location {\n                    if let Some(MessagePart::String(str)) = &remark.message.first() {\n                        // returns None if the string doesn't have the wanted prefix\n                        str.strip_prefix(\"loop not vectorized: \")\n                    } else {\n                        None\n                    }\n                } else {\n                    None\n                }\n            })\n            .collect();\n\n        vectorize_miss_reasons.sort(); // sort for consistency\n        vectorize_miss_reasons.dedup(); // dedup just in case\n\n        // append the analysis reasons to the original vectorization failure message\n        if let Some(MessagePart::String(message)) = missed_remark.message.first_mut() {\n            *message = format!(\n                \"{message}\\n\\npossible reasons:\\n{}\",\n                vectorize_miss_reasons.join(\"\\n\")\n            )\n            .to_lowercase(); // remove inconsistent capitalization\n        }\n    }\n\n    remark_vec.into_iter().collect()\n}\n\nfn construct_message(opts: &RemarkLoadOptions, arguments: Vec<RemarkArg>) -> Vec<MessagePart> {\n    let mut parts = vec![];\n    let mut buffer = String::new();\n\n    let add_annotated = |part: MessagePart, buffer: &mut String, message: &mut Vec<MessagePart>| {\n        if !buffer.is_empty() {\n            message.push(MessagePart::String(std::mem::take(buffer)));\n        }\n        message.push(part);\n    };\n    let aggregate_keys = |buffer: &mut String, map: BTreeMap<Cow<'_, str>, Value>| {\n        buffer.extend(map.into_values().filter_map(|v| match v {\n            Value::Bool(value) => Some(value.to_string()),\n            Value::Number(value) => Some(value.to_string()),\n            Value::String(value) => Some(value),\n            _ => None,\n        }));\n    };\n\n    for arg in arguments {\n        match arg {\n            RemarkArg::String(inner) => buffer.push_str(&inner.string),\n            RemarkArg::Callee(RemarkArgCallee {\n                callee: function,\n                debug_loc: Some(location),\n            })\n            | RemarkArg::Caller(RemarkArgCaller {\n                caller: function,\n                debug_loc: Some(location),\n            }) => add_annotated(\n                MessagePart::AnnotatedString {\n                    message: demangle(&function),\n                    location: parse_debug_loc(opts, location),\n                },\n                &mut buffer,\n                &mut parts,\n            ),\n            RemarkArg::Callee(RemarkArgCallee {\n                callee: function,\n                debug_loc: None,\n            })\n            | RemarkArg::Caller(RemarkArgCaller {\n                caller: function,\n                debug_loc: None,\n            }) => buffer.push_str(&demangle(&function)),\n            RemarkArg::Reason(inner) => buffer.push_str(&inner.reason),\n            RemarkArg::Other(mut inner) => {\n                if let Some(location) = inner\n                    .remove(\"DebugLoc\")\n                    .and_then(|l| parse::DebugLocation::deserialize(l).ok())\n                {\n                    let location = parse_debug_loc(opts, location);\n                    let mut message = String::new();\n                    aggregate_keys(&mut message, inner);\n                    add_annotated(\n                        MessagePart::AnnotatedString { message, location },\n                        &mut buffer,\n                        &mut parts,\n                    );\n                } else {\n                    aggregate_keys(&mut buffer, inner);\n                }\n            }\n        };\n    }\n\n    if !buffer.is_empty() {\n        parts.push(MessagePart::String(buffer));\n    }\n\n    parts\n}\n\npub fn load_remarks_from_dir<P: AsRef<Path>>(\n    path: P,\n    options: RemarkLoadOptions,\n    callback: Option<&(dyn LoadCallback + Send + Sync)>,\n) -> anyhow::Result<Vec<Remark>> {\n    let dir = path\n        .as_ref()\n        .to_path_buf()\n        .canonicalize()\n        .with_context(|| format!(\"Cannot find remark directory {}\", path.as_ref().display()))?;\n    let files: Vec<PathBuf> = std::fs::read_dir(&dir)\n        .with_context(|| format!(\"Cannot read remark directory {}\", dir.display()))?\n        .filter_map(|entry| {\n            let entry = entry.ok()?;\n            if !entry.file_type().ok()?.is_file() {\n                return None;\n            }\n            if !entry\n                .file_name()\n                .to_str()\n                .map(|extension| extension.ends_with(EXPECTED_EXTENSION))\n                .unwrap_or(false)\n            {\n                return None;\n            }\n            Some(entry.path())\n        })\n        .collect();\n\n    log::debug!(\"Parsing {} file(s) from {}\", files.len(), dir.display());\n\n    if let Some(callback) = callback {\n        callback.start(files.len() as u64);\n    }\n\n    let remarks: Vec<(PathBuf, anyhow::Result<Vec<Remark>>)> = files\n        .into_par_iter()\n        .map(|file| {\n            let remarks = load_remarks_from_file(&file, &options);\n            if let Some(callback) = callback {\n                callback.advance();\n            }\n            (file, remarks)\n        })\n        .collect();\n\n    let remarks = remarks\n        .into_iter()\n        .filter_map(|(path, result)| match result {\n            Ok(remarks) => Some(remarks),\n            Err(error) => {\n                log::error!(\"Failed to load remarks from: {}: {error:?}\", path.display());\n                None\n            }\n        })\n        .flatten()\n        .collect();\n\n    if let Some(callback) = callback {\n        callback.finish();\n    }\n\n    Ok(remarks)\n}\n\nfn parse_debug_loc(options: &RemarkLoadOptions, location: parse::DebugLocation) -> Location {\n    let file = normalize_path(options, location.file);\n\n    Location {\n        file,\n        line: location.line,\n        column: location.column,\n    }\n}\n\nfn normalize_path(options: &RemarkLoadOptions, path: Cow<str>) -> String {\n    const RUSTC_PREFIX: &str = \"/rustc/\";\n\n    if let Some(ref rustc_source_root) = options.rustc_source_root {\n        if let Some(path) = path.strip_prefix(RUSTC_PREFIX) {\n            if let Some(index) = path.find('/') {\n                let src_path = &path[index + 1..];\n                let src_path = rustc_source_root.0.join(src_path);\n                return src_path.to_str().unwrap().to_string().replace('\\\\', \"/\");\n            }\n        }\n    }\n    path.into_owned()\n}\n\nstatic HASH_REGEX: OnceLock<Regex> = OnceLock::new();\n\nfn demangle(function: &str) -> String {\n    // Remove hash from the end of legacy dmangled named\n    let regex = HASH_REGEX.get_or_init(|| {\n        Regex::new(r\".*::[a-z0-9]{17}$\").expect(\"Could not create regular expression\")\n    });\n    let mut demangled = rustc_demangle::demangle(function).to_string();\n    if regex.find(&demangled).is_some() {\n        demangled.drain(demangled.len() - 19..);\n    }\n    demangled\n}\n\n#[cfg(test)]\nmod tests {\n    use crate::remark::{parse_remarks, Remark, RemarkLoadOptions};\n    use crate::RustcSourceRoot;\n    use std::path::PathBuf;\n\n    struct Options {\n        external: bool,\n        filter_kind: Vec<String>,\n        source_dir: PathBuf,\n        rustc_source_root: Option<PathBuf>,\n    }\n\n    impl Options {\n        fn filter(mut self, kind: &str) -> Self {\n            self.filter_kind.push(kind.to_string());\n            self\n        }\n\n        fn rustc_source_root(mut self, path: &str) -> Self {\n            self.rustc_source_root = Some(PathBuf::from(path));\n            self\n        }\n\n        fn external(mut self, external: bool) -> Self {\n            self.external = external;\n            self\n        }\n    }\n\n    impl Default for Options {\n        fn default() -> Self {\n            Self {\n                external: true,\n                filter_kind: vec![],\n                source_dir: PathBuf::from(\"/tmp\"),\n                rustc_source_root: None,\n            }\n        }\n    }\n\n    impl From<Options> for RemarkLoadOptions {\n        fn from(value: Options) -> Self {\n            let Options {\n                external,\n                filter_kind,\n                source_dir,\n                rustc_source_root,\n            } = value;\n            Self {\n                external,\n                source_dir,\n                filter_kind,\n                rustc_source_root: rustc_source_root.map(RustcSourceRoot),\n            }\n        }\n    }\n\n    #[test]\n    fn parse_single() {\n        let input = r#\"--- !Missed\nPass:            sdagisel\nName:            FastISelFailure\nFunction:        __rust_alloc\nDebugLoc:        { File: '/std/src/sys_common/backtrace.rs', \n                   Line: 131, Column: 0 }\nArgs:\n  - String:          FastISel missed call\n  - String:          ': '\n  - String:          '  %3 = tail call ptr @__rdl_alloc(i64 %0, i64 %1)'\n  - String:          ' (in function: __rust_alloc)'\n...\"#;\n        insta::assert_debug_snapshot!(parse(input, Options::default()), @r###\"\n        [\n            Remark {\n                pass: \"sdagisel\",\n                name: \"FastISelFailure\",\n                function: Function {\n                    name: \"__rust_alloc\",\n                    location: Some(\n                        Location {\n                            file: \"/std/src/sys_common/backtrace.rs\",\n                            line: 131,\n                            column: 0,\n                        },\n                    ),\n                },\n                message: [\n                    String(\n                        \"FastISel missed call:   %3 = tail call ptr @__rdl_alloc(i64 %0, i64 %1) (in function: __rust_alloc)\",\n                    ),\n                ],\n                hotness: None,\n            },\n        ]\n        \"###);\n    }\n\n    #[test]\n    fn parse_multiple() {\n        let input = r#\"--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/foo/rust/rust/library/std/src/rt.rs', \n                   Line: 165, Column: 17 }\nFunction:        _ZN3std2rt10lang_start17h9096f6f84fb08eb2E\nArgs:\n  - Callee:          _ZN3std2rt19lang_start_internal17had90330d479f72f8E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2rt10lang_start17h9096f6f84fb08eb2E\n    DebugLoc:        { File: '/foo/rust/rust/library/std/src/rt.rs', \n                       Line: 159, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 7, Column: 5 }\nFunction:        _ZN7remarks4main17hc92ae132ef1efa8eE\nArgs:\n  - Callee:          _ZN3std2io5stdio6_print17hdb04fec352560b87E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN7remarks4main17hc92ae132ef1efa8eE\n    DebugLoc:        { File: 'src/main.rs', Line: 6, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\"#;\n        insta::assert_debug_snapshot!(parse(input, Options::default()), @r###\"\n        [\n            Remark {\n                pass: \"inline\",\n                name: \"NoDefinition\",\n                function: Function {\n                    name: \"std::rt::lang_start\",\n                    location: Some(\n                        Location {\n                            file: \"/foo/rust/rust/library/std/src/rt.rs\",\n                            line: 165,\n                            column: 17,\n                        },\n                    ),\n                },\n                message: [\n                    String(\n                        \"std::rt::lang_start_internal will not be inlined into \",\n                    ),\n                    AnnotatedString {\n                        message: \"std::rt::lang_start\",\n                        location: Location {\n                            file: \"/foo/rust/rust/library/std/src/rt.rs\",\n                            line: 159,\n                            column: 0,\n                        },\n                    },\n                    String(\n                        \" because its definition is unavailable\",\n                    ),\n                ],\n                hotness: None,\n            },\n            Remark {\n                pass: \"inline\",\n                name: \"NoDefinition\",\n                function: Function {\n                    name: \"remarks::main\",\n                    location: Some(\n                        Location {\n                            file: \"src/main.rs\",\n                            line: 7,\n                            column: 5,\n                        },\n                    ),\n                },\n                message: [\n                    String(\n                        \"std::io::stdio::_print will not be inlined into \",\n                    ),\n                    AnnotatedString {\n                        message: \"remarks::main\",\n                        location: Location {\n                            file: \"src/main.rs\",\n                            line: 6,\n                            column: 0,\n                        },\n                    },\n                    String(\n                        \" because its definition is unavailable\",\n                    ),\n                ],\n                hotness: None,\n            },\n        ]\n        \"###);\n    }\n\n    #[test]\n    fn parse_no_location() {\n        let input = r#\"--- !Missed\nPass:            sdagisel\nName:            FastISelFailure\nFunction:        __rust_alloc\nArgs:\n  - String:          FastISel missed call\n  - String:          ': '\n  - String:          '  %3 = tail call ptr @__rdl_alloc(i64 %0, i64 %1)'\n  - String:          ' (in function: __rust_alloc)'\n...\"#;\n        insta::assert_debug_snapshot!(parse(input, Options::default()), @\"[]\");\n    }\n\n    #[test]\n    fn parse_ignored_type() {\n        let input = r#\"--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/projects/personal/rust/rust/library/std/src/sys_common/backtrace.rs', \n                   Line: 135, Column: 18 }\nFunction:        _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function6FnOnce9call_once17hde3380935eb1addfE\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\n    DebugLoc:        { File: '/projects/personal/rust/rust/library/std/src/sys_common/backtrace.rs', \n                       Line: 131, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ';'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        __rust_alloc\nArgs:\n  - Pass:            Fast Register Allocator\n  - String:          ': Function: '\n  - Function:        __rust_alloc\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '7'\n  - String:          ' to '\n  - MIInstrsAfter:   '1'\n  - String:          '; Delta: '\n  - Delta:           '-6'\n...\"#;\n        assert!(parse(input, Options::default()).is_empty());\n    }\n\n    #[test]\n    fn parse_gvn() {\n        let input = r#\"--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/projects/personal/rust/rust/library/core/src/result.rs', \n                   Line: 1948, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17ha53db71e3f649c60E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/projects/personal/rust/rust/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\"#;\n\n        assert_eq!(parse(input, Options::default()).len(), 1);\n    }\n\n    #[test]\n    fn parse_filter() {\n        let input = r#\"--- !Missed\nPass:            gvn\nName:            Foo\nDebugLoc:        { File: '/projects/personal/rust/rust/library/core/src/result.rs', \n                   Line: 1948, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17ha53db71e3f649c60E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/projects/personal/rust/rust/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\"#;\n\n        assert!(parse(input, Options::default().filter(\"Foo\")).is_empty());\n    }\n\n    #[test]\n    fn parse_hotness() {\n        let input = r#\"--- !Missed\nPass:            regalloc\nName:            LoopSpillReloadCopies\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 114, Column: 13 }\nFunction:        _ZN3std2io16append_to_string17hcf3f6e91099a64a2E\nHotness:         2\nArgs:\n  - NumReloads:      '3'\n  - String:          ' reloads '\n  - TotalReloadsCost: '4.607052e-10'\n  - String:          ' total reloads cost '\n  - NumVRCopies:     '2'\n  - String:          ' virtual registers copies '\n  - TotalCopiesCost: '5.000000e-01'\n  - String:          ' total copies cost '\n  - String:          generated in loop\n...\"#;\n\n        insta::assert_debug_snapshot!(parse(input, Options::default()), @r###\"\n        [\n            Remark {\n                pass: \"regalloc\",\n                name: \"LoopSpillReloadCopies\",\n                function: Function {\n                    name: \"std::io::append_to_string\",\n                    location: Some(\n                        Location {\n                            file: \"/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs\",\n                            line: 114,\n                            column: 13,\n                        },\n                    ),\n                },\n                message: [\n                    String(\n                        \"3 reloads 4.607052e-10 total reloads cost 2 virtual registers copies 5.000000e-01 total copies cost generated in loop\",\n                    ),\n                ],\n                hotness: Some(\n                    2,\n                ),\n            },\n        ]\n        \"###);\n    }\n\n    #[test]\n    fn parse_remap_rust_source() {\n        let input = r#\"--- !Missed\nPass:            regalloc\nName:            LoopSpillReloadCopies\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 114, Column: 13 }\nFunction:        _ZN3std2io16append_to_string17hcf3f6e91099a64a2E\nArgs:\n...\"#;\n\n        insta::assert_debug_snapshot!(parse(input, Options::default().external(true).rustc_source_root(\"/foo/bar\")), @r###\"\n        [\n            Remark {\n                pass: \"regalloc\",\n                name: \"LoopSpillReloadCopies\",\n                function: Function {\n                    name: \"std::io::append_to_string\",\n                    location: Some(\n                        Location {\n                            file: \"/foo/bar/library/std/src/io/buffered/bufreader/buffer.rs\",\n                            line: 114,\n                            column: 13,\n                        },\n                    ),\n                },\n                message: [],\n                hotness: None,\n            },\n        ]\n        \"###);\n    }\n\n    fn parse(input: &str, opts: Options) -> Vec<Remark> {\n        parse_remarks(input.as_bytes(), &opts.into())\n    }\n}\n"
  },
  {
    "path": "src/remark/parse.rs",
    "content": "use std::borrow::Cow;\nuse std::collections::BTreeMap;\n\n#[derive(serde::Deserialize, Debug)]\n#[serde(rename_all = \"PascalCase\")]\npub struct DebugLocation<'a> {\n    #[serde(borrow)]\n    pub file: Cow<'a, str>,\n    pub line: u32,\n    pub column: u32,\n}\n\n#[derive(serde::Deserialize, Debug)]\n#[serde(rename_all = \"PascalCase\")]\npub struct RemarkArgString<'a> {\n    #[serde(borrow)]\n    pub string: Cow<'a, str>,\n}\n\n#[derive(serde::Deserialize, Debug)]\n#[serde(rename_all = \"PascalCase\")]\npub struct RemarkArgCallee<'a> {\n    #[serde(borrow)]\n    pub callee: Cow<'a, str>,\n    pub debug_loc: Option<DebugLocation<'a>>,\n}\n\n#[derive(serde::Deserialize, Debug)]\n#[serde(rename_all = \"PascalCase\")]\npub struct RemarkArgCaller<'a> {\n    #[serde(borrow)]\n    pub caller: Cow<'a, str>,\n    pub debug_loc: Option<DebugLocation<'a>>,\n}\n\n#[derive(serde::Deserialize, Debug)]\n#[serde(rename_all = \"PascalCase\")]\npub struct RemarkArgReason<'a> {\n    #[serde(borrow)]\n    pub reason: Cow<'a, str>,\n}\n\n#[derive(serde::Deserialize, Debug)]\n#[serde(untagged)]\npub enum RemarkArg<'a> {\n    String(RemarkArgString<'a>),\n    Callee(RemarkArgCallee<'a>),\n    Caller(RemarkArgCaller<'a>),\n    Reason(RemarkArgReason<'a>),\n    #[serde(borrow)]\n    Other(BTreeMap<Cow<'a, str>, serde_yaml::Value>),\n}\n\n#[derive(serde::Deserialize, Debug)]\n#[serde(rename_all = \"PascalCase\")]\npub struct MissedRemark<'a> {\n    #[serde(borrow)]\n    pub pass: Cow<'a, str>,\n    #[serde(borrow)]\n    pub name: Cow<'a, str>,\n    pub debug_loc: Option<DebugLocation<'a>>,\n    #[serde(borrow)]\n    pub function: Cow<'a, str>,\n    pub args: Vec<RemarkArg<'a>>,\n    pub hotness: Option<i32>,\n}\n\n#[derive(serde::Deserialize, Debug)]\n#[serde(rename_all = \"PascalCase\")]\npub struct AnalysisRemark<'a> {\n    #[serde(borrow)]\n    pub pass: Cow<'a, str>,\n    #[serde(borrow)]\n    pub name: Cow<'a, str>,\n    pub debug_loc: Option<DebugLocation<'a>>,\n    #[serde(borrow)]\n    pub function: Cow<'a, str>,\n    pub args: Vec<RemarkArg<'a>>,\n    pub hotness: Option<i32>,\n}\n\n#[derive(serde::Deserialize, Debug)]\npub enum Remark<'a> {\n    #[serde(borrow)]\n    Missed(MissedRemark<'a>),\n    Analysis(AnalysisRemark<'a>),\n    Passed {},\n}\n"
  },
  {
    "path": "src/render.rs",
    "content": "use std::borrow::Cow;\nuse std::fmt::Write;\nuse std::fs::File;\nuse std::io::BufWriter;\nuse std::path::{Component, Path, Prefix, MAIN_SEPARATOR};\n\nuse anyhow::Context;\nuse askama::Template;\nuse html_escape::{encode_safe, encode_safe_to_string};\nuse rayon::iter::IntoParallelIterator;\nuse rayon::prelude::*;\nuse rust_embed::RustEmbed;\n\nuse crate::remark::{Function, Line, Location, MessagePart, Remark};\nuse crate::utils::callback::LoadCallback;\nuse crate::utils::data_structures::Map;\n\npub const INDEX_FILE_PATH: &str = \"index.html\";\nconst REMARK_LIST_FILE_PATH: &str = \"remarks.html\";\n\n/// Directory where sources will be stored.\n/// Relative to the output directory.\nconst SRC_DIR_NAME: &str = \"src\";\n\n#[derive(RustEmbed)]\n#[folder = \"templates/assets\"]\nstruct StaticAssets;\n\n#[derive(serde::Serialize)]\nstruct RemarkIndexEntry<'a> {\n    name: &'a str,\n    location: Option<String>,\n    function: Cow<'a, str>,\n    message: String,\n    hotness: Option<i32>,\n}\n\n#[derive(serde::Serialize, PartialEq, Eq, Hash)]\nstruct RemarkSourceEntry<'a> {\n    name: &'a str,\n    function: &'a str,\n    line: Line,\n    message: String,\n    hotness: Option<i32>,\n}\n\n#[derive(Template)]\n#[template(path = \"remark-list.jinja\")]\npub struct RemarkListTemplate {\n    remarks_json: String,\n}\n\n#[derive(serde::Serialize)]\nstruct SourceFileLink<'a> {\n    name: &'a str,\n    file: String,\n    remark_count: u64,\n}\n\n#[derive(Template)]\n#[template(path = \"index.jinja\")]\npub struct IndexTemplate<'a> {\n    source_links: Vec<SourceFileLink<'a>>,\n}\n\n#[derive(Template)]\n#[template(path = \"source-file.jinja\")]\npub struct SourceFileTemplate<'a> {\n    path: &'a str,\n    remarks: Vec<RemarkSourceEntry<'a>>,\n    file_content: String,\n}\n\npub fn render_remarks(\n    remarks: Vec<Remark>,\n    source_dir: &Path,\n    output_dir: &Path,\n    callback: Option<&(dyn LoadCallback + Sync)>,\n) -> anyhow::Result<()> {\n    let _ = std::fs::remove_dir_all(output_dir);\n    std::fs::create_dir_all(output_dir).context(\"Cannot create output directory\")?;\n\n    // Copy all static assets to the output directory\n    for asset_path in StaticAssets::iter() {\n        let data = StaticAssets::get(&asset_path).unwrap().data;\n        let path = output_dir.join(\"assets\").join(asset_path.as_ref());\n        if let Some(parent) = path.parent() {\n            std::fs::create_dir_all(parent).context(\"Cannot create output asset directory\")?;\n        }\n        std::fs::write(path, data).context(\"Cannot copy asset file to output directory\")?;\n    }\n\n    // Filter duplicated remarks caused by inlining\n    // When the compiler performs inlining, it can attribute multiple remarks with the same contents\n    // to the same *location*, which only differ by the function (name) that they refer to.\n    // This is usually just noise in the UI. So before outputting the remarks, we normalize them by\n    // removing such duplicates.\n\n    // Use references to original remarks to avoid allocations\n    // We sort the remarks and then dedup consecutive entries that have everything except the\n    // function name the same.\n    struct NormalizedRemark<'a>(&'a Remark);\n\n    impl NormalizedRemark<'_> {\n        // Used for filtering duplicated remarks caused by function.name being inconsistent from inlining\n        // excludes function.name from consideration\n        fn dedup_key(&self) -> (&str, &str, &[MessagePart], Option<&i32>, Option<&Location>) {\n            let Remark {\n                pass,\n                name,\n                function:\n                    Function {\n                        name: _,\n                        location: function_location,\n                    },\n                message,\n                hotness,\n            } = self.0;\n\n            (\n                pass,\n                name,\n                message,\n                hotness.as_ref(),\n                function_location.as_ref(),\n            )\n        }\n    }\n\n    let mut remarks: Vec<NormalizedRemark> = remarks.par_iter().map(NormalizedRemark).collect();\n    remarks.par_sort_by(|a, b| (a.dedup_key()).cmp(&(b.dedup_key())));\n    remarks.dedup_by(|a, b| a.dedup_key() == b.dedup_key());\n\n    let mut file_to_remarks: Map<&str, Vec<RemarkSourceEntry>> = Map::default();\n\n    // Create remark list page\n    let remark_entries = remarks\n        .iter()\n        .map(|r| {\n            let NormalizedRemark(Remark {\n                pass: _,\n                name,\n                function,\n                message,\n                hotness,\n            }) = r;\n\n            let entry = RemarkIndexEntry {\n                name,\n                location: function.location.as_ref().map(|location| {\n                    let mut buffer = String::new();\n                    render_remark_link(&mut buffer, location, Some(SRC_DIR_NAME), None);\n                    buffer\n                }),\n                function: encode_safe(&function.name),\n                message: format_message(message, Some(SRC_DIR_NAME)),\n                hotness: *hotness,\n            };\n            if let Some(ref location) = function.location {\n                file_to_remarks\n                    .entry(&location.file)\n                    .or_default()\n                    .push(RemarkSourceEntry {\n                        name,\n                        function: &function.name,\n                        line: location.line,\n                        // Inside the file, the link should be relative to the src directory\n                        message: format_message(message, None),\n                        hotness: *hotness,\n                    });\n            }\n            // We also need to create file mappings for all referenced files, not just for files\n            // with a remark.\n            for msg_part in &r.0.message {\n                if let MessagePart::AnnotatedString { location, .. } = msg_part {\n                    file_to_remarks.entry(&location.file).or_default();\n                }\n            }\n            entry\n        })\n        .collect::<Vec<_>>();\n\n    let serialized_remarks = serde_json::to_string(&remark_entries)?;\n    let remark_list_page = RemarkListTemplate {\n        remarks_json: serialized_remarks,\n    };\n    render_to_file(&remark_list_page, &output_dir.join(REMARK_LIST_FILE_PATH))?;\n\n    let mut source_links: Vec<SourceFileLink> = file_to_remarks\n        .iter()\n        .filter(|(_, remarks)| !remarks.is_empty())\n        .map(|(name, remarks)| {\n            let mut file = String::new();\n            path_to_relative_url(&mut file, Some(SRC_DIR_NAME), name);\n            SourceFileLink {\n                name,\n                file,\n                remark_count: remarks.len() as u64,\n            }\n        })\n        .collect();\n\n    // Sort by relative files first, then in descending order by remark count\n    source_links.par_sort_by_key(|link| (link.name.starts_with('/'), -(link.remark_count as i64)));\n\n    let index_page = IndexTemplate { source_links };\n    render_to_file(&index_page, &output_dir.join(INDEX_FILE_PATH))?;\n\n    if let Some(callback) = callback {\n        callback.start(file_to_remarks.len() as u64);\n    }\n\n    // sort the order of remarks in each file to make them more readable\n    for file in file_to_remarks.iter_mut() {\n        file.1.par_sort_by_key(|f| f.message.clone());\n    }\n\n    // Render all found source files\n    let results = file_to_remarks\n        .into_par_iter()\n        .map(|(source_file, remarks)| -> anyhow::Result<()> {\n            let original_path = resolve_path(source_dir, Path::new(source_file));\n            let file_content = std::fs::read_to_string(&original_path)\n                .with_context(|| format!(\"Cannot read source file {}\", original_path.display()))?;\n\n            if let Some(callback) = callback {\n                callback.advance();\n            }\n\n            // TODO: deduplicate links to \"self\" (the same source file)\n            let mut buffer = String::new();\n            path_to_relative_url(&mut buffer, Some(SRC_DIR_NAME), source_file);\n            let output_path = output_dir.join(buffer);\n            let source_file_page = SourceFileTemplate {\n                path: source_file,\n                remarks,\n                file_content,\n            };\n            render_to_file(&source_file_page, Path::new(&output_path))\n                .with_context(|| anyhow::anyhow!(\"Failed to render {source_file}\"))?;\n            Ok(())\n        })\n        .collect::<Vec<anyhow::Result<()>>>();\n\n    let failed = results.into_iter().filter(|r| r.is_err()).count();\n    if failed > 0 {\n        log::warn!(\"Failed to write {failed} source file(s)\");\n    }\n\n    if let Some(callback) = callback {\n        callback.finish();\n    }\n\n    Ok(())\n}\n\nfn format_message(parts: &[MessagePart], prefix: Option<&str>) -> String {\n    let mut buffer = String::with_capacity(64);\n    for part in parts {\n        match part {\n            MessagePart::String(string) => {\n                encode_safe_to_string(string, &mut buffer);\n            }\n            MessagePart::AnnotatedString { message, location } => {\n                render_remark_link(&mut buffer, location, prefix, Some(message));\n            }\n        }\n    }\n    buffer = buffer.replace(\"\\n\", \"<br>\"); // keep new lines in the string\n    buffer\n}\n\nfn render_remark_link(\n    buffer: &mut String,\n    location: &Location,\n    prefix: Option<&str>,\n    label: Option<&str>,\n) {\n    buffer.push_str(\"<a href='\");\n    path_to_relative_url(buffer, prefix, &location.file);\n    buffer.push_str(\"#L\");\n    buffer.write_fmt(format_args!(\"{}\", location.line)).unwrap();\n    buffer.push_str(\"'>\");\n\n    let label = label.map(Cow::from).unwrap_or_else(|| {\n        format!(\"{}:{}:{}\", location.file, location.line, location.column).into()\n    });\n    encode_safe_to_string(label, buffer);\n\n    buffer.push_str(\"</a>\");\n}\n\n/// Transforms `path` into a (hopefully unique) relative path that is normalized.\n/// Slashes and path prefixes (e.g. C:) are removed from the paths and replaced with placeholders.\nfn path_to_relative_url(buffer: &mut String, prefix: Option<&str>, path: &str) {\n    if let Some(prefix) = prefix {\n        buffer.push_str(prefix);\n        buffer.push(MAIN_SEPARATOR);\n    }\n\n    let path = Path::new(path);\n    let mut first = true;\n    for component in path.components() {\n        if !first {\n            buffer.push('_');\n        }\n        first = false;\n\n        match component {\n            Component::Prefix(prefix) => {\n                match prefix.kind() {\n                    Prefix::Disk(disk) => buffer.push(disk as char),\n                    _ => buffer.push_str(\"_prefix_\"),\n                };\n                first = true;\n            }\n            Component::CurDir | Component::ParentDir => buffer.push('_'),\n            Component::Normal(component) => {\n                buffer.push_str(&component.to_string_lossy());\n            }\n            Component::RootDir => {}\n        }\n    }\n    buffer.push_str(\".html\");\n}\n\nfn resolve_path<'a>(root_dir: &Path, path: &'a Path) -> Cow<'a, Path> {\n    if path.is_absolute() {\n        path.into()\n    } else {\n        root_dir.join(path).into()\n    }\n}\n\nfn render_to_file<T: askama::Template>(template: &T, path: &Path) -> anyhow::Result<()> {\n    if let Some(parent) = path.parent() {\n        std::fs::create_dir_all(parent)\n            .context(\"Cannot create directory for storing rendered file\")?;\n    }\n\n    let file = File::create(path)\n        .with_context(|| format!(\"Cannot create template file {}\", path.display()))?;\n    let mut writer = BufWriter::new(file);\n    template\n        .write_into(&mut writer)\n        .with_context(|| format!(\"Cannot render template into {}\", path.display()))?;\n    Ok(())\n}\n\n#[cfg(test)]\nmod tests {\n    use crate::render::path_to_relative_url;\n\n    #[cfg(windows)]\n    #[test]\n    fn relative_path_c_prefix() {\n        check_path(r#\"C:\\foo\\bar\"#, \"C_foo_bar.html\");\n    }\n\n    #[test]\n    fn relative_path_absolute() {\n        check_path(\"/tmp/foo/bar\", \"_tmp_foo_bar.html\");\n    }\n\n    #[test]\n    fn relative_path_relative() {\n        check_path(\"foo/bar\", \"foo_bar.html\");\n    }\n\n    fn check_path(path: &str, expected: &str) {\n        let mut buffer = String::new();\n        path_to_relative_url(&mut buffer, None, path);\n        assert_eq!(buffer, expected);\n    }\n}\n"
  },
  {
    "path": "src/utils/callback.rs",
    "content": "use indicatif::ProgressBar;\n\npub trait LoadCallback {\n    fn start(&self, count: u64);\n    fn advance(&self);\n    fn finish(&self);\n}\n\npub struct ProgressBarCallback {\n    pbar: ProgressBar,\n}\n\nimpl Default for ProgressBarCallback {\n    fn default() -> Self {\n        Self {\n            pbar: ProgressBar::new(1),\n        }\n    }\n}\n\nimpl LoadCallback for ProgressBarCallback {\n    fn start(&self, count: u64) {\n        self.pbar.set_length(count);\n    }\n\n    fn advance(&self) {\n        self.pbar.inc(1);\n    }\n\n    fn finish(&self) {\n        self.pbar.finish_using_style();\n    }\n}\n"
  },
  {
    "path": "src/utils/cli.rs",
    "content": "use colored::{ColoredString, Colorize};\nuse std::path::Path;\n\n/// Formats a path in a unified format to be printed in CLI.\npub fn cli_format_path<P: AsRef<Path>>(path: P) -> ColoredString {\n    path.as_ref().display().to_string().yellow()\n}\n"
  },
  {
    "path": "src/utils/data_structures.rs",
    "content": "use fxhash::FxBuildHasher;\n\npub type Map<K, V> = hashbrown::HashMap<K, V, FxBuildHasher>;\npub type Set<V> = hashbrown::HashSet<V, FxBuildHasher>;\n"
  },
  {
    "path": "src/utils/io.rs",
    "content": "use std::path::{Path, PathBuf};\n\n/// Make sure that directory exists.\npub fn ensure_directory(path: &Path) -> std::io::Result<PathBuf> {\n    std::fs::create_dir_all(path)?;\n    Ok(path.to_path_buf())\n}\n\n/// Clears all files from the directory, and recreates it.\npub fn clear_directory(path: &Path) -> std::io::Result<PathBuf> {\n    std::fs::remove_dir_all(path)?;\n    ensure_directory(path)\n}\n"
  },
  {
    "path": "src/utils/mod.rs",
    "content": "use crate::render::INDEX_FILE_PATH;\nuse crate::utils::cli::cli_format_path;\nuse std::path::Path;\n\npub mod callback;\npub mod cli;\npub mod data_structures;\npub mod io;\npub mod timing;\n\npub fn open_result(dir: &Path, open: bool) -> anyhow::Result<()> {\n    let index_path = dir.join(INDEX_FILE_PATH);\n    if open {\n        opener::open_browser(&index_path).map_err(|error| {\n            anyhow::anyhow!(\n                \"Could not open {} in browser: {error:?}\",\n                cli_format_path(index_path)\n            )\n        })?;\n    } else {\n        log::info!(\n            \"Open {} in a browser to see the results.\",\n            cli_format_path(index_path)\n        );\n    }\n    Ok(())\n}\n"
  },
  {
    "path": "src/utils/timing.rs",
    "content": "use std::time::Instant;\n\npub fn time_block_log_debug<F: FnOnce() -> R, R>(label: &str, f: F) -> R {\n    let start = Instant::now();\n    let result = f();\n    log::debug!(\"{label} ({:.2}s)\", start.elapsed().as_secs_f32());\n    result\n}\n\npub fn time_block_log_info<F: FnOnce() -> R, R>(label: &str, f: F) -> R {\n    let start = Instant::now();\n    let result = f();\n    log::info!(\"{label} ({:.2}s)\", start.elapsed().as_secs_f32());\n    result\n}\n\npub fn time_block_print<F: FnOnce() -> R, R>(label: &str, f: F) -> R {\n    let start = Instant::now();\n    let result = f();\n    eprintln!(\"{label} finished in {:.2}s\", start.elapsed().as_secs_f32());\n    result\n}\n"
  },
  {
    "path": "templates/index.jinja",
    "content": "{% extends \"layout.html\" %}\n\n{% block title %}File list{% endblock %}\n\n{% block content %}\n{% include \"menu.html\" %}\n<div>\n    <ul>\n    {% for link in source_links %}\n      <li><a href=\"{{ link.file }}\">{{ link.name }}</a> ({{ link.remark_count }} remark{% if link.remark_count != 1 %}s{% endif %})</li>\n    {% endfor %}\n    </ul>\n</div>\n\n{% endblock %}\n"
  },
  {
    "path": "templates/layout.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <title>{% block title %}{% endblock %}</title>\n    {% block head %}{% endblock %}\n</head>\n<body>\n<div>\n    {% block content %}{% endblock %}\n</div>\n{% block script %}{% endblock %}\n</body>\n</html>\n"
  },
  {
    "path": "templates/menu.html",
    "content": "<nav style=\"margin-bottom: 10px;\">\n    <a href=\"index.html\">File list</a>\n    <a href=\"remarks.html\">Remark list</a>\n</nav>\n"
  },
  {
    "path": "templates/remark-list.jinja",
    "content": "{% extends \"layout.html\" %}\n\n{% block title %}Remark list{% endblock %}\n\n{% block head %}\n{% call super() %}\n<link rel=\"stylesheet\" type=\"text/css\" href=\"assets/css/jquery.dataTables.min.css\" />\n<script src=\"assets/js/jquery-3.5.1.min.js\"></script>\n<script src=\"assets/js/jquery.dataTables.min.js\"></script>\n<script src=\"assets/js/colResizable-1.6.min.js\"></script>\n{% endblock %}\n\n{% block content %}\n{% include \"menu.html\" %}\n<div>\n    <table id=\"remark-table\" width=\"100%\"></table>\n</div>\n\n{% endblock %}\n\n{% block script %}\n<script type=\"text/javascript\">\n    const remarks = {{ remarks_json|safe }};\n    $(document).ready(function() {\n        $(\"#remark-table\").DataTable({\n            data: remarks,\n            lengthMenu: [[100, 500, -1], [100, 500, \"All\"]],\n            autoWidth: false,\n            columns: [\n                {title: \"Kind\", data: \"name\", width: \"10%\"},\n                {title: \"Location\", data: \"location\", width: \"25%\"},\n                {title: \"Function\", data: \"function\", width: \"20%\"},\n                {title: \"<span title='Hotness is only available when you use PGO'>Hotness</span>\", data: \"hotness\", width: \"5%\"},\n                {title: \"Message\", data: \"message\", width: \"35%\"},\n            ],\n            order: [[3, \"desc\"], [0, \"asc\"]]\n        });\n        $(\"#remark-table\").colResizable();\n    });\n</script>\n{% endblock %}\n"
  },
  {
    "path": "templates/source-file.jinja",
    "content": "{% extends \"layout.html\" %}\n\n{% block title %}File {{ path }}{% endblock %}\n\n{% block head %}\n{% call super() %}\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../assets/css/codemirror-5.65.13.min.css\" />\n\n<script src=\"../assets/js/jquery-3.5.1.min.js\"></script>\n<script src=\"../assets/js/codemirror-5.65.13.min.js\"></script>\n<script src=\"../assets/js/codemirror-5.65.13-simple.min.js\"></script>\n<script src=\"../assets/js/codemirror-5.65.13-rust.min.js\"></script>\n\n<style type=\"text/css\">\n.header {\n    margin: 10px;\n}\n.source-code {\n    width: 100%;\n    height: 100%;\n}\n.CodeMirror {\n    font-size: 14px;\n}\n.codemirror-highlighted {\n    background-color: rgba(255, 0, 0, 0.3);\n}\n.remark {\n    margin: 5px;\n    padding: 10px;\n    border: 2px solid black;\n    border-radius: 5px;\n    box-shadow: 2px 1px 0 0 black;\n    background: rgba(80, 80, 80, 0.1);\n}\n</style>\n{% endblock %}\n\n{% block content %}\n<div>\n    <div style=\"display: flex; margin-bottom: 10px;\">\n        <button id=\"btn-back\">← Back</button>\n        <h3 class=\"header\">{{ path }}</h3>\n    </div>\n    <textarea class=\"source-code\" id=\"content\" readonly>{{ file_content }}</textarea>\n</div>\n\n{% endblock %}\n\n{% block script %}\n<script type=\"text/javascript\">\nfunction navigateToHash() {\n    if (window.location.hash && window.location.hash.startsWith(\"#L\")) {\n        const hash = window.location.hash.substring(2);\n        let line = Number.parseInt(hash);\n        if (!Number.isNaN(line)) {\n            line = Math.max(1, Math.min(editor.lineCount(), line)) - 1;\n            const from = {line, ch: 0};\n            editor.setCursor(from);\n            editor.scrollIntoView(from);\n\n            const lineLength = editor.getLine(line).length;\n            const to = {line, ch: lineLength};\n\n            editor.doc.getAllMarks().forEach(marker => marker.clear());\n            editor.markText(from, to, {className: \"codemirror-highlighted\"});\n        }\n    }\n}\n\n$(\"#btn-back\").on(\"click\", () => {\n    window.history.back();\n});\n\nconst remarks = {{ remarks|json|safe }};\n\nconst editor = CodeMirror.fromTextArea(document.getElementById(\"content\"), {\n    lineNumbers: true,\n    mode: \"rust\",\n    readOnly: true\n});\neditor.setSize(\"100%\", \"100%\");\neditor.focus();\n\n// Sort by line and then in descending order by hotness\nremarks.sort((a, b) => {\n    if (a.line === b.line) {\n        const hotness_a = a.hotness || 0;\n        const hotness_b = b.hotness || 0;\n        return hotness_b - hotness_a;\n    } else if (a.line < b.line) {\n        return -1;\n    } else {\n        return 1;\n    }\n});\n\nfor (const remark of remarks) {\n    const element = document.createElement(\"div\");\n    let message = remark.message;\n    if (remark.hotness !== null) {\n        message += ` (hotness: ${remark.hotness})`;\n    }\n\n    element.innerHTML = message;\n    editor.addLineWidget(remark.line - 1, element, {\n        className: \"remark\"\n    });\n}\n\nwindow.addEventListener(\"hashchange\", () => {\n    navigateToHash();\n});\n\nnavigateToHash();\n\n</script>\n{% endblock %}\n"
  },
  {
    "path": "tests/data/remarks-1/37v4yjwjhlguzgkm.codegen.opt.yaml",
    "content": "--- !Missed\nPass:            sdagisel\nName:            FastISelFailure\nFunction:        __rust_alloc\nArgs:\n  - String:          FastISel missed call\n  - String:          ': '\n  - String:          '  %3 = tail call ptr @__rdl_alloc(i64 %0, i64 %1)'\n  - String:          ' (in function: __rust_alloc)'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        __rust_alloc\nArgs:\n  - Pass:            'X86 DAG->DAG Instruction Selection'\n  - String:          ': Function: '\n  - Function:        __rust_alloc\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '0'\n  - String:          ' to '\n  - MIInstrsAfter:   '7'\n  - String:          '; Delta: '\n  - Delta:           '7'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        __rust_alloc\nArgs:\n  - Pass:            Fast Register Allocator\n  - String:          ': Function: '\n  - Function:        __rust_alloc\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '7'\n  - String:          ' to '\n  - MIInstrsAfter:   '1'\n  - String:          '; Delta: '\n  - Delta:           '-6'\n...\n--- !Analysis\nPass:            prologepilog\nName:            StackSize\nFunction:        __rust_alloc\nArgs:\n  - NumStackBytes:   '0'\n  - String:          ' stack bytes in function'\n...\n--- !Analysis\nPass:            stack-frame-layout\nName:            StackLayout\nFunction:        __rust_alloc\nArgs:\n  - String:          \"\\nFunction: __rust_alloc\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionMix\nFunction:        __rust_alloc\nArgs:\n  - String:          'BasicBlock: '\n  - BasicBlock:      ''\n  - String:          \"\\n\"\n  - String:          ''\n  - String:          ': '\n  - INST_:           '1'\n  - String:          \"\\n\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionCount\nFunction:        __rust_alloc\nArgs:\n  - NumInstructions: '1'\n  - String:          ' instructions in function'\n...\n--- !Missed\nPass:            sdagisel\nName:            FastISelFailure\nFunction:        __rust_dealloc\nArgs:\n  - String:          FastISel missed call\n  - String:          ': '\n  - String:          '  tail call void @__rdl_dealloc(ptr %0, i64 %1, i64 %2)'\n  - String:          ' (in function: __rust_dealloc)'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        __rust_dealloc\nArgs:\n  - Pass:            'X86 DAG->DAG Instruction Selection'\n  - String:          ': Function: '\n  - Function:        __rust_dealloc\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '0'\n  - String:          ' to '\n  - MIInstrsAfter:   '10'\n  - String:          '; Delta: '\n  - Delta:           '10'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        __rust_dealloc\nArgs:\n  - Pass:            Fast Register Allocator\n  - String:          ': Function: '\n  - Function:        __rust_dealloc\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '10'\n  - String:          ' to '\n  - MIInstrsAfter:   '1'\n  - String:          '; Delta: '\n  - Delta:           '-9'\n...\n--- !Analysis\nPass:            prologepilog\nName:            StackSize\nFunction:        __rust_dealloc\nArgs:\n  - NumStackBytes:   '0'\n  - String:          ' stack bytes in function'\n...\n--- !Analysis\nPass:            stack-frame-layout\nName:            StackLayout\nFunction:        __rust_dealloc\nArgs:\n  - String:          \"\\nFunction: __rust_dealloc\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionMix\nFunction:        __rust_dealloc\nArgs:\n  - String:          'BasicBlock: '\n  - BasicBlock:      ''\n  - String:          \"\\n\"\n  - String:          ''\n  - String:          ': '\n  - INST_:           '1'\n  - String:          \"\\n\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionCount\nFunction:        __rust_dealloc\nArgs:\n  - NumInstructions: '1'\n  - String:          ' instructions in function'\n...\n--- !Missed\nPass:            sdagisel\nName:            FastISelFailure\nFunction:        __rust_realloc\nArgs:\n  - String:          FastISel missed call\n  - String:          ': '\n  - String:          '  %5 = tail call ptr @__rdl_realloc(ptr %0, i64 %1, i64 %2, i64 %3)'\n  - String:          ' (in function: __rust_realloc)'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        __rust_realloc\nArgs:\n  - Pass:            'X86 DAG->DAG Instruction Selection'\n  - String:          ': Function: '\n  - Function:        __rust_realloc\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '0'\n  - String:          ' to '\n  - MIInstrsAfter:   '13'\n  - String:          '; Delta: '\n  - Delta:           '13'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        __rust_realloc\nArgs:\n  - Pass:            Fast Register Allocator\n  - String:          ': Function: '\n  - Function:        __rust_realloc\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '13'\n  - String:          ' to '\n  - MIInstrsAfter:   '1'\n  - String:          '; Delta: '\n  - Delta:           '-12'\n...\n--- !Analysis\nPass:            prologepilog\nName:            StackSize\nFunction:        __rust_realloc\nArgs:\n  - NumStackBytes:   '0'\n  - String:          ' stack bytes in function'\n...\n--- !Analysis\nPass:            stack-frame-layout\nName:            StackLayout\nFunction:        __rust_realloc\nArgs:\n  - String:          \"\\nFunction: __rust_realloc\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionMix\nFunction:        __rust_realloc\nArgs:\n  - String:          'BasicBlock: '\n  - BasicBlock:      ''\n  - String:          \"\\n\"\n  - String:          ''\n  - String:          ': '\n  - INST_:           '1'\n  - String:          \"\\n\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionCount\nFunction:        __rust_realloc\nArgs:\n  - NumInstructions: '1'\n  - String:          ' instructions in function'\n...\n--- !Missed\nPass:            sdagisel\nName:            FastISelFailure\nFunction:        __rust_alloc_zeroed\nArgs:\n  - String:          FastISel missed call\n  - String:          ': '\n  - String:          '  %3 = tail call ptr @__rdl_alloc_zeroed(i64 %0, i64 %1)'\n  - String:          ' (in function: __rust_alloc_zeroed)'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        __rust_alloc_zeroed\nArgs:\n  - Pass:            'X86 DAG->DAG Instruction Selection'\n  - String:          ': Function: '\n  - Function:        __rust_alloc_zeroed\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '0'\n  - String:          ' to '\n  - MIInstrsAfter:   '7'\n  - String:          '; Delta: '\n  - Delta:           '7'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        __rust_alloc_zeroed\nArgs:\n  - Pass:            Fast Register Allocator\n  - String:          ': Function: '\n  - Function:        __rust_alloc_zeroed\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '7'\n  - String:          ' to '\n  - MIInstrsAfter:   '1'\n  - String:          '; Delta: '\n  - Delta:           '-6'\n...\n--- !Analysis\nPass:            prologepilog\nName:            StackSize\nFunction:        __rust_alloc_zeroed\nArgs:\n  - NumStackBytes:   '0'\n  - String:          ' stack bytes in function'\n...\n--- !Analysis\nPass:            stack-frame-layout\nName:            StackLayout\nFunction:        __rust_alloc_zeroed\nArgs:\n  - String:          \"\\nFunction: __rust_alloc_zeroed\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionMix\nFunction:        __rust_alloc_zeroed\nArgs:\n  - String:          'BasicBlock: '\n  - BasicBlock:      ''\n  - String:          \"\\n\"\n  - String:          ''\n  - String:          ': '\n  - INST_:           '1'\n  - String:          \"\\n\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionCount\nFunction:        __rust_alloc_zeroed\nArgs:\n  - NumInstructions: '1'\n  - String:          ' instructions in function'\n...\n--- !Missed\nPass:            sdagisel\nName:            FastISelFailure\nFunction:        __rust_alloc_error_handler\nArgs:\n  - String:          FastISel missed call\n  - String:          ': '\n  - String:          '  tail call void @__rg_oom(i64 %0, i64 %1)'\n  - String:          ' (in function: __rust_alloc_error_handler)'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        __rust_alloc_error_handler\nArgs:\n  - Pass:            'X86 DAG->DAG Instruction Selection'\n  - String:          ': Function: '\n  - Function:        __rust_alloc_error_handler\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '0'\n  - String:          ' to '\n  - MIInstrsAfter:   '7'\n  - String:          '; Delta: '\n  - Delta:           '7'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        __rust_alloc_error_handler\nArgs:\n  - Pass:            Fast Register Allocator\n  - String:          ': Function: '\n  - Function:        __rust_alloc_error_handler\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '7'\n  - String:          ' to '\n  - MIInstrsAfter:   '1'\n  - String:          '; Delta: '\n  - Delta:           '-6'\n...\n--- !Analysis\nPass:            prologepilog\nName:            StackSize\nFunction:        __rust_alloc_error_handler\nArgs:\n  - NumStackBytes:   '0'\n  - String:          ' stack bytes in function'\n...\n--- !Analysis\nPass:            stack-frame-layout\nName:            StackLayout\nFunction:        __rust_alloc_error_handler\nArgs:\n  - String:          \"\\nFunction: __rust_alloc_error_handler\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionMix\nFunction:        __rust_alloc_error_handler\nArgs:\n  - String:          'BasicBlock: '\n  - BasicBlock:      ''\n  - String:          \"\\n\"\n  - String:          ''\n  - String:          ': '\n  - INST_:           '1'\n  - String:          \"\\n\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionCount\nFunction:        __rust_alloc_error_handler\nArgs:\n  - NumInstructions: '1'\n  - String:          ' instructions in function'\n...\n"
  },
  {
    "path": "tests/data/remarks-1/37v4yjwjhlguzgkm.opt.opt.yaml",
    "content": ""
  },
  {
    "path": "tests/data/remarks-1/remarks.67ea4a01cbc73fb0-cgu.0.codegen.opt.yaml",
    "content": "--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', \n                   Line: 131, Column: 0 }\nFunction:        _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\nArgs:\n  - Pass:            'X86 DAG->DAG Instruction Selection'\n  - String:          ': Function: '\n  - Function:        _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '0'\n  - String:          ' to '\n  - MIInstrsAfter:   '6'\n  - String:          '; Delta: '\n  - Delta:           '6'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', \n                   Line: 131, Column: 0 }\nFunction:        _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\nArgs:\n  - Pass:            Virtual Register Rewriter\n  - String:          ': Function: '\n  - Function:        _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '6'\n  - String:          ' to '\n  - MIInstrsAfter:   '5'\n  - String:          '; Delta: '\n  - Delta:           '-1'\n...\n--- !Analysis\nPass:            prologepilog\nName:            StackSize\nDebugLoc:        { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', \n                   Line: 131, Column: 0 }\nFunction:        _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\nArgs:\n  - NumStackBytes:   '8'\n  - String:          ' stack bytes in function'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', \n                   Line: 131, Column: 0 }\nFunction:        _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\nArgs:\n  - Pass:            'Prologue/Epilogue Insertion & Frame Finalization'\n  - String:          ': Function: '\n  - Function:        _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '5'\n  - String:          ' to '\n  - MIInstrsAfter:   '7'\n  - String:          '; Delta: '\n  - Delta:           '2'\n...\n--- !Analysis\nPass:            stack-frame-layout\nName:            StackLayout\nDebugLoc:        { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', \n                   Line: 131, Column: 0 }\nFunction:        _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\nArgs:\n  - String:          \"\\nFunction: _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionMix\nFunction:        _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\nArgs:\n  - String:          'BasicBlock: '\n  - BasicBlock:      ''\n  - String:          \"\\n\"\n  - String:          ''\n  - String:          ': '\n  - INST_:           '4'\n  - String:          \"\\n\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionCount\nDebugLoc:        { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', \n                   Line: 131, Column: 0 }\nFunction:        _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\nArgs:\n  - NumInstructions: '5'\n  - String:          ' instructions in function'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                   Line: 166, Column: 0 }\nFunction:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\nArgs:\n  - Pass:            'X86 DAG->DAG Instruction Selection'\n  - String:          ': Function: '\n  - Function:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '0'\n  - String:          ' to '\n  - MIInstrsAfter:   '9'\n  - String:          '; Delta: '\n  - Delta:           '9'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                   Line: 166, Column: 0 }\nFunction:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\nArgs:\n  - Pass:            Simple Register Coalescing\n  - String:          ': Function: '\n  - Function:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '9'\n  - String:          ' to '\n  - MIInstrsAfter:   '8'\n  - String:          '; Delta: '\n  - Delta:           '-1'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                   Line: 166, Column: 0 }\nFunction:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\nArgs:\n  - Pass:            Virtual Register Rewriter\n  - String:          ': Function: '\n  - Function:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '8'\n  - String:          ' to '\n  - MIInstrsAfter:   '6'\n  - String:          '; Delta: '\n  - Delta:           '-2'\n...\n--- !Analysis\nPass:            prologepilog\nName:            StackSize\nDebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                   Line: 166, Column: 0 }\nFunction:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\nArgs:\n  - NumStackBytes:   '8'\n  - String:          ' stack bytes in function'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                   Line: 166, Column: 0 }\nFunction:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\nArgs:\n  - Pass:            'Prologue/Epilogue Insertion & Frame Finalization'\n  - String:          ': Function: '\n  - Function:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '6'\n  - String:          ' to '\n  - MIInstrsAfter:   '8'\n  - String:          '; Delta: '\n  - Delta:           '2'\n...\n--- !Analysis\nPass:            stack-frame-layout\nName:            StackLayout\nDebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                   Line: 166, Column: 0 }\nFunction:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\nArgs:\n  - String:          \"\\nFunction: _ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionMix\nFunction:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\nArgs:\n  - String:          'BasicBlock: '\n  - BasicBlock:      ''\n  - String:          \"\\n\"\n  - String:          ''\n  - String:          ': '\n  - INST_:           '6'\n  - String:          \"\\n\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionCount\nDebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                   Line: 166, Column: 0 }\nFunction:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\nArgs:\n  - NumInstructions: '6'\n  - String:          ' instructions in function'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: '/foo/rust/library/core/src/ops/function.rs', \n                   Line: 250, Column: 0 }\nFunction:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\nArgs:\n  - Pass:            'X86 DAG->DAG Instruction Selection'\n  - String:          ': Function: '\n  - Function:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '0'\n  - String:          ' to '\n  - MIInstrsAfter:   '9'\n  - String:          '; Delta: '\n  - Delta:           '9'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: '/foo/rust/library/core/src/ops/function.rs', \n                   Line: 250, Column: 0 }\nFunction:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\nArgs:\n  - Pass:            Simple Register Coalescing\n  - String:          ': Function: '\n  - Function:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '9'\n  - String:          ' to '\n  - MIInstrsAfter:   '8'\n  - String:          '; Delta: '\n  - Delta:           '-1'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: '/foo/rust/library/core/src/ops/function.rs', \n                   Line: 250, Column: 0 }\nFunction:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\nArgs:\n  - Pass:            Virtual Register Rewriter\n  - String:          ': Function: '\n  - Function:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '8'\n  - String:          ' to '\n  - MIInstrsAfter:   '6'\n  - String:          '; Delta: '\n  - Delta:           '-2'\n...\n--- !Analysis\nPass:            prologepilog\nName:            StackSize\nDebugLoc:        { File: '/foo/rust/library/core/src/ops/function.rs', \n                   Line: 250, Column: 0 }\nFunction:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\nArgs:\n  - NumStackBytes:   '8'\n  - String:          ' stack bytes in function'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: '/foo/rust/library/core/src/ops/function.rs', \n                   Line: 250, Column: 0 }\nFunction:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\nArgs:\n  - Pass:            'Prologue/Epilogue Insertion & Frame Finalization'\n  - String:          ': Function: '\n  - Function:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '6'\n  - String:          ' to '\n  - MIInstrsAfter:   '8'\n  - String:          '; Delta: '\n  - Delta:           '2'\n...\n--- !Analysis\nPass:            stack-frame-layout\nName:            StackLayout\nDebugLoc:        { File: '/foo/rust/library/core/src/ops/function.rs', \n                   Line: 250, Column: 0 }\nFunction:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\nArgs:\n  - String:          \"\\nFunction: _ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionMix\nFunction:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\nArgs:\n  - String:          'BasicBlock: '\n  - BasicBlock:      ''\n  - String:          \"\\n\"\n  - String:          ''\n  - String:          ': '\n  - INST_:           '6'\n  - String:          \"\\n\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionCount\nDebugLoc:        { File: '/foo/rust/library/core/src/ops/function.rs', \n                   Line: 250, Column: 0 }\nFunction:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\nArgs:\n  - NumInstructions: '6'\n  - String:          ' instructions in function'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: '/foo/rust/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 0 }\nFunction:        '_ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE'\nArgs:\n  - Pass:            'X86 DAG->DAG Instruction Selection'\n  - String:          ': Function: '\n  - Function:        '_ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE'\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '0'\n  - String:          ' to '\n  - MIInstrsAfter:   '1'\n  - String:          '; Delta: '\n  - Delta:           '1'\n...\n--- !Analysis\nPass:            prologepilog\nName:            StackSize\nDebugLoc:        { File: '/foo/rust/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 0 }\nFunction:        '_ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE'\nArgs:\n  - NumStackBytes:   '0'\n  - String:          ' stack bytes in function'\n...\n--- !Analysis\nPass:            stack-frame-layout\nName:            StackLayout\nDebugLoc:        { File: '/foo/rust/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 0 }\nFunction:        '_ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE'\nArgs:\n  - String:          \"\\nFunction: _ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionMix\nDebugLoc:        { File: '/foo/rust/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE'\nArgs:\n  - String:          'BasicBlock: '\n  - BasicBlock:      ''\n  - String:          \"\\n\"\n  - String:          ''\n  - String:          ': '\n  - INST_:           '1'\n  - String:          \"\\n\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionCount\nDebugLoc:        { File: '/foo/rust/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 0 }\nFunction:        '_ZN4core3ptr85drop_in_place$LT$std..rt..lang_start$LT$$LP$$RP$$GT$..$u7b$$u7b$closure$u7d$$u7d$$GT$17hffcc5d4d05ada4bbE'\nArgs:\n  - NumInstructions: '1'\n  - String:          ' instructions in function'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: 'src/main.rs', Line: 6, Column: 0 }\nFunction:        _ZN7remarks4main17hc92ae132ef1efa8eE\nArgs:\n  - Pass:            'X86 DAG->DAG Instruction Selection'\n  - String:          ': Function: '\n  - Function:        _ZN7remarks4main17hc92ae132ef1efa8eE\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '0'\n  - String:          ' to '\n  - MIInstrsAfter:   '15'\n  - String:          '; Delta: '\n  - Delta:           '15'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: 'src/main.rs', Line: 6, Column: 0 }\nFunction:        _ZN7remarks4main17hc92ae132ef1efa8eE\nArgs:\n  - Pass:            Merge disjoint stack slots\n  - String:          ': Function: '\n  - Function:        _ZN7remarks4main17hc92ae132ef1efa8eE\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '15'\n  - String:          ' to '\n  - MIInstrsAfter:   '13'\n  - String:          '; Delta: '\n  - Delta:           '-2'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: 'src/main.rs', Line: 6, Column: 0 }\nFunction:        _ZN7remarks4main17hc92ae132ef1efa8eE\nArgs:\n  - Pass:            Virtual Register Rewriter\n  - String:          ': Function: '\n  - Function:        _ZN7remarks4main17hc92ae132ef1efa8eE\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '13'\n  - String:          ' to '\n  - MIInstrsAfter:   '12'\n  - String:          '; Delta: '\n  - Delta:           '-1'\n...\n--- !Analysis\nPass:            prologepilog\nName:            StackSize\nDebugLoc:        { File: 'src/main.rs', Line: 6, Column: 0 }\nFunction:        _ZN7remarks4main17hc92ae132ef1efa8eE\nArgs:\n  - NumStackBytes:   '56'\n  - String:          ' stack bytes in function'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nDebugLoc:        { File: 'src/main.rs', Line: 6, Column: 0 }\nFunction:        _ZN7remarks4main17hc92ae132ef1efa8eE\nArgs:\n  - Pass:            'Prologue/Epilogue Insertion & Frame Finalization'\n  - String:          ': Function: '\n  - Function:        _ZN7remarks4main17hc92ae132ef1efa8eE\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '12'\n  - String:          ' to '\n  - MIInstrsAfter:   '14'\n  - String:          '; Delta: '\n  - Delta:           '2'\n...\n--- !Analysis\nPass:            stack-frame-layout\nName:            StackLayout\nDebugLoc:        { File: 'src/main.rs', Line: 6, Column: 0 }\nFunction:        _ZN7remarks4main17hc92ae132ef1efa8eE\nArgs:\n  - String:          \"\\nFunction: _ZN7remarks4main17hc92ae132ef1efa8eE\"\n  - String:          \"\\nOffset: [SP\"\n  - Offset:          '-48'\n  - String:          '], Type: '\n  - Type:            Variable\n  - String:          ', Align: '\n  - Align:           '8'\n  - String:          ', Size: '\n  - Size:            '48'\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionMix\nFunction:        _ZN7remarks4main17hc92ae132ef1efa8eE\nArgs:\n  - String:          'BasicBlock: '\n  - BasicBlock:      ''\n  - String:          \"\\n\"\n  - String:          ''\n  - String:          ': '\n  - INST_:           '12'\n  - String:          \"\\n\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionCount\nDebugLoc:        { File: 'src/main.rs', Line: 6, Column: 0 }\nFunction:        _ZN7remarks4main17hc92ae132ef1efa8eE\nArgs:\n  - NumInstructions: '12'\n  - String:          ' instructions in function'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        main\nArgs:\n  - Pass:            'X86 DAG->DAG Instruction Selection'\n  - String:          ': Function: '\n  - Function:        main\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '0'\n  - String:          ' to '\n  - MIInstrsAfter:   '23'\n  - String:          '; Delta: '\n  - Delta:           '23'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        main\nArgs:\n  - Pass:            Merge disjoint stack slots\n  - String:          ': Function: '\n  - Function:        main\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '23'\n  - String:          ' to '\n  - MIInstrsAfter:   '21'\n  - String:          '; Delta: '\n  - Delta:           '-2'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        main\nArgs:\n  - Pass:            Simple Register Coalescing\n  - String:          ': Function: '\n  - Function:        main\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '21'\n  - String:          ' to '\n  - MIInstrsAfter:   '19'\n  - String:          '; Delta: '\n  - Delta:           '-2'\n...\n--- !Missed\nPass:            regalloc\nName:            SpillReloadCopies\nFunction:        main\nArgs:\n  - NumVRCopies:     '1'\n  - String:          ' virtual registers copies '\n  - TotalCopiesCost: '1.000000e+00'\n  - String:          ' total copies cost '\n  - String:          generated in function\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        main\nArgs:\n  - Pass:            Virtual Register Rewriter\n  - String:          ': Function: '\n  - Function:        main\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '19'\n  - String:          ' to '\n  - MIInstrsAfter:   '13'\n  - String:          '; Delta: '\n  - Delta:           '-6'\n...\n--- !Analysis\nPass:            prologepilog\nName:            StackSize\nFunction:        main\nArgs:\n  - NumStackBytes:   '8'\n  - String:          ' stack bytes in function'\n...\n--- !Analysis\nPass:            size-info\nName:            FunctionMISizeChange\nFunction:        main\nArgs:\n  - Pass:            'Prologue/Epilogue Insertion & Frame Finalization'\n  - String:          ': Function: '\n  - Function:        main\n  - String:          ': '\n  - String:          'MI Instruction count changed from '\n  - MIInstrsBefore:  '13'\n  - String:          ' to '\n  - MIInstrsAfter:   '15'\n  - String:          '; Delta: '\n  - Delta:           '2'\n...\n--- !Analysis\nPass:            stack-frame-layout\nName:            StackLayout\nFunction:        main\nArgs:\n  - String:          \"\\nFunction: main\"\n  - String:          \"\\nOffset: [SP\"\n  - Offset:          '-8'\n  - String:          '], Type: '\n  - Type:            Variable\n  - String:          ', Align: '\n  - Align:           '8'\n  - String:          ', Size: '\n  - Size:            '8'\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionMix\nFunction:        main\nArgs:\n  - String:          'BasicBlock: '\n  - BasicBlock:      ''\n  - String:          \"\\n\"\n  - String:          ''\n  - String:          ': '\n  - INST_:           '12'\n  - String:          \"\\n\"\n...\n--- !Analysis\nPass:            asm-printer\nName:            InstructionCount\nFunction:        main\nArgs:\n  - NumInstructions: '12'\n  - String:          ' instructions in function'\n...\n"
  },
  {
    "path": "tests/data/remarks-1/remarks.67ea4a01cbc73fb0-cgu.0.opt.opt.yaml",
    "content": "--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', \n                   Line: 135, Column: 18 }\nFunction:        _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function6FnOnce9call_once17hde3380935eb1addfE\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\n    DebugLoc:        { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', \n                       Line: 131, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                   Line: 166, Column: 18 }\nFunction:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\n    DebugLoc:        { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', \n                       Line: 131, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\n    DebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                   Line: 166, Column: 18 }\nFunction:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN54_$LT$$LP$$RP$$u20$as$u20$std..process..Termination$GT$6report17hc8ee8ce6af31c006E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\n    DebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/foo/rust/library/core/src/ops/function.rs', \n                   Line: 250, Column: 5 }\nFunction:        _ZN4core3ops8function6FnOnce9call_once17h45d79837d17bfedeE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h8385278cd9457b2fE'\n    DebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3ops8function6FnOnce9call_once17h45d79837d17bfedeE\n    DebugLoc:        { File: '/foo/rust/library/core/src/ops/function.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '0'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3ops8function6FnOnce9call_once17h45d79837d17bfedeE\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                   Line: 166, Column: 18 }\nFunction:        _ZN4core3ops8function6FnOnce9call_once17h45d79837d17bfedeE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\n    DebugLoc:        { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', \n                       Line: 131, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN4core3ops8function6FnOnce9call_once17h45d79837d17bfedeE\n    DebugLoc:        { File: '/foo/rust/library/core/src/ops/function.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/foo/rust/library/core/src/ops/function.rs', \n                   Line: 250, Column: 5 }\nFunction:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function6FnOnce9call_once17h45d79837d17bfedeE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\n    DebugLoc:        { File: '/foo/rust/library/core/src/ops/function.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                   Line: 166, Column: 18 }\nFunction:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h7208ef7aa68440d8E\n    DebugLoc:        { File: '/foo/rust/library/std/src/sys_common/backtrace.rs', \n                       Line: 131, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hd822f6cb09e595dcE'\n    DebugLoc:        { File: '/foo/rust/library/core/src/ops/function.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                   Line: 165, Column: 17 }\nFunction:        _ZN3std2rt10lang_start17h9096f6f84fb08eb2E\nArgs:\n  - Callee:          _ZN3std2rt19lang_start_internal17had90330d479f72f8E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2rt10lang_start17h9096f6f84fb08eb2E\n    DebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                       Line: 159, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                   Line: 165, Column: 17 }\nFunction:        _ZN3std2rt10lang_start17h9096f6f84fb08eb2E\nArgs:\n  - Callee:          _ZN3std2rt19lang_start_internal17had90330d479f72f8E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2rt10lang_start17h9096f6f84fb08eb2E\n    DebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                       Line: 159, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 7, Column: 5 }\nFunction:        _ZN7remarks4main17hc92ae132ef1efa8eE\nArgs:\n  - Callee:          _ZN3std2io5stdio6_print17hdb04fec352560b87E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN7remarks4main17hc92ae132ef1efa8eE\n    DebugLoc:        { File: 'src/main.rs', Line: 6, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 7, Column: 5 }\nFunction:        _ZN7remarks4main17hc92ae132ef1efa8eE\nArgs:\n  - Callee:          _ZN3std2io5stdio6_print17hdb04fec352560b87E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN7remarks4main17hc92ae132ef1efa8eE\n    DebugLoc:        { File: 'src/main.rs', Line: 6, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: 'src/main.rs', Line: 8, Column: 5 }\nFunction:        _ZN7remarks4main17hc92ae132ef1efa8eE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN7remarks3foo17h78901fc1396afa9fE\n    DebugLoc:        { File: 'src/main.rs', Line: 2, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN7remarks4main17hc92ae132ef1efa8eE\n    DebugLoc:        { File: 'src/main.rs', Line: 6, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nFunction:        main\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2rt10lang_start17h9096f6f84fb08eb2E\n    DebugLoc:        { File: '/foo/rust/library/std/src/rt.rs', \n                       Line: 159, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          main\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '15'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n...\n"
  },
  {
    "path": "tests/data/remarks-similarity-join/src/common.rs",
    "content": "pub type Map<K, V> = hashbrown::HashMap<K, V, fxhash::FxBuildHasher>;\n"
  },
  {
    "path": "tests/data/remarks-similarity-join/src/main.rs",
    "content": "#![feature(core_intrinsics)]\n\nuse std::io::{BufRead, BufReader, Write};\nuse std::str::FromStr;\n\nuse crate::record::{load_relation, Relation};\nuse crate::util::ForceUnwrap;\n\nmod common;\nmod record;\nmod util;\n\n#[global_allocator]\nstatic ALLOC: mimallocator::Mimalloc = mimallocator::Mimalloc;\n\n// TODO: use aligned memory\nfn calculate_query(relation: Relation, threshold: f32) -> u64 {\n    let records = &relation.records;\n    let record_lengths = relation.record_lengths.as_slice();\n\n    records\n        .iter()\n        // .par_iter()\n        .enumerate()\n        .map(|(index, record)| {\n            let index_first = index + 1;\n            let following_record_count = relation.records.len() - index_first;\n\n            // Gather intersection counts\n            let mut intersections: Vec<u16> = vec![0; following_record_count];\n            for value in record {\n                let containing_records = &relation.index[value];\n                let start_index = containing_records.partition_point(|&i| i <= index as u32);\n\n                /*for &record_index in &containing_records[start_index..] {\n                    unsafe {\n                        let target_index = record_index as usize - index_first;\n                        *intersections.get_unchecked_mut(target_index) += 1;\n                    }\n                }*/\n\n                // Unrolled version\n                let count = containing_records.len() - start_index;\n                let unroll_count = count - (count % 8);\n\n                for record_index in (start_index..start_index + unroll_count).step_by(8) {\n                    unsafe {\n                        let index0 =\n                            *containing_records.get_unchecked(record_index) as usize - index_first;\n                        let index1 = *containing_records.get_unchecked(record_index + 1) as usize\n                            - index_first;\n                        let index2 = *containing_records.get_unchecked(record_index + 2) as usize\n                            - index_first;\n                        let index3 = *containing_records.get_unchecked(record_index + 3) as usize\n                            - index_first;\n                        let index4 = *containing_records.get_unchecked(record_index + 4) as usize\n                            - index_first;\n                        let index5 = *containing_records.get_unchecked(record_index + 5) as usize\n                            - index_first;\n                        let index6 = *containing_records.get_unchecked(record_index + 6) as usize\n                            - index_first;\n                        let index7 = *containing_records.get_unchecked(record_index + 7) as usize\n                            - index_first;\n                        *intersections.get_unchecked_mut(index0) += 1;\n                        *intersections.get_unchecked_mut(index1) += 1;\n                        *intersections.get_unchecked_mut(index2) += 1;\n                        *intersections.get_unchecked_mut(index3) += 1;\n                        *intersections.get_unchecked_mut(index4) += 1;\n                        *intersections.get_unchecked_mut(index5) += 1;\n                        *intersections.get_unchecked_mut(index6) += 1;\n                        *intersections.get_unchecked_mut(index7) += 1;\n                    }\n                }\n\n                for &record_index in &containing_records[start_index + unroll_count..] {\n                    unsafe {\n                        let target_index = record_index as usize - index_first;\n                        *intersections.get_unchecked_mut(target_index) += 1;\n                    }\n                }\n            }\n\n            // Vectorized JA\n            /*let simd_count = following_record_count - (following_record_count % 8);\n            let mut sum_v = f32x8::splat(0.0);\n            let threshold_v = f32x8::splat(threshold);\n            let zero_v = f32x8::splat(0.0);\n\n            let intersections = intersections.as_slice();\n            let relation_size_v = f32x8::splat(record.len() as f32);\n\n            for index in (0..simd_count).step_by(8) {\n                let intersection_v =\n                    unsafe { u16x8::from_slice_unaligned_unchecked(intersections.slice(index, 8)) };\n                let length_v = unsafe {\n                    u16x8::from_slice_unaligned_unchecked(\n                        record_lengths.slice(index_first + index, 8),\n                    )\n                };\n\n                let intersection_v: u32x8 = intersection_v.into();\n                let length_v: u32x8 = length_v.into();\n\n                let intersection_v: f32x8 = intersection_v.cast();\n                let length_v: f32x8 = length_v.cast();\n                let union_v = length_v + relation_size_v - intersection_v;\n\n                let ja_v = intersection_v / union_v;\n                let mask = ja_v.ge(threshold_v);\n\n                sum_v = sum_v + mask.select(intersection_v, zero_v);\n            }*/\n            let simd_count = 0;\n\n            // Scalar JA for the rest of the elements\n            intersections[simd_count..]\n                .into_iter()\n                .zip(&record_lengths[index_first + simd_count..])\n                .map(|(&intersection, &length)| {\n                    let union_size = (length as u32 + record.len() as u32) - intersection as u32;\n                    let ja = (intersection as f32) / (union_size as f32);\n                    if ja >= threshold {\n                        intersection as u64\n                    } else {\n                        0\n                    }\n                })\n                .sum::<u64>()\n        })\n        .sum()\n}\n\nfn main() {\n    // rayon::ThreadPoolBuilder::new()\n    //     .num_threads(8)\n    //     .build_global()\n    //     .unwrap();\n\n    // let stdin = std::fs::File::open(\"input\").unwrap();\n    // let stdin = BufReader::new(stdin);\n\n    let stdin = std::io::stdin();\n    let stdin = stdin.lock();\n    let mut reader = BufReader::new(stdin);\n    let mut line = String::with_capacity(64);\n\n    let stdout = std::io::stdout();\n    let mut stdout = stdout.lock();\n\n    loop {\n        // JS\n        reader.read_line(&mut line).unwrap_force();\n        if line.is_empty() {\n            break;\n        }\n\n        line.clear();\n        reader.read_line(&mut line).unwrap_force();\n\n        let threshold = f32::from_str(&line.trim()).unwrap_force();\n\n        line.clear();\n        reader.read_line(&mut line).unwrap_force();\n\n        let relation = crate::measure!(\"load\", { load_relation(&line.trim()).unwrap() });\n        let result = calculate_query(relation, threshold);\n        writeln!(stdout, \"{}\", result).unwrap_force();\n\n        line.clear();\n    }\n    stdout.flush().unwrap();\n}\n"
  },
  {
    "path": "tests/data/remarks-similarity-join/src/record.rs",
    "content": "use crate::common::Map;\nuse byteorder::ReadBytesExt;\nuse fxhash::FxBuildHasher;\nuse std::io::BufReader;\n\nuse crate::util::ForceUnwrap;\n\npub type Element = u32;\n\npub type Record = Vec<Element>;\n\ntype Ordering = byteorder::LittleEndian;\n\n#[derive(Debug)]\npub struct Relation {\n    // value -> set of records that contain it\n    pub index: Map<Element, Vec<u32>>,\n    pub records: Vec<Record>,\n    pub record_lengths: Vec<u16>,\n}\n\npub fn load_relation(path: &str) -> anyhow::Result<Relation> {\n    let file = std::fs::File::open(path)?;\n    let mut reader = BufReader::with_capacity(8192, file);\n\n    let mut index = Map::with_capacity_and_hasher(1024, FxBuildHasher::default());\n    let mut records = Vec::with_capacity(1024);\n    let mut record_lengths = Vec::with_capacity(1024);\n\n    loop {\n        let size = match reader.read_u32::<Ordering>() {\n            Ok(size) => size,\n            Err(_) => break,\n        };\n\n        let mut record = Vec::with_capacity(size as usize);\n        let record_id = records.len() as u32;\n\n        for _ in 0..size {\n            let value = reader.read_u32::<Ordering>().unwrap_force();\n            let record_set = index.entry(value).or_insert_with(|| Vec::with_capacity(32));\n            // ignore duplicates\n            if std::intrinsics::unlikely(record_set.last() == Some(&record_id)) {\n                continue;\n            }\n            record_set.push(record_id);\n            record.push(value);\n        }\n        record.sort_unstable();\n\n        assert!(record.len() <= u16::MAX as usize);\n        record_lengths.push(record.len() as u16);\n        records.push(record);\n    }\n\n    Ok(Relation {\n        index,\n        records,\n        record_lengths,\n    })\n}\n"
  },
  {
    "path": "tests/data/remarks-similarity-join/src/util.rs",
    "content": "use std::fmt::Debug;\n\npub trait ForceUnwrap {\n    type Target;\n\n    fn unwrap_force(self) -> Self::Target;\n}\n\nimpl<T> ForceUnwrap for Option<T> {\n    type Target = T;\n\n    fn unwrap_force(self) -> Self::Target {\n        #[cfg(feature = \"force-unwrap\")]\n        match self {\n            Some(x) => x,\n            None => unsafe {\n                std::hint::unreachable_unchecked();\n            },\n        }\n        #[cfg(not(feature = \"force-unwrap\"))]\n        self.unwrap()\n    }\n}\n\nimpl<T, E> ForceUnwrap for Result<T, E>\nwhere\n    E: Debug,\n{\n    type Target = T;\n\n    fn unwrap_force(self) -> Self::Target {\n        #[cfg(feature = \"force-unwrap\")]\n        match self {\n            Ok(x) => x,\n            Err(_) => unsafe {\n                std::hint::unreachable_unchecked();\n            },\n        }\n        #[cfg(not(feature = \"force-unwrap\"))]\n        self.unwrap()\n    }\n}\n\n#[macro_export]\nmacro_rules! measure {\n    ($name: expr, $block: block) => {{\n        let start = std::time::SystemTime::now();\n        let ret = $block;\n        eprintln!(\"{}: {} ms\", $name, start.elapsed().unwrap().as_millis());\n        ret\n    }};\n}\n\npub trait Sliced<T> {\n    fn slice(&self, start: usize, end: usize) -> &[T];\n}\n\nimpl<'a, T> Sliced<T> for &'a [T] {\n    #[inline(always)]\n    fn slice(&self, start: usize, len: usize) -> &[T] {\n        unsafe {\n            let start = self.as_ptr().add(start);\n            std::slice::from_raw_parts(start, len)\n        }\n    }\n}\n"
  },
  {
    "path": "tests/data/remarks-similarity-join/yaml/similarity_join.548e4531baa98255-cgu.0.opt.opt.yaml",
    "content": "--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/backtrace.rs', \n                   Line: 154, Column: 18 }\nFunction:        _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h9f959bcd098a044bE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function6FnOnce9call_once17hf71c1d535a122e0dE\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h9f959bcd098a044bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/backtrace.rs', \n                       Line: 150, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h9f959bcd098a044bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', \n                   Line: 166, Column: 18 }\nFunction:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17hc2e7d8dca3faa815E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h9f959bcd098a044bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/backtrace.rs', \n                       Line: 150, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17hc2e7d8dca3faa815E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', \n                   Line: 166, Column: 18 }\nFunction:        '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17hc2e7d8dca3faa815E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN54_$LT$$LP$$RP$$u20$as$u20$std..process..Termination$GT$6report17h505a950911c19327E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17hc2e7d8dca3faa815E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17hc2e7d8dca3faa815E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                   Line: 250, Column: 5 }\nFunction:        _ZN4core3ops8function6FnOnce9call_once17h14cd82bc2fb965b9E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17hc2e7d8dca3faa815E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3ops8function6FnOnce9call_once17h14cd82bc2fb965b9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '0'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3ops8function6FnOnce9call_once17h14cd82bc2fb965b9E\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', \n                   Line: 166, Column: 18 }\nFunction:        _ZN4core3ops8function6FnOnce9call_once17h14cd82bc2fb965b9E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h9f959bcd098a044bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/backtrace.rs', \n                       Line: 150, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN4core3ops8function6FnOnce9call_once17h14cd82bc2fb965b9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                   Line: 250, Column: 5 }\nFunction:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hf46a5604f7ecaf3eE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function6FnOnce9call_once17h14cd82bc2fb965b9E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hf46a5604f7ecaf3eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hf46a5604f7ecaf3eE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', \n                   Line: 166, Column: 18 }\nFunction:        '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hf46a5604f7ecaf3eE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h9f959bcd098a044bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/backtrace.rs', \n                       Line: 150, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hf46a5604f7ecaf3eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', \n                   Line: 165, Column: 17 }\nFunction:        _ZN3std2rt10lang_start17h553b022b5decff43E\nArgs:\n  - Callee:          _ZN3std2rt19lang_start_internal17h58e5c2b0c2169c44E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2rt10lang_start17h553b022b5decff43E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', \n                       Line: 159, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', \n                   Line: 165, Column: 17 }\nFunction:        _ZN3std2rt10lang_start17h553b022b5decff43E\nArgs:\n  - Callee:          _ZN3std2rt19lang_start_internal17h58e5c2b0c2169c44E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2rt10lang_start17h553b022b5decff43E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', \n                       Line: 159, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 35, Column: 22 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE'\nArgs:\n  - Callee:          _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 32, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 38, Column: 13 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE'\nArgs:\n  - Callee:          mi_malloc_aligned\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 32, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 36, Column: 13 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE'\nArgs:\n  - Callee:          mi_malloc\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 32, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 35, Column: 22 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE'\nArgs:\n  - Callee:          _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 32, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 38, Column: 13 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE'\nArgs:\n  - Callee:          mi_malloc_aligned\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 32, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 36, Column: 13 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE'\nArgs:\n  - Callee:          mi_malloc\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 32, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 14, Column: 15 }\nFunction:        __rust_alloc\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$5alloc17h5e4a0d3d412940efE'\n  - String:          ''' inlined into '''\n  - Caller:          __rust_alloc\n    DebugLoc:        { File: 'src/main.rs', Line: 14, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14920'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          __rust_alloc\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 59, Column: 9 }\nFunction:        __rust_dealloc\nArgs:\n  - Callee:          mi_free\n  - String:          ' will not be inlined into '\n  - Caller:          __rust_dealloc\n    DebugLoc:        { File: 'src/main.rs', Line: 14, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 59, Column: 9 }\nFunction:        __rust_dealloc\nArgs:\n  - Callee:          mi_free\n  - String:          ' will not be inlined into '\n  - Caller:          __rust_dealloc\n    DebugLoc:        { File: 'src/main.rs', Line: 14, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 71, Column: 22 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE'\nArgs:\n  - Callee:          _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 63, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 74, Column: 13 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE'\nArgs:\n  - Callee:          mi_realloc_aligned\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 63, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 72, Column: 13 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE'\nArgs:\n  - Callee:          mi_realloc\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 63, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 71, Column: 22 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE'\nArgs:\n  - Callee:          _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 63, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 74, Column: 13 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE'\nArgs:\n  - Callee:          mi_realloc_aligned\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 63, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 72, Column: 13 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE'\nArgs:\n  - Callee:          mi_realloc\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 63, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 14, Column: 15 }\nFunction:        __rust_realloc\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$7realloc17h93b6ad563d96237dE'\n  - String:          ''' inlined into '''\n  - Caller:          __rust_realloc\n    DebugLoc:        { File: 'src/main.rs', Line: 14, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14920'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          __rust_realloc\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 48, Column: 22 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE'\nArgs:\n  - Callee:          _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 45, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 51, Column: 13 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE'\nArgs:\n  - Callee:          mi_zalloc_aligned\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 45, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 49, Column: 13 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE'\nArgs:\n  - Callee:          mi_zalloc\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 45, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 48, Column: 22 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE'\nArgs:\n  - Callee:          _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 45, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 51, Column: 13 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE'\nArgs:\n  - Callee:          mi_zalloc_aligned\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 45, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 49, Column: 13 }\nFunction:        '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE'\nArgs:\n  - Callee:          mi_zalloc\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 45, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 14, Column: 15 }\nFunction:        __rust_alloc_zeroed\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN75_$LT$mimallocator..Mimalloc$u20$as$u20$core..alloc..global..GlobalAlloc$GT$12alloc_zeroed17h270d42760dbe8b6bE'\n  - String:          ''' inlined into '''\n  - Caller:          __rust_alloc_zeroed\n    DebugLoc:        { File: 'src/main.rs', Line: 14, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14920'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          __rust_alloc_zeroed\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 98, Column: 9 }\nFunction:        _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E\nArgs:\n  - String:          ''''\n  - Callee:          __rust_alloc\n    DebugLoc:        { File: 'src/main.rs', Line: 14, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 176, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '80'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc5alloc5alloc17ha8621a78912994ecE\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '73'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 170, Column: 14 }\nFunction:        _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E\nArgs:\n  - String:          ''''\n  - Callee:          __rust_alloc_zeroed\n    DebugLoc:        { File: 'src/main.rs', Line: 14, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 176, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '80'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc5alloc12alloc_zeroed17hf3c31f129e1df0dbE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '43'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 241, Column: 9 }\nFunction:        '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 176, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 240, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '100'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 177, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\nArgs:\n  - Callee:          _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 189, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 177, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\nArgs:\n  - Callee:          _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 189, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                   Line: 433, Column: 16 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                       Line: 436, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-25'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5alloc6layout6Layout5array17h17e50ba23fa1c864E\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '32'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 184, Column: 45 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '105'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\n  - String:          ':'\n  - Line:            '16'\n  - String:          ':'\n  - Column:          '45'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 130, Column: 9 }\nFunction:        '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 93, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '145'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h3e40c755a2fa20a3E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec15RawVec$LT$T$GT$13with_capacity17hbc080b502a3792beE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN5alloc5boxed22Box$LT$$u5b$T$u5d$$GT$16new_uninit_slice17hcd51cfcf2341d13bE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ' @ '\n  - String:          _ZN3std2io8buffered9bufreader6buffer6Buffer13with_capacity17he49de4165492f635E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ' @ '\n  - String:          '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '33'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                   Line: 635, Column: 18 }\nFunction:        '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$8into_box17h2528ab0753e97cf1E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 153, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 93, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc5boxed22Box$LT$$u5b$T$u5d$$GT$16new_uninit_slice17hcd51cfcf2341d13bE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ' @ '\n  - String:          _ZN3std2io8buffered9bufreader6buffer6Buffer13with_capacity17he49de4165492f635E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ' @ '\n  - String:          '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '33'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                   Line: 250, Column: 5 }\nFunction:        _ZN4core3ops8function6FnOnce9call_once17h10862aaed384a85bE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3cmp5impls50_$LT$impl$u20$core..cmp..Ord$u20$for$u20$usize$GT$3cmp17h9e23d13399acf65eE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3ops8function6FnOnce9call_once17h10862aaed384a85bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15020'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3ops8function6FnOnce9call_once17h10862aaed384a85bE\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 1241, Column: 11 }\nFunction:        _ZN4core3cmp6max_by17h709db21befafa9e3E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function6FnOnce9call_once17h10862aaed384a85bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-20'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '11'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 26, Column: 9 }\nFunction:        '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h8751d3cc1903aad6E'\nArgs:\n  - Callee:          '_ZN59_$LT$std..io..stdio..StdinLock$u20$as$u20$std..io..Read$GT$8read_buf17he9d85a0edb013f2cE'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h8751d3cc1903aad6E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 25, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 26, Column: 9 }\nFunction:        '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h8751d3cc1903aad6E'\nArgs:\n  - Callee:          '_ZN59_$LT$std..io..stdio..StdinLock$u20$as$u20$std..io..Read$GT$8read_buf17he9d85a0edb013f2cE'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h8751d3cc1903aad6E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 25, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 100, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3max17hae4946db965cca35E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          _ZN3std2io7readbuf11BorrowedBuf8set_init17hdd27df897cb6d85bE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ' @ '\n  - String:          _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\n  - String:          ':'\n  - Line:            '11'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 114, Column: 13 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h8751d3cc1903aad6E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 100, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\n  - String:          ':'\n  - Line:            '14'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 76 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 86 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 379, Column: 9 }\nFunction:        '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17hbbd87cf198af99d3E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17ha1cb2615d5835440E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17hbbd87cf198af99d3E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 378, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14880'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17hbbd87cf198af99d3E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17hbbd87cf198af99d3E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17hbbd87cf198af99d3E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                   Line: 258, Column: 24 }\nFunction:        _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io5error14repr_bitpacked14kind_from_prim17hd565108c6a94f335E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                       Line: 289, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                       Line: 246, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '195'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                   Line: 276, Column: 31 }\nFunction:        _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN3std2io5error14repr_bitpacked4Repr4data28_$u7b$$u7b$closure$u7d$$u7d$17h74c31adbfe65ddcfE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                       Line: 246, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E\n  - String:          ':'\n  - Line:            '30'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                   Line: 913, Column: 36 }\nFunction:        _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E\nArgs:\n  - Callee:          _ZN3std3sys4unix17decode_error_kind17h91e167953d5bee68E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 911, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                   Line: 913, Column: 36 }\nFunction:        _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E\nArgs:\n  - Callee:          _ZN3std3sys4unix17decode_error_kind17h91e167953d5bee68E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 911, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                   Line: 212, Column: 18 }\nFunction:        _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io5error14repr_bitpacked11decode_repr17h99007df23d113881E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 911, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14750'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io5error14repr_bitpacked4Repr4data17hd6ba9b9f486c8881E\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ' @ '\n  - String:          _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 829, Column: 27 }\nFunction:        '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17h4d23d63bf95dec92E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec11finish_grow28_$u7b$$u7b$closure$u7d$$u7d$17h3a68ffc23693f631E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17h4d23d63bf95dec92E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 826, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17h4d23d63bf95dec92E'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 117, Column: 14 }\nFunction:        '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE'\nArgs:\n  - String:          ''''\n  - Callee:          __rust_dealloc\n    DebugLoc:        { File: 'src/main.rs', Line: 14, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc5alloc7dealloc17hd511352e90405d82E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 203, Column: 18 }\nFunction:        _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 176, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 190, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '100'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E\n  - String:          ':'\n  - Line:            '13'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 227, Column: 31 }\nFunction:        _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 176, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 190, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '100'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E\n  - String:          ':'\n  - Line:            '37'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 136, Column: 14 }\nFunction:        _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E\nArgs:\n  - String:          ''''\n  - Callee:          __rust_realloc\n    DebugLoc:        { File: 'src/main.rs', Line: 14, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 190, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '80'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc5alloc7realloc17h1b9d254a7d2faa46E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E\n  - String:          ':'\n  - Line:            '23'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 229, Column: 17 }\nFunction:        _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 190, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '0'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E\n  - String:          ':'\n  - Line:            '39'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 266, Column: 18 }\nFunction:        '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$4grow17h47b4fff41ce164ddE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc5alloc6Global9grow_impl17h543cc8625ad02321E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$4grow17h47b4fff41ce164ddE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 259, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14580'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$4grow17h47b4fff41ce164ddE'\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 829, Column: 27 }\nFunction:        '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hdd1b5f1ceef6307aE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec11finish_grow28_$u7b$$u7b$closure$u7d$$u7d$17h778ecb9bdce367a5E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hdd1b5f1ceef6307aE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 826, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hdd1b5f1ceef6307aE'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 473, Column: 22 }\nFunction:        _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17h4d23d63bf95dec92E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 464, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n  - String:          ':'\n  - Line:            '9'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 482, Column: 13 }\nFunction:        _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$4grow17h47b4fff41ce164ddE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 464, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14575'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n  - String:          ':'\n  - Line:            '18'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 485, Column: 9 }\nFunction:        _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 464, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '105'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n  - String:          ':'\n  - Line:            '21'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 488, Column: 5 }\nFunction:        _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hdd1b5f1ceef6307aE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 464, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15020'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n  - String:          ':'\n  - Line:            '24'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 477, Column: 36 }\nFunction:        _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 477, Column: 25 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3max17hae4946db965cca35E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\n  - String:          ':'\n  - Line:            '15'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3max17hae4946db965cca35E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\n  - String:          ':'\n  - Line:            '16'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                   Line: 433, Column: 16 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                       Line: 436, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-25'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5alloc6layout6Layout5array17h17e50ba23fa1c864E\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\n  - String:          ':'\n  - Line:            '18'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 43 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17h6195dd10ac8de4ccE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 239, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\n  - String:          ':'\n  - Line:            '21'\n  - String:          ':'\n  - Column:          '43'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 19 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 464, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 405, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$15set_ptr_and_cap17h5381bc534753d9ccE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\n  - String:          ':'\n  - Line:            '22'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 43 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 398, Column: 28 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  inttoptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1949, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 829, Column: 27 }\nFunction:        '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hc89d1381a9a634c1E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec14handle_reserve28_$u7b$$u7b$closure$u7d$$u7d$17h061058e72801cd8aE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hc89d1381a9a634c1E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 826, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hc89d1381a9a634c1E'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 505, Column: 34 }\nFunction:        _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\nArgs:\n  - Callee:          _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 503, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 506, Column: 43 }\nFunction:        _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 503, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 505, Column: 34 }\nFunction:        _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\nArgs:\n  - Callee:          _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 503, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 506, Column: 43 }\nFunction:        _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 503, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 504, Column: 11 }\nFunction:        _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core6result19Result$LT$T$C$E$GT$7map_err17hc89d1381a9a634c1E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 503, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '11'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 289, Column: 28 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h4ea75eb3f2049449E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14865'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '28'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 289, Column: 13 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 503, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '55'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 19 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 464, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 293, Column: 13 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$7reserve17hae51981c2bc06645E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$7reserve17hae51981c2bc06645E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 908, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '220'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter.rs', \n                   Line: 127, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4iter13Iter$LT$T$GT$10make_slice17h18284bd65e91626cE'\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_extend.rs', \n                       Line: 53, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice4iter13Iter$LT$T$GT$8as_slice17hadb5578f11087d38E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '30'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1941, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$7reserve17hae51981c2bc06645E'\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_extend.rs', \n                       Line: 53, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14970'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$15append_elements17h75a8b5139c994e21E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - 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'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 293, Column: 13 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' not inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_extend.rs', \n                       Line: 53, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '220'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2387, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E'\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2386, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14945'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 293, Column: 13 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2386, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '220'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 409, Column: 13 }\nFunction:        '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE'\nArgs:\n  - Callee:          _ZN4core5slice5index22slice_index_order_fail17h06dec397234c3a6cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 407, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 411, Column: 13 }\nFunction:        '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE'\nArgs:\n  - Callee:          _ZN4core5slice5index24slice_end_index_len_fail17h09e01c281ef61abfE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 407, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 409, Column: 13 }\nFunction:        '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE'\nArgs:\n  - Callee:          _ZN4core5slice5index22slice_index_order_fail17h06dec397234c3a6cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 407, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 411, Column: 13 }\nFunction:        '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE'\nArgs:\n  - Callee:          _ZN4core5slice5index24slice_end_index_len_fail17h09e01c281ef61abfE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 407, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 579, Column: 13 }\nFunction:        '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E'\nArgs:\n  - Callee:          _ZN4core5slice5index29slice_end_index_overflow_fail17hd99ee152c27dfee8E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 577, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 579, Column: 13 }\nFunction:        '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E'\nArgs:\n  - Callee:          _ZN4core5slice5index29slice_end_index_overflow_fail17hd99ee152c27dfee8E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 577, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 581, Column: 9 }\nFunction:        '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 407, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 577, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '70'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 1172, Column: 11 }\nFunction:        _ZN4core3cmp6min_by17hd4f33f4a265e89c9E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function6FnOnce9call_once17h10862aaed384a85bE\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3cmp6min_by17hd4f33f4a265e89c9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1171, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15020'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp6min_by17hd4f33f4a265e89c9E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '11'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 814, Column: 9 }\nFunction:        '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$7consume17h12a092f3db68204eE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6min_by17hd4f33f4a265e89c9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1171, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$7consume17h12a092f3db68204eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 382, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3min17h6955f9dd2679a295E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3min17h3b66dd7ee6e4c354E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          _ZN3std2io8buffered9bufreader6buffer6Buffer7consume17hb7e1989b2442b326E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ' @ '\n  - String:          '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$7consume17h12a092f3db68204eE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                   Line: 258, Column: 24 }\nFunction:        _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io5error14repr_bitpacked14kind_from_prim17hd565108c6a94f335E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                       Line: 246, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14805'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                   Line: 276, Column: 31 }\nFunction:        _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop28_$u7b$$u7b$closure$u7d$$u7d$17h8167dd3c508fcfa8E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                       Line: 246, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E\n  - String:          ':'\n  - Line:            '30'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                   Line: 1235, Column: 17 }\nFunction:        '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5c167f4927985ef4E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5c167f4927985ef4E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                       Line: 1227, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '0'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5c167f4927985ef4E'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr118drop_in_place$LT$alloc..boxed..Box$LT$dyn$u20$core..error..Error$u2b$core..marker..Sync$u2b$core..marker..Send$GT$$GT$17h71a118851967f697E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5c167f4927985ef4E'\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14990'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr43drop_in_place$LT$std..io..error..Custom$GT$17h7a9c3e925ada62dcE'\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr43drop_in_place$LT$std..io..error..Custom$GT$17h7a9c3e925ada62dcE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14975'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr43drop_in_place$LT$std..io..error..Custom$GT$17h7a9c3e925ada62dcE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                   Line: 1235, Column: 17 }\nFunction:        '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h6739a2ffdd07e49eE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h6739a2ffdd07e49eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                       Line: 1227, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h6739a2ffdd07e49eE'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr43drop_in_place$LT$std..io..error..Custom$GT$17h7a9c3e925ada62dcE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14975'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h6739a2ffdd07e49eE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr101drop_in_place$LT$std..io..error..ErrorData$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$$GT$17h4af5e68a6b0e21a7E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr68drop_in_place$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$17h85a6b2ce223896b3E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr101drop_in_place$LT$std..io..error..ErrorData$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$$GT$17h4af5e68a6b0e21a7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14925'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr101drop_in_place$LT$std..io..error..ErrorData$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$$GT$17h4af5e68a6b0e21a7E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                   Line: 236, Column: 21 }\nFunction:        '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io5error14repr_bitpacked11decode_repr17h2715f30bf4ec7f58E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                       Line: 232, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14750'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                   Line: 236, Column: 72 }\nFunction:        '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr101drop_in_place$LT$std..io..error..ErrorData$LT$alloc..boxed..Box$LT$std..io..error..Custom$GT$$GT$$GT$17h4af5e68a6b0e21a7E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                       Line: 232, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14920'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '72'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr57drop_in_place$LT$std..io..error..repr_bitpacked..Repr$GT$17h0d79729540ed8c61E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN78_$LT$std..io..error..repr_bitpacked..Repr$u20$as$u20$core..ops..drop..Drop$GT$4drop17h53faa66fe0d6c827E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr57drop_in_place$LT$std..io..error..repr_bitpacked..Repr$GT$17h0d79729540ed8c61E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14910'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr57drop_in_place$LT$std..io..error..repr_bitpacked..Repr$GT$17h0d79729540ed8c61E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr57drop_in_place$LT$std..io..error..repr_bitpacked..Repr$GT$17h0d79729540ed8c61E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14910'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr89drop_in_place$LT$core..result..Result$LT$$RF$$u5b$u8$u5d$$C$std..io..error..Error$GT$$GT$17h01cb0c79ac26bf15E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr89drop_in_place$LT$core..result..Result$LT$$RF$$u5b$u8$u5d$$C$std..io..error..Error$GT$$GT$17h01cb0c79ac26bf15E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '95'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr89drop_in_place$LT$core..result..Result$LT$$RF$$u5b$u8$u5d$$C$std..io..error..Error$GT$$GT$17h01cb0c79ac26bf15E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', \n                   Line: 30, Column: 5 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - Callee:          _ZN3std3sys4unix6memchr6memchr17h34093a0ad4969d15E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2io10read_until17h040acd66fc952403E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1940, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', \n                   Line: 30, Column: 5 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - Callee:          _ZN3std3sys4unix6memchr6memchr17h34093a0ad4969d15E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2io10read_until17h040acd66fc952403E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1940, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1944, Column: 35 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17hbbd87cf198af99d3E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io10read_until17h040acd66fc952403E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1940, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14895'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io10read_until17h040acd66fc952403E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1946, Column: 31 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 911, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io10read_until17h040acd66fc952403E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1940, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '300'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io10read_until17h040acd66fc952403E\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1955, Column: 21 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2386, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io10read_until17h040acd66fc952403E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1940, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '50'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io10read_until17h040acd66fc952403E\n  - String:          ':'\n  - Line:            '15'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 622, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h8e9e2edf7c8dbad2E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io10read_until17h040acd66fc952403E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1940, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14860'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN117_$LT$core..ops..range..RangeToInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2dc29c303658496bE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN4core5slice5index74_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$5index17hd3e248e56b53eb42E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          _ZN3std2io10read_until17h040acd66fc952403E\n  - String:          ':'\n  - Line:            '11'\n  - String:          ':'\n  - Column:          '53'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1951, Column: 21 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$17extend_from_slice17h76cbc8877f668b15E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io10read_until17h040acd66fc952403E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1940, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14950'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io10read_until17h040acd66fc952403E\n  - String:          ':'\n  - Line:            '11'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1960, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$7consume17h12a092f3db68204eE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io10read_until17h040acd66fc952403E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1940, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15015'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io10read_until17h040acd66fc952403E\n  - String:          ':'\n  - Line:            '20'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1948, Column: 14 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr89drop_in_place$LT$core..result..Result$LT$$RF$$u5b$u8$u5d$$C$std..io..error..Error$GT$$GT$17h01cb0c79ac26bf15E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io10read_until17h040acd66fc952403E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1940, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14905'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io10read_until17h040acd66fc952403E\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 293, Column: 13 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN3std2io10read_until17h040acd66fc952403E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1940, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '220'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 293, Column: 13 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN3std2io10read_until17h040acd66fc952403E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1940, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '220'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                   Line: 922, Column: 18 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'sinking '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                       Line: 922, Column: 18 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 12 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 24 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 379, Column: 27 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 379, Column: 27 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 108, Column: 45 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 72, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 72, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 72, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 111, Column: 30 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1942, Column: 5 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 24 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 24 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 24 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 24 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io10read_until17h040acd66fc952403E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 2239, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io10read_until17h040acd66fc952403E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14235'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '44'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 293, Column: 13 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '220'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 293, Column: 13 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '220'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1942, Column: 5 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 24 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 24 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 24 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 24 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 497, Column: 13 }\nFunction:        '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17he3a384aae5b0f2ecE'\nArgs:\n  - Callee:          _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17he3a384aae5b0f2ecE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 495, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 497, Column: 13 }\nFunction:        '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17he3a384aae5b0f2ecE'\nArgs:\n  - Callee:          _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17he3a384aae5b0f2ecE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 495, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 18, Column: 9 }\nFunction:        '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17he298852de4b5cee5E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17he3a384aae5b0f2ecE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17he298852de4b5cee5E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2674, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14975'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice5index74_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$5index17hac817d7abd7e2510E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17he298852de4b5cee5E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr35drop_in_place$LT$std..io..Guard$GT$17h0912053cb88db341E'\nArgs:\n  - Callee:          '_ZN56_$LT$std..io..Guard$u20$as$u20$core..ops..drop..Drop$GT$4drop17h7054b7c619a8e16bE'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core3ptr35drop_in_place$LT$std..io..Guard$GT$17h0912053cb88db341E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr35drop_in_place$LT$std..io..Guard$GT$17h0912053cb88db341E'\nArgs:\n  - Callee:          '_ZN56_$LT$std..io..Guard$u20$as$u20$core..ops..drop..Drop$GT$4drop17h7054b7c619a8e16bE'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core3ptr35drop_in_place$LT$std..io..Guard$GT$17h0912053cb88db341E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 341, Column: 8 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - Callee:          _ZN4core3str8converts9from_utf817hc0d41a0ea375d127E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 335, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 341, Column: 8 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - Callee:          _ZN4core3str8converts9from_utf817hc0d41a0ea375d127E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 335, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 340, Column: 15 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN3std2io7BufRead9read_line28_$u7b$$u7b$closure$u7d$$u7d$17hb0324e94f8016c11E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 335, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14245'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 341, Column: 29 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17he298852de4b5cee5E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 335, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14975'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '29'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 352, Column: 1 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr35drop_in_place$LT$std..io..Guard$GT$17h0912053cb88db341E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 335, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\n  - String:          ':'\n  - Line:            '17'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 293, Column: 13 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 335, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '220'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 293, Column: 13 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 335, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '220'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1942, Column: 5 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2051, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2051, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', \n                       Line: 30, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', \n                       Line: 30, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', \n                       Line: 30, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 24 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 24 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 341, Column: 24 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 341, Column: 24 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 341, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 341, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 539, Column: 18 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 341, Column: 8 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 349, Column: 17 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 341, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 341, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 341, Column: 8 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', \n                       Line: 30, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2051, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', \n                       Line: 30, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2051, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', \n                       Line: 30, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 231, Column: 44 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', \n                       Line: 30, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys_common/memchr.rs', \n                       Line: 30, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 24 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 105, Column: 24 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 341, Column: 24 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 341, Column: 24 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 341, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 341, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 339, Column: 17 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 539, Column: 18 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 341, Column: 8 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 341, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 341, Column: 8 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 23 }\nFunction:        '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17hc2025190665822f2E'\nArgs:\n  - Callee:          _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17hc2025190665822f2E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1071, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 23 }\nFunction:        '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17hc2025190665822f2E'\nArgs:\n  - Callee:          _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17hc2025190665822f2E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1071, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                   Line: 88, Column: 13 }\nFunction:        '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E'\nArgs:\n  - Callee:          _ZN3std3sys4unix5locks11futex_mutex5Mutex4wake17h003dfe248bde9ba7E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/remutex.rs', \n                       Line: 159, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                   Line: 88, Column: 13 }\nFunction:        '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E'\nArgs:\n  - Callee:          _ZN3std3sys4unix5locks11futex_mutex5Mutex4wake17h003dfe248bde9ba7E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/remutex.rs', \n                       Line: 159, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                   Line: 3145, Column: 1 }\nFunction:        '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core4sync6atomic12atomic_store17h9971204c9a43a48cE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/remutex.rs', \n                       Line: 159, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core4sync6atomic11AtomicUsize5store17h123a85d9c69b84b3E\n  - String:          ':'\n  - Line:            '827'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ' @ '\n  - String:          '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '33'\n  - String:          ';'\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/remutex.rs', \n                   Line: 165, Column: 17 }\nFunction:        '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/remutex.rs', \n                       Line: 162, Column: 14 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN90_$LT$std..sync..remutex..ReentrantMutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h67e39aaf31fe1811E'\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14950'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr47drop_in_place$LT$std..io..stdio..StdoutLock$GT$17h3084d735c2d0a482E'\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr47drop_in_place$LT$std..io..stdio..StdoutLock$GT$17h3084d735c2d0a482E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14955'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr47drop_in_place$LT$std..io..stdio..StdoutLock$GT$17h3084d735c2d0a482E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 494, Column: 38 }\nFunction:        '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17h6195dd10ac8de4ccE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 493, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '38'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 495, Column: 22 }\nFunction:        '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 493, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '0'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr53drop_in_place$LT$alloc..raw_vec..RawVec$LT$u8$GT$$GT$17h7ce4e279b88101bdE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hdddda7b1be99996bE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr53drop_in_place$LT$alloc..raw_vec..RawVec$LT$u8$GT$$GT$17h7ce4e279b88101bdE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr53drop_in_place$LT$alloc..raw_vec..RawVec$LT$u8$GT$$GT$17h7ce4e279b88101bdE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h015b07414346a705E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr53drop_in_place$LT$alloc..raw_vec..RawVec$LT$u8$GT$$GT$17h7ce4e279b88101bdE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h8706786611654137E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr46drop_in_place$LT$alloc..vec..Vec$LT$u8$GT$$GT$17h8cfa3d7892494c20E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h8706786611654137E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h8706786611654137E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                   Line: 1235, Column: 17 }\nFunction:        '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5cd61cd617028970E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5cd61cd617028970E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                       Line: 1227, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '0'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5cd61cd617028970E'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr102drop_in_place$LT$alloc..boxed..Box$LT$$u5b$core..mem..maybe_uninit..MaybeUninit$LT$u8$GT$$u5d$$GT$$GT$17hc20ef5c533a7dceeE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h5cd61cd617028970E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr102drop_in_place$LT$alloc..boxed..Box$LT$$u5b$core..mem..maybe_uninit..MaybeUninit$LT$u8$GT$$u5d$$GT$$GT$17hc20ef5c533a7dceeE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr102drop_in_place$LT$alloc..boxed..Box$LT$$u5b$core..mem..maybe_uninit..MaybeUninit$LT$u8$GT$$u5d$$GT$$GT$17hc20ef5c533a7dceeE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr65drop_in_place$LT$std..io..buffered..bufreader..buffer..Buffer$GT$17h4e1d01f4cafc09fbE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr102drop_in_place$LT$alloc..boxed..Box$LT$$u5b$core..mem..maybe_uninit..MaybeUninit$LT$u8$GT$$u5d$$GT$$GT$17hc20ef5c533a7dceeE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr65drop_in_place$LT$std..io..buffered..bufreader..buffer..Buffer$GT$17h4e1d01f4cafc09fbE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr65drop_in_place$LT$std..io..buffered..bufreader..buffer..Buffer$GT$17h4e1d01f4cafc09fbE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/panicking.rs', \n                   Line: 427, Column: 13 }\nFunction:        _ZN3std9panicking9panicking17h0ed5135fbe0b811fE\nArgs:\n  - Callee:          _ZN3std9panicking11panic_count17is_zero_slow_path17h6f4bb03aa2b57ccfE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std9panicking9panicking17h0ed5135fbe0b811fE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/panicking.rs', \n                       Line: 558, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/panicking.rs', \n                   Line: 427, Column: 13 }\nFunction:        _ZN3std9panicking9panicking17h0ed5135fbe0b811fE\nArgs:\n  - Callee:          _ZN3std9panicking11panic_count17is_zero_slow_path17h6f4bb03aa2b57ccfE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std9panicking9panicking17h0ed5135fbe0b811fE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/panicking.rs', \n                       Line: 558, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                   Line: 3145, Column: 1 }\nFunction:        _ZN3std9panicking9panicking17h0ed5135fbe0b811fE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core4sync6atomic11atomic_load17h72eb0b5064d0cd0bE\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std9panicking9panicking17h0ed5135fbe0b811fE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/panicking.rs', \n                       Line: 558, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core4sync6atomic11AtomicUsize4load17h0977801af6ab028aE\n  - String:          ':'\n  - Line:            '854'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ' @ '\n  - String:          _ZN3std9panicking11panic_count13count_is_zero17h2145fd07e7b2b3cdE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ' @ '\n  - String:          _ZN3std9panicking9panicking17h0ed5135fbe0b811fE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '6'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/thread/mod.rs', \n                   Line: 800, Column: 5 }\nFunction:        _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std9panicking9panicking17h0ed5135fbe0b811fE\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/poison.rs', \n                       Line: 41, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14975'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std6thread9panicking17had2325d01a90857fE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ' @ '\n  - String:          _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '32'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                   Line: 538, Column: 13 }\nFunction:        _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core4sync6atomic12atomic_store17h14ba9a2b36db237cE\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/poison.rs', \n                       Line: 41, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core4sync6atomic10AtomicBool5store17h86e7241f5a3895a9E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ' @ '\n  - String:          _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                   Line: 88, Column: 13 }\nFunction:        '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E'\nArgs:\n  - Callee:          _ZN3std3sys4unix5locks11futex_mutex5Mutex4wake17h003dfe248bde9ba7E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/mutex.rs', \n                       Line: 526, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                   Line: 88, Column: 13 }\nFunction:        '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E'\nArgs:\n  - Callee:          _ZN3std3sys4unix5locks11futex_mutex5Mutex4wake17h003dfe248bde9ba7E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/mutex.rs', \n                       Line: 526, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/mutex.rs', \n                   Line: 528, Column: 13 }\nFunction:        '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std4sync6poison4Flag4done17h5eaa264829f5df9eE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/mutex.rs', \n                       Line: 526, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14970'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/mutex.rs', \n                   Line: 529, Column: 13 }\nFunction:        '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sync/mutex.rs', \n                       Line: 528, Column: 13 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr128drop_in_place$LT$std..sync..mutex..MutexGuard$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinRaw$GT$$GT$$GT$17hae3b8594c6c0ec4cE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN79_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2567a3a6582ee965E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr128drop_in_place$LT$std..sync..mutex..MutexGuard$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinRaw$GT$$GT$$GT$17hae3b8594c6c0ec4cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14905'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr128drop_in_place$LT$std..sync..mutex..MutexGuard$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinRaw$GT$$GT$$GT$17hae3b8594c6c0ec4cE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr46drop_in_place$LT$std..io..stdio..StdinLock$GT$17h7f21536e5b1bcfcfE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr128drop_in_place$LT$std..sync..mutex..MutexGuard$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinRaw$GT$$GT$$GT$17hae3b8594c6c0ec4cE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr46drop_in_place$LT$std..io..stdio..StdinLock$GT$17h7f21536e5b1bcfcfE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14920'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr46drop_in_place$LT$std..io..stdio..StdinLock$GT$17h7f21536e5b1bcfcfE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr65drop_in_place$LT$std..io..buffered..bufreader..buffer..Buffer$GT$17h4e1d01f4cafc09fbE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '5'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr46drop_in_place$LT$std..io..stdio..StdinLock$GT$17h7f21536e5b1bcfcfE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14920'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 38, Column: 14 }\nFunction:        _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h817495a0833be62eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 156, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                       Line: 36, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 49, Column: 23 }\nFunction:        _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h817495a0833be62eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 156, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                       Line: 36, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\n  - String:          ':'\n  - Line:            '13'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 56, Column: 27 }\nFunction:        _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h817495a0833be62eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 156, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                       Line: 36, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\n  - String:          ':'\n  - Line:            '20'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 64, Column: 31 }\nFunction:        _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h817495a0833be62eE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                       Line: 36, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15010'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\n  - String:          ':'\n  - Line:            '28'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/non_null.rs', \n                   Line: 766, Column: 9 }\nFunction:        _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                       Line: 922, Column: 18 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/non_null.rs', \n                   Line: 766, Column: 9 }\nFunction:        _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/non_null.rs', \n                   Line: 766, Column: 9 }\nFunction:        _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 64, Column: 30 }\nFunction:        _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 109, Column: 33 }\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                   Line: 139, Column: 23 }\nFunction:        '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 141, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                       Line: 138, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - String:          '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                   Line: 144, Column: 27 }\nFunction:        '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 141, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                       Line: 138, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - String:          '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                   Line: 44, Column: 18 }\nFunction:        '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3str11validations15next_code_point17h8a2299e7a2214504E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                       Line: 138, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14810'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN81_$LT$core..str..iter..Chars$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hc173e05123511d0eE'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ' @ '\n  - String:          '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                   Line: 144, Column: 27 }\nFunction:        '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                       Line: 144, Column: 27 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', \n                   Line: 813, Column: 32 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$4trim28_$u7b$$u7b$closure$u7d$$u7d$17h398b9aba6c306a44E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core7unicode12unicode_data11white_space6lookup17h255597ef5cacdbdaE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3str21_$LT$impl$u20$str$GT$4trim28_$u7b$$u7b$closure$u7d$$u7d$17h398b9aba6c306a44E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', \n                       Line: 1830, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14915'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4char7methods22_$LT$impl$u20$char$GT$13is_whitespace17h209df3a5dfe05a3bE'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '32'\n  - String:          ' @ '\n  - String:          '_ZN4core3str21_$LT$impl$u20$str$GT$4trim28_$u7b$$u7b$closure$u7d$$u7d$17h398b9aba6c306a44E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '39'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 608, Column: 9 }\nFunction:        '_ZN53_$LT$F$u20$as$u20$core..str..pattern..MultiCharEq$GT$7matches17h007b1a6ebc0efe04E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3str21_$LT$impl$u20$str$GT$4trim28_$u7b$$u7b$closure$u7d$$u7d$17h398b9aba6c306a44E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN53_$LT$F$u20$as$u20$core..str..pattern..MultiCharEq$GT$7matches17h007b1a6ebc0efe04E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 607, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14890'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN53_$LT$F$u20$as$u20$core..str..pattern..MultiCharEq$GT$7matches17h007b1a6ebc0efe04E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 662, Column: 23 }\nFunction:        '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 141, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 658, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - String:          '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 664, Column: 23 }\nFunction:        '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 141, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 658, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - String:          '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 663, Column: 31 }\nFunction:        '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN87_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h8dd0a8d0027dd224E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 658, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14810'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 666, Column: 16 }\nFunction:        '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN53_$LT$F$u20$as$u20$core..str..pattern..MultiCharEq$GT$7matches17h007b1a6ebc0efe04E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 607, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 658, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '110'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ';'\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 162, Column: 24 }\nFunction:        '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 662, Column: 23 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 664, Column: 23 }\nFunction:        '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                       Line: 144, Column: 27 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 250, Column: 19 }\nFunction:        '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN97_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..Searcher$GT$4next17h0f4808cb3d935ca5E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 757, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14640'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3str7pattern8Searcher11next_reject17h118f5fe602011d22E\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ' @ '\n  - String:          '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ';'\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 662, Column: 23 }\nFunction:        '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 662, Column: 23 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 662, Column: 23 }\nFunction:        '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 662, Column: 23 }\nFunction:        '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 662, Column: 23 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 662, Column: 23 }\nFunction:        '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 662, Column: 23 }\n...\n--- !Passed\nPass:            licm\nName:            PromoteLoopAccessesToScalar\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 109, Column: 33 }\nFunction:        '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE'\nArgs:\n  - String:          Moving accesses to memory location out of the loop\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                   Line: 143, Column: 29 }\nFunction:        '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                       Line: 143, Column: 29 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                   Line: 143, Column: 29 }\nFunction:        '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            PromoteLoopAccessesToScalar\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                   Line: 145, Column: 17 }\nFunction:        '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE'\nArgs:\n  - String:          Moving accesses to memory location out of the loop\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 401, Column: 30 }\nFunction:        '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4iter13Iter$LT$T$GT$11pre_dec_end17h43ed048afdfe2d46E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 392, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - String:          '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E'\n  - String:          ':'\n  - Line:            '9'\n  - String:          ':'\n  - Column:          '30'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 84, Column: 20 }\nFunction:        _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 392, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                       Line: 79, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 94, Column: 23 }\nFunction:        _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 392, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                       Line: 79, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\n  - String:          ':'\n  - Line:            '15'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 99, Column: 27 }\nFunction:        _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 392, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                       Line: 79, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\n  - String:          ':'\n  - Line:            '20'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 104, Column: 31 }\nFunction:        _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN106_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h6386478a53df6199E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                       Line: 79, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15010'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\n  - String:          ':'\n  - Line:            '25'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 398, Column: 24 }\nFunction:        _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                       Line: 467, Column: 18 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 398, Column: 24 }\nFunction:        _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 398, Column: 24 }\nFunction:        _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 104, Column: 30 }\nFunction:        _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 131, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 104, Column: 30 }\nFunction:        _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 131, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 104, Column: 30 }\nFunction:        _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 131, Column: 25 }\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                   Line: 173, Column: 45 }\nFunction:        '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 141, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                       Line: 171, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '45'\n  - String:          ' @ '\n  - String:          '_ZN4core6option15Option$LT$T$GT$3map17h67fa8970fb4530d0E'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '29'\n  - String:          ' @ '\n  - String:          '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                   Line: 84, Column: 18 }\nFunction:        '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3str11validations23next_code_point_reverse17he6feb675cc8dc9faE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                       Line: 171, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14815'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN96_$LT$core..str..iter..Chars$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17ha07a533ef2f8d264E'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ' @ '\n  - String:          '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                   Line: 173, Column: 45 }\nFunction:        '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                       Line: 173, Column: 45 }\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 682, Column: 23 }\nFunction:        '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 141, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 678, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - String:          '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 684, Column: 23 }\nFunction:        '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN102_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..exact_size..ExactSizeIterator$GT$3len17h884fcbe89e2521e6E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 678, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - String:          '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 683, Column: 31 }\nFunction:        '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN102_$LT$core..str..iter..CharIndices$u20$as$u20$core..iter..traits..double_ended..DoubleEndedIterator$GT$9next_back17h83e0ee46f8f984f2E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 678, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14820'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 686, Column: 16 }\nFunction:        '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN53_$LT$F$u20$as$u20$core..str..pattern..MultiCharEq$GT$7matches17h007b1a6ebc0efe04E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 678, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14890'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ';'\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 398, Column: 24 }\nFunction:        '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 682, Column: 23 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 684, Column: 23 }\nFunction:        '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 684, Column: 23 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 315, Column: 19 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN104_$LT$core..str..pattern..MultiCharEqSearcher$LT$C$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$9next_back17h76091577dd9db627E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 771, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14660'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3str7pattern15ReverseSearcher16next_reject_back17h558f6033f00a005dE\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ' @ '\n  - String:          '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ';'\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                   Line: 173, Column: 25 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          'sinking '\n  - Inst:            add\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                       Line: 173, Column: 25 }\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                   Line: 800, Column: 18 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          'sinking '\n  - Inst:            add\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                       Line: 800, Column: 18 }\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                   Line: 800, Column: 18 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          'sinking '\n  - Inst:            ptrtoint\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                       Line: 800, Column: 18 }\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                   Line: 800, Column: 18 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          'sinking '\n  - Inst:            add\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                       Line: 800, Column: 18 }\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          'sinking '\n  - Inst:            sub\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                   Line: 800, Column: 18 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          'sinking '\n  - Inst:            ptrtoint\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                       Line: 800, Column: 18 }\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                   Line: 800, Column: 18 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          'sinking '\n  - Inst:            ptrtoint\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                       Line: 800, Column: 18 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 682, Column: 23 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 682, Column: 23 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 682, Column: 23 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 682, Column: 23 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 682, Column: 23 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                       Line: 682, Column: 23 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/pattern.rs', \n                   Line: 682, Column: 23 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            PromoteLoopAccessesToScalar\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 131, Column: 25 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          Moving accesses to memory location out of the loop\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                   Line: 172, Column: 35 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                       Line: 172, Column: 35 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                   Line: 173, Column: 25 }\nFunction:        '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/iter.rs', \n                       Line: 173, Column: 25 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', \n                   Line: 2026, Column: 27 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN49_$LT$F$u20$as$u20$core..str..pattern..Pattern$GT$13into_searcher17h2b27c836decaa8b5E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', \n                       Line: 2020, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15045'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', \n                   Line: 2027, Column: 31 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN99_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..Searcher$GT$11next_reject17hc96567a4a309bdbaE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', \n                       Line: 2020, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14690'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', \n                   Line: 2032, Column: 31 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN106_$LT$core..str..pattern..CharPredicateSearcher$LT$F$GT$$u20$as$u20$core..str..pattern..ReverseSearcher$GT$16next_reject_back17ha079d416fecabff8E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', \n                       Line: 2020, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14685'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/convert/mod.rs', \n                   Line: 660, Column: 9 }\nFunction:        '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h1ff9fd8219d8f81eE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN3std4path77_$LT$impl$u20$core..convert..AsRef$LT$std..path..Path$GT$$u20$for$u20$str$GT$6as_ref17h8d67b7edc278bb73E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h1ff9fd8219d8f81eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/convert/mod.rs', \n                       Line: 659, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h1ff9fd8219d8f81eE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/convert/mod.rs', \n                   Line: 660, Column: 9 }\nFunction:        '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h7ab4d05ba2261134E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN79_$LT$std..path..Path$u20$as$u20$core..convert..AsRef$LT$std..path..Path$GT$$GT$6as_ref17h3b9aadfaf4d7b5baE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h7ab4d05ba2261134E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/convert/mod.rs', \n                       Line: 659, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h7ab4d05ba2261134E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                   Line: 1116, Column: 9 }\nFunction:        _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E\nArgs:\n  - Callee:          _ZN3std2fs11OpenOptions5_open17h2b8281ba3b37867cE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1115, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                   Line: 1116, Column: 9 }\nFunction:        _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E\nArgs:\n  - Callee:          _ZN3std2fs11OpenOptions5_open17h2b8281ba3b37867cE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1115, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                   Line: 1116, Column: 20 }\nFunction:        _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h7ab4d05ba2261134E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1115, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                   Line: 363, Column: 9 }\nFunction:        _ZN3std2fs4File4open17h34e474e28e0e0bdcE\nArgs:\n  - Callee:          _ZN3std2fs11OpenOptions3new17ha1ecab05c90a6e6bE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2fs4File4open17h34e474e28e0e0bdcE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 362, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                   Line: 363, Column: 9 }\nFunction:        _ZN3std2fs4File4open17h34e474e28e0e0bdcE\nArgs:\n  - Callee:          _ZN3std2fs11OpenOptions4read17h191134fdeea02ff4E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2fs4File4open17h34e474e28e0e0bdcE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 362, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                   Line: 363, Column: 9 }\nFunction:        _ZN3std2fs4File4open17h34e474e28e0e0bdcE\nArgs:\n  - Callee:          _ZN3std2fs11OpenOptions3new17ha1ecab05c90a6e6bE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2fs4File4open17h34e474e28e0e0bdcE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 362, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                   Line: 363, Column: 9 }\nFunction:        _ZN3std2fs4File4open17h34e474e28e0e0bdcE\nArgs:\n  - Callee:          _ZN3std2fs11OpenOptions4read17h191134fdeea02ff4E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2fs4File4open17h34e474e28e0e0bdcE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 362, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                   Line: 363, Column: 44 }\nFunction:        _ZN3std2fs4File4open17h34e474e28e0e0bdcE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN55_$LT$$RF$T$u20$as$u20$core..convert..AsRef$LT$U$GT$$GT$6as_ref17h1ff9fd8219d8f81eE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2fs4File4open17h34e474e28e0e0bdcE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 362, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2fs4File4open17h34e474e28e0e0bdcE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '44'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                   Line: 363, Column: 9 }\nFunction:        _ZN3std2fs4File4open17h34e474e28e0e0bdcE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2fs11OpenOptions4open17hda424fd69ce2eb67E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2fs4File4open17h34e474e28e0e0bdcE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 362, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2fs4File4open17h34e474e28e0e0bdcE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 130, Column: 9 }\nFunction:        '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 93, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '145'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h3e40c755a2fa20a3E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec15RawVec$LT$T$GT$13with_capacity17hbc080b502a3792beE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN5alloc5boxed22Box$LT$$u5b$T$u5d$$GT$16new_uninit_slice17hcd51cfcf2341d13bE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ' @ '\n  - String:          _ZN3std2io8buffered9bufreader6buffer6Buffer13with_capacity17he49de4165492f635E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ' @ '\n  - String:          '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '33'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                   Line: 635, Column: 18 }\nFunction:        '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$8into_box17h2528ab0753e97cf1E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 93, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc5boxed22Box$LT$$u5b$T$u5d$$GT$16new_uninit_slice17hcd51cfcf2341d13bE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ' @ '\n  - String:          _ZN3std2io8buffered9bufreader6buffer6Buffer13with_capacity17he49de4165492f635E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ' @ '\n  - String:          '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '33'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 99, Column: 40 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity28_$u7b$$u7b$closure$u7d$$u7d$17h06ac7f0690cc62f0E'\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity28_$u7b$$u7b$closure$u7d$$u7d$17h06ac7f0690cc62f0E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1184, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 99, Column: 40 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity28_$u7b$$u7b$closure$u7d$$u7d$17h06ac7f0690cc62f0E'\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity28_$u7b$$u7b$closure$u7d$$u7d$17h06ac7f0690cc62f0E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1184, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 98, Column: 9 }\nFunction:        '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$8allocate17h3ef17fcd49b45161E'\nArgs:\n  - String:          ''''\n  - Callee:          __rust_alloc\n    DebugLoc:        { File: 'src/main.rs', Line: 14, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$8allocate17h3ef17fcd49b45161E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/alloc.rs', \n                       Line: 45, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '80'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc5alloc5alloc17ha8621a78912994ecE\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$8allocate17h3ef17fcd49b45161E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 99, Column: 40 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1143, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 108, Column: 40 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1143, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 99, Column: 40 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1143, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 108, Column: 40 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1143, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1152, Column: 43 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3raw11TableLayout20calculate_layout_for17hd5066d4e0b6d4059E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 251, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1143, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '0'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\n  - String:          ':'\n  - Line:            '9'\n  - String:          ':'\n  - Column:          '43'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/alloc.rs', \n                   Line: 61, Column: 9 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$8allocate17h3ef17fcd49b45161E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1143, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14915'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw5alloc5inner8do_alloc17hc514418911661440E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\n  - String:          ':'\n  - Line:            '14'\n  - String:          ':'\n  - Column:          '38'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1132, Column: 51 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\nArgs:\n  - Callee:          _ZN9hashbrown3raw4sse25Group12static_empty17ha645b8eba9d61ef3E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1173, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1132, Column: 51 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\nArgs:\n  - Callee:          _ZN9hashbrown3raw4sse25Group12static_empty17ha645b8eba9d61ef3E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1173, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1184, Column: 21 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3raw19capacity_to_buckets17h6b8ddf6eaa02825eE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1173, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14955'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\n  - String:          ':'\n  - Line:            '11'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/option.rs', \n                   Line: 1239, Column: 25 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity28_$u7b$$u7b$closure$u7d$$u7d$17h06ac7f0690cc62f0E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1173, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14980'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core6option15Option$LT$T$GT$10ok_or_else17he230d43d141388caE'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\n  - String:          ':'\n  - Line:            '11'\n  - String:          ':'\n  - Column:          '51'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1186, Column: 30 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$17new_uninitialized17h6e702c463ea721c8E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1173, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14740'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\n  - String:          ':'\n  - Line:            '13'\n  - String:          ':'\n  - Column:          '30'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 462, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-40'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN9hashbrown3raw11TableLayout3new17h740adb3f94ec47e3E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 468, Column: 20 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1173, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 462, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '125'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 177, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\nArgs:\n  - Callee:          _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 189, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 177, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\nArgs:\n  - Callee:          _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 189, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                   Line: 433, Column: 16 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                       Line: 436, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5alloc6layout6Layout5array17hd0e0ef8e7773a3d9E\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '32'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 184, Column: 45 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '105'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\n  - String:          ':'\n  - Line:            '16'\n  - String:          ':'\n  - Column:          '45'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 246, Column: 9 }\nFunction:        '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$15allocate_zeroed17h226acb6c11978e3eE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 176, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$15allocate_zeroed17h226acb6c11978e3eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 245, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '95'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$15allocate_zeroed17h226acb6c11978e3eE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 177, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\nArgs:\n  - Callee:          _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 189, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 177, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\nArgs:\n  - Callee:          _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 189, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                   Line: 433, Column: 16 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                       Line: 436, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-20'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5alloc6layout6Layout5array17h0d164c05247cc9e2E\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '32'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 184, Column: 45 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '105'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\n  - String:          ':'\n  - Line:            '16'\n  - String:          ':'\n  - Column:          '45'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 185, Column: 38 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$15allocate_zeroed17h226acb6c11978e3eE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14900'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\n  - String:          ':'\n  - Line:            '17'\n  - String:          ':'\n  - Column:          '38'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 332, Column: 19 }\nFunction:        _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 328, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 332, Column: 19 }\nFunction:        _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 328, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 241, Column: 9 }\nFunction:        _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc5alloc6Global10alloc_impl17hae3197e0a1e7c5d9E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 328, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14910'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                   Line: 1235, Column: 17 }\nFunction:        '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h7d351658519b3511E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h7d351658519b3511E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                       Line: 1227, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h7d351658519b3511E'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h7d351658519b3511E'\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/mem/mod.rs', \n                   Line: 987, Column: 24 }\nFunction:        _ZN6anyhow5error17object_drop_front17hdbb921d55eea020eE\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN6anyhow5error17object_drop_front17hdbb921d55eea020eE\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 597, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3mem4drop17h3adf69f494eeac6cE\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ' @ '\n  - String:          _ZN6anyhow5error17object_drop_front17hdbb921d55eea020eE\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                   Line: 909, Column: 18 }\nFunction:        '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..error..Error$GT$6source17hf6dfa1cc3bd8b261E'\nArgs:\n  - Callee:          _ZN6anyhow5error9ErrorImpl5error17hfc586854135b20c9E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..error..Error$GT$6source17hf6dfa1cc3bd8b261E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 908, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                   Line: 909, Column: 18 }\nFunction:        '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..error..Error$GT$6source17hf6dfa1cc3bd8b261E'\nArgs:\n  - Callee:          _ZN6anyhow5error9ErrorImpl5error17hfc586854135b20c9E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..error..Error$GT$6source17hf6dfa1cc3bd8b261E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 908, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/error.rs', \n                   Line: 121, Column: 9 }\nFunction:        _ZN4core5error5Error5cause17hf9725e2bbce76f0aE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..error..Error$GT$6source17hf6dfa1cc3bd8b261E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 908, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5error5Error5cause17hf9725e2bbce76f0aE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/error.rs', \n                       Line: 120, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '15'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5error5Error5cause17hf9725e2bbce76f0aE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                   Line: 927, Column: 31 }\nFunction:        '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Display$GT$3fmt17hb94fd50e247a9b0aE'\nArgs:\n  - Callee:          _ZN6anyhow5error9ErrorImpl5error17hfc586854135b20c9E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Display$GT$3fmt17hb94fd50e247a9b0aE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 926, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                   Line: 927, Column: 31 }\nFunction:        '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Display$GT$3fmt17hb94fd50e247a9b0aE'\nArgs:\n  - Callee:          _ZN6anyhow5error9ErrorImpl5error17hfc586854135b20c9E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN72_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Display$GT$3fmt17hb94fd50e247a9b0aE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 926, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                   Line: 918, Column: 18 }\nFunction:        '_ZN70_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Debug$GT$3fmt17h38ff4fce26d47c03E'\nArgs:\n  - Callee:          '_ZN6anyhow3fmt42_$LT$impl$u20$anyhow..error..ErrorImpl$GT$5debug17hdd87cd700aa5b2cdE'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN70_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Debug$GT$3fmt17h38ff4fce26d47c03E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 917, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                   Line: 918, Column: 18 }\nFunction:        '_ZN70_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Debug$GT$3fmt17h38ff4fce26d47c03E'\nArgs:\n  - Callee:          '_ZN6anyhow3fmt42_$LT$impl$u20$anyhow..error..ErrorImpl$GT$5debug17hdd87cd700aa5b2cdE'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN70_$LT$anyhow..error..ErrorImpl$LT$E$GT$$u20$as$u20$core..fmt..Debug$GT$3fmt17h38ff4fce26d47c03E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 917, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr74drop_in_place$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$17h3af844d6b38561a8E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr74drop_in_place$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$17h3af844d6b38561a8E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '95'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr74drop_in_place$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$17h3af844d6b38561a8E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                   Line: 1235, Column: 17 }\nFunction:        '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2f131d6962e05049E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2f131d6962e05049E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                       Line: 1227, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2f131d6962e05049E'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr74drop_in_place$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$17h3af844d6b38561a8E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '95'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2f131d6962e05049E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/mem/mod.rs', \n                   Line: 987, Column: 24 }\nFunction:        _ZN6anyhow5error11object_drop17h1469acd2381ff032E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr99drop_in_place$LT$alloc..boxed..Box$LT$anyhow..error..ErrorImpl$LT$std..io..error..Error$GT$$GT$$GT$17hbb6280d708fca627E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN6anyhow5error11object_drop17h1469acd2381ff032E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 589, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14870'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3mem4drop17hc551c677cfbba812E\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ' @ '\n  - String:          _ZN6anyhow5error11object_drop17h1469acd2381ff032E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                   Line: 217, Column: 9 }\nFunction:        '_ZN5alloc5boxed12Box$LT$T$GT$3new17h5f797a9db89e1e16E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc5alloc15exchange_malloc17hc29b5b4926939088E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc5boxed12Box$LT$T$GT$3new17h5f797a9db89e1e16E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/boxed.rs', \n                       Line: 215, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14865'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc5boxed12Box$LT$T$GT$3new17h5f797a9db89e1e16E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                   Line: 226, Column: 40 }\nFunction:        '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc5boxed12Box$LT$T$GT$3new17h5f797a9db89e1e16E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 218, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - String:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '40'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 35, Column: 22 }\nFunction:        '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\nArgs:\n  - Callee:          _ZN12mimallocator21fundamental_alignment17h7b0d901c9cf11b0cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 218, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 38, Column: 13 }\nFunction:        '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\nArgs:\n  - Callee:          mi_malloc_aligned\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 218, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 36, Column: 13 }\nFunction:        '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\nArgs:\n  - Callee:          mi_malloc\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 218, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 332, Column: 19 }\nFunction:        '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 218, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                   Line: 237, Column: 21 }\nFunction:        '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN6anyhow3ptr12Own$LT$T$GT$3new17h9dcae3f38a9f8cf9E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 218, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\n  - String:          ':'\n  - Line:            '19'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                   Line: 103, Column: 18 }\nFunction:        '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$8from_std17h498f00c1e6c98754E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 218, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$8from_std17h498f00c1e6c98754E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 84, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '150'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                   Line: 531, Column: 9 }\nFunction:        '_ZN6anyhow5error72_$LT$impl$u20$core..convert..From$LT$E$GT$$u20$for$u20$anyhow..Error$GT$4from17h3fbcaf4e75eb45afE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$8from_std17h498f00c1e6c98754E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN6anyhow5error72_$LT$impl$u20$core..convert..From$LT$E$GT$$u20$for$u20$anyhow..Error$GT$4from17h3fbcaf4e75eb45afE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 529, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '0'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN6anyhow5error72_$LT$impl$u20$core..convert..From$LT$E$GT$$u20$for$u20$anyhow..Error$GT$4from17h3fbcaf4e75eb45afE'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                   Line: 103, Column: 18 }\nFunction:        '_ZN6anyhow5error72_$LT$impl$u20$core..convert..From$LT$E$GT$$u20$for$u20$anyhow..Error$GT$4from17h3fbcaf4e75eb45afE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 218, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN6anyhow5error72_$LT$impl$u20$core..convert..From$LT$E$GT$$u20$for$u20$anyhow..Error$GT$4from17h3fbcaf4e75eb45afE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 529, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '150'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 3610, Column: 13 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17h230a15dde8d10691E'\nArgs:\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17len_mismatch_fail17hd27ebc611dcbd4d3E'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17h230a15dde8d10691E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 3593, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 3610, Column: 13 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17h230a15dde8d10691E'\nArgs:\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17len_mismatch_fail17hd27ebc611dcbd4d3E'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17h230a15dde8d10691E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 3593, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 304, Column: 55 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17h230a15dde8d10691E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 3593, Column: 0 }\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 304, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '5'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '55'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 436, Column: 9 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$3get17hba0d1d8419e17cdfE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 80, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN108_$LT$core..ops..range..RangeTo$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$3get17h80d378b8ef409177E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$3get17haa1997c472ad941aE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '46'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 85, Column: 13 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 80, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14985'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 26, Column: 9 }\nFunction:        '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h09c873751d508e46E'\nArgs:\n  - Callee:          '_ZN47_$LT$std..fs..File$u20$as$u20$std..io..Read$GT$8read_buf17h24f44ecddda3db77E'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h09c873751d508e46E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 25, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 26, Column: 9 }\nFunction:        '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h09c873751d508e46E'\nArgs:\n  - Callee:          '_ZN47_$LT$std..fs..File$u20$as$u20$std..io..Read$GT$8read_buf17h24f44ecddda3db77E'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h09c873751d508e46E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 25, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 100, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3max17hae4946db965cca35E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          _ZN3std2io7readbuf11BorrowedBuf8set_init17hdd27df897cb6d85bE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ' @ '\n  - String:          _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\n  - String:          ':'\n  - Line:            '11'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 114, Column: 13 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN3std2io5impls57_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$mut$u20$R$GT$8read_buf17h09c873751d508e46E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 100, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\n  - String:          ':'\n  - Line:            '14'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 76 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 86 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 1865, Column: 9 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$8split_at17hb040f089413910f9E'\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$8split_at17hb040f089413910f9E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 1864, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 1865, Column: 9 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$8split_at17hb040f089413910f9E'\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$8split_at17hb040f089413910f9E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 1864, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 422, Column: 13 }\nFunction:        '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h2583b64bd1eccc39E'\nArgs:\n  - Callee:          _ZN4core5slice5index24slice_end_index_len_fail17h09e01c281ef61abfE\n  - String:          ' will not be inlined into '\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 422, Column: 13 }\nFunction:        '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h2583b64bd1eccc39E'\nArgs:\n  - Callee:          _ZN4core5slice5index24slice_end_index_len_fail17h09e01c281ef61abfE\n  - String:          ' will not be inlined into '\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 243, Column: 22 }\nFunction:        '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 235, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 243, Column: 13 }\nFunction:        '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 235, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 243, Column: 22 }\nFunction:        '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 235, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 243, Column: 13 }\nFunction:        '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 235, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 814, Column: 9 }\nFunction:        '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6min_by17hd4f33f4a265e89c9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1171, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 235, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3min17h6955f9dd2679a295E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3min17h3b66dd7ee6e4c354E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 237, Column: 22 }\nFunction:        '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$8split_at17hb040f089413910f9E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 235, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14990'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 463, Column: 9 }\nFunction:        '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\nArgs:\n  - String:          ''''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 235, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '10'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h335d4021eba981ccE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\n  - String:          ':'\n  - Line:            '10'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 245, Column: 13 }\nFunction:        '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15copy_from_slice17h230a15dde8d10691E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 235, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\n  - String:          ':'\n  - Line:            '10'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 270, Column: 20 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\nArgs:\n  - Callee:          '_ZN47_$LT$std..fs..File$u20$as$u20$std..io..Read$GT$4read17hbb7f0df773dc4115E'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 264, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 270, Column: 20 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\nArgs:\n  - Callee:          '_ZN47_$LT$std..fs..File$u20$as$u20$std..io..Read$GT$4read17hbb7f0df773dc4115E'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 264, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 379, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io8buffered9bufreader6buffer6Buffer8fill_buf17had35012082246f1bE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 264, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14900'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$8fill_buf17h29b0fdb1806a6a16E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\n  - String:          ':'\n  - Line:            '9'\n  - String:          ':'\n  - Column:          '32'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 274, Column: 13 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN3std2io5impls60_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u5b$u8$u5d$$GT$4read17h4281f0d05503b4bfE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 264, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15015'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\n  - String:          ':'\n  - Line:            '10'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 814, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6min_by17hd4f33f4a265e89c9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1171, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 264, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3min17h6955f9dd2679a295E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3min17h3b66dd7ee6e4c354E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          _ZN3std2io8buffered9bufreader6buffer6Buffer7consume17hb7e1989b2442b326E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ' @ '\n  - String:          '_ZN85_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$7consume17h7344573d7200fc4bE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ' @ '\n  - String:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ';'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 243, Column: 22 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 119, Column: 9 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 243, Column: 22 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 119, Column: 9 }\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 506, Column: 13 }\nFunction:        '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h383d22df7fa14028E'\nArgs:\n  - Callee:          _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE\n  - String:          ' will not be inlined into '\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 504, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 506, Column: 13 }\nFunction:        '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h383d22df7fa14028E'\nArgs:\n  - Callee:          _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE\n  - String:          ' will not be inlined into '\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 504, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$4read17hd56d0ab94fa4de99E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io18default_read_exact17hbdd649a58a871350E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 465, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14755'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io18default_read_exact17hbdd649a58a871350E\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io5error5Error4kind17hbd063f975c9a6bc2E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io18default_read_exact17hbdd649a58a871350E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 465, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14700'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io18default_read_exact17hbdd649a58a871350E\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 29, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io18default_read_exact17hbdd649a58a871350E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 465, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14975'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h51b3fa1d9bf735cbE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN3std2io18default_read_exact17hbdd649a58a871350E\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 476, Column: 5 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io18default_read_exact17hbdd649a58a871350E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 465, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '90'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io18default_read_exact17hbdd649a58a871350E\n  - String:          ':'\n  - Line:            '11'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 57, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 52, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 268, Column: 12 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 379, Column: 27 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 379, Column: 27 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 72, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 72, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 72, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 111, Column: 30 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 277, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 277, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1962, Column: 23 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1962, Column: 23 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 270, Column: 20 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 473, Column: 27 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 467, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 476, Column: 5 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 476, Column: 5 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 466, Column: 11 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 117, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 117, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 117, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 117, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 117, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 243, Column: 22 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 119, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 117, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 117, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 117, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 117, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 117, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 243, Column: 22 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 119, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        _ZN3std2io18default_read_exact17hbdd649a58a871350E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 304, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io8buffered9bufreader6buffer6Buffer12consume_with17h8040e864ccc635b2E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 303, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '12'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 308, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io18default_read_exact17hbdd649a58a871350E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 303, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14400'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 466, Column: 11 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 243, Column: 22 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 119, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1962, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 243, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 243, Column: 22 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 119, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1962, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        '_ZN4core6result19Result$LT$T$C$E$GT$3map17h5d4c9a7b44af8308E'\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core6result19Result$LT$T$C$E$GT$3map17h5d4c9a7b44af8308E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 744, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core6result19Result$LT$T$C$E$GT$3map17h5d4c9a7b44af8308E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 23 }\nFunction:        '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h246a2ae22ca37d1dE'\nArgs:\n  - Callee:          _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h246a2ae22ca37d1dE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1071, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 23 }\nFunction:        '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h246a2ae22ca37d1dE'\nArgs:\n  - Callee:          _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h246a2ae22ca37d1dE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1071, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 458, Column: 9 }\nFunction:        '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h2c05cf6378e99d5fE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/lib.rs', \n                       Line: 2193, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15045'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN108_$LT$core..ops..range..RangeTo$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h0ee9aad9ea6a159aE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN4core5slice5index74_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$5index17hb9cbc87ce97b51dfE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/array/mod.rs', \n                   Line: 209, Column: 9 }\nFunction:        '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core6result19Result$LT$T$C$E$GT$3map17h5d4c9a7b44af8308E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/lib.rs', \n                       Line: 2193, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15005'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN53_$LT$T$u20$as$u20$core..convert..TryInto$LT$U$GT$$GT$8try_into17hb8cd9d3a00a41eedE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '37'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/lib.rs', \n                   Line: 2194, Column: 28 }\nFunction:        '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h246a2ae22ca37d1dE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/lib.rs', \n                       Line: 2193, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14955'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '28'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                   Line: 219, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN82_$LT$std..io..buffered..bufreader..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$10read_exact17hca5b4c22bebebbb9E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 217, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14350'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                   Line: 220, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN64_$LT$byteorder..LittleEndian$u20$as$u20$byteorder..ByteOrder$GT$8read_u3217h572a4d8e019145c5E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 217, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '12'\n  - String:          ';'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 466, Column: 11 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 243, Column: 22 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 119, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1962, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 218, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 218, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 218, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 243, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 218, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 218, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 218, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 76 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 42, Column: 86 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 243, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 118, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 72, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                       Line: 141, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 243, Column: 22 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                       Line: 119, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1962, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 218, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 218, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 218, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 243, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 218, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 270, Column: 20 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 218, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 746, Column: 25 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 218, Column: 23 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error.rs', \n                       Line: 913, Column: 36 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 92, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr76drop_in_place$LT$core..result..Result$LT$u32$C$std..io..error..Error$GT$$GT$17h616b09680f5b9f11E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr76drop_in_place$LT$core..result..Result$LT$u32$C$std..io..error..Error$GT$$GT$17h616b09680f5b9f11E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '95'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr76drop_in_place$LT$core..result..Result$LT$u32$C$std..io..error..Error$GT$$GT$17h616b09680f5b9f11E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 177, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\nArgs:\n  - Callee:          _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 189, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 177, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\nArgs:\n  - Callee:          _ZN5alloc7raw_vec17capacity_overflow17h49caa6b09f3d437eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 189, Column: 27 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\nArgs:\n  - Callee:          _ZN5alloc5alloc18handle_alloc_error17hf8ed70d85ae20e70E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                   Line: 433, Column: 16 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                       Line: 436, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-20'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5alloc6layout6Layout5array17ha9e0225a29b9a19fE\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '32'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 184, Column: 45 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$8allocate17h42758c183b8cfb2eE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14895'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\n  - String:          ':'\n  - Line:            '16'\n  - String:          ':'\n  - Column:          '45'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/os/fd/owned.rs', \n                   Line: 178, Column: 21 }\nFunction:        '_ZN69_$LT$std..os..fd..owned..OwnedFd$u20$as$u20$core..ops..drop..Drop$GT$4drop17h90c0e28bc2f139a6E'\nArgs:\n  - Callee:          close\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN69_$LT$std..os..fd..owned..OwnedFd$u20$as$u20$core..ops..drop..Drop$GT$4drop17h90c0e28bc2f139a6E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/os/fd/owned.rs', \n                       Line: 170, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/os/fd/owned.rs', \n                   Line: 178, Column: 21 }\nFunction:        '_ZN69_$LT$std..os..fd..owned..OwnedFd$u20$as$u20$core..ops..drop..Drop$GT$4drop17h90c0e28bc2f139a6E'\nArgs:\n  - Callee:          close\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN69_$LT$std..os..fd..owned..OwnedFd$u20$as$u20$core..ops..drop..Drop$GT$4drop17h90c0e28bc2f139a6E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/os/fd/owned.rs', \n                       Line: 170, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr48drop_in_place$LT$std..os..fd..owned..OwnedFd$GT$17hf3e612f139eadf2eE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN69_$LT$std..os..fd..owned..OwnedFd$u20$as$u20$core..ops..drop..Drop$GT$4drop17h90c0e28bc2f139a6E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr48drop_in_place$LT$std..os..fd..owned..OwnedFd$GT$17hf3e612f139eadf2eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr48drop_in_place$LT$std..os..fd..owned..OwnedFd$GT$17hf3e612f139eadf2eE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr49drop_in_place$LT$std..sys..unix..fd..FileDesc$GT$17h769dd353d5316370E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr48drop_in_place$LT$std..os..fd..owned..OwnedFd$GT$17hf3e612f139eadf2eE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr49drop_in_place$LT$std..sys..unix..fd..FileDesc$GT$17h769dd353d5316370E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr49drop_in_place$LT$std..sys..unix..fd..FileDesc$GT$17h769dd353d5316370E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr45drop_in_place$LT$std..sys..unix..fs..File$GT$17ha1c7f45478fc6597E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr49drop_in_place$LT$std..sys..unix..fd..FileDesc$GT$17h769dd353d5316370E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr45drop_in_place$LT$std..sys..unix..fs..File$GT$17ha1c7f45478fc6597E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr45drop_in_place$LT$std..sys..unix..fs..File$GT$17ha1c7f45478fc6597E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr34drop_in_place$LT$std..fs..File$GT$17hb7e207cdea1634ddE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr45drop_in_place$LT$std..sys..unix..fs..File$GT$17ha1c7f45478fc6597E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr34drop_in_place$LT$std..fs..File$GT$17hb7e207cdea1634ddE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr34drop_in_place$LT$std..fs..File$GT$17hb7e207cdea1634ddE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr65drop_in_place$LT$std..io..buffered..bufreader..buffer..Buffer$GT$17h4e1d01f4cafc09fbE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr34drop_in_place$LT$std..fs..File$GT$17hb7e207cdea1634ddE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 666, Column: 12 }\nFunction:        '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3cmp5impls57_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$2lt17hbc71024a1daecb16E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1363, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 665, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - String:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '12'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 668, Column: 33 }\nFunction:        '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$18backward_unchecked17hb8e96bbe702a714eE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 665, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '33'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                   Line: 166, Column: 5 }\nFunction:        _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3cmp5impls55_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$u32$GT$2lt17hbc640549d95e956cE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - String:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                   Line: 294, Column: 13 }\nFunction:        '_ZN4core3ops8function5impls79_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$8call_mut17h4a62ca7df4afe95fE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ops8function5impls79_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$8call_mut17h4a62ca7df4afe95fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 293, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ops8function5impls79_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$8call_mut17h4a62ca7df4afe95fE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 879, Column: 36 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 876, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 880, Column: 36 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 876, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 879, Column: 36 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 876, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 880, Column: 36 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 876, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 267, Column: 35 }\nFunction:        '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 254, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 271, Column: 26 }\nFunction:        '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 254, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 271, Column: 36 }\nFunction:        '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 254, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 267, Column: 35 }\nFunction:        '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 254, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 271, Column: 26 }\nFunction:        '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 254, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 271, Column: 36 }\nFunction:        '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 254, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 267, Column: 26 }\nFunction:        '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ops8function5impls79_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$8call_mut17h4a62ca7df4afe95fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 293, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 254, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n  - String:          ':'\n  - Line:            '13'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 271, Column: 17 }\nFunction:        '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ops8function5impls79_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$8call_mut17h4a62ca7df4afe95fE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 254, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n  - String:          ':'\n  - Line:            '17'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 276, Column: 13 }\nFunction:        '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 876, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 254, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '75'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n  - String:          ':'\n  - Line:            '22'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 420, Column: 13 }\nFunction:        '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E'\nArgs:\n  - Callee:          _ZN4core5slice5index22slice_index_order_fail17h06dec397234c3a6cE\n  - String:          ' will not be inlined into '\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 422, Column: 13 }\nFunction:        '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E'\nArgs:\n  - Callee:          _ZN4core5slice5index24slice_end_index_len_fail17h09e01c281ef61abfE\n  - String:          ' will not be inlined into '\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 420, Column: 13 }\nFunction:        '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E'\nArgs:\n  - Callee:          _ZN4core5slice5index22slice_index_order_fail17h06dec397234c3a6cE\n  - String:          ' will not be inlined into '\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 422, Column: 13 }\nFunction:        '_ZN106_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h9c28f2631a166e04E'\nArgs:\n  - Callee:          _ZN4core5slice5index24slice_end_index_len_fail17h09e01c281ef61abfE\n  - String:          ' will not be inlined into '\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 826, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 665, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 249, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4iter5range116_$LT$impl$u20$core..iter..traits..double_ended..DoubleEndedIterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9next_back17h98253b0f2ebbde87E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN98_$LT$core..iter..adapters..rev..Rev$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h45d470ce7a0405eeE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\n  - String:          ':'\n  - Line:            '33'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 283, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 254, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 249, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '175'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\n  - String:          ':'\n  - Line:            '34'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 826, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 665, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 249, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4iter5range116_$LT$impl$u20$core..iter..traits..double_ended..DoubleEndedIterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9next_back17h98253b0f2ebbde87E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN98_$LT$core..iter..adapters..rev..Rev$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h45d470ce7a0405eeE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\n  - String:          ':'\n  - Line:            '38'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 288, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 876, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 249, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '75'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\n  - String:          ':'\n  - Line:            '39'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 463, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          ''''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 249, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '65'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h63f39e724073a3d2E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\n  - String:          ':'\n  - Line:            '40'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 289, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4sort8heapsort28_$u7b$$u7b$closure$u7d$$u7d$17h7654857bed9bb48eE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 249, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14835'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\n  - String:          ':'\n  - Line:            '40'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 879, Column: 36 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 879, Column: 36 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 271, Column: 17 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 271, Column: 17 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h164e91993159f120E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h164e91993159f120E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 750, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h164e91993159f120E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 759, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h164e91993159f120E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 750, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 758, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '5'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 760, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h164e91993159f120E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 750, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 758, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '5'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 761, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h164e91993159f120E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 758, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 760, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 759, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 760, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 760, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 759, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 760, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 61 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 751, Column: 61 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 753, Column: 17 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 761, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 759, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 761, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 761, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 759, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 761, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 40 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 751, Column: 40 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 61 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 753, Column: 17 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 753, Column: 17 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 760, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 759, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 760, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 759, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 753, Column: 17 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 761, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 759, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 761, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 759, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 753, Column: 17 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 753, Column: 17 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 768, Column: 17 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 758, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 766, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '105'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 760, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 759, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 760, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 759, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 753, Column: 17 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 761, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 759, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 761, Column: 13 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 759, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 753, Column: 17 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 753, Column: 17 }\nFunction:        '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 753, Column: 17 }\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 978, Column: 32 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 966, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 978, Column: 43 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 966, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 978, Column: 32 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 966, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 978, Column: 43 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 966, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 463, Column: 9 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\nArgs:\n  - String:          ''''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 966, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '65'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h63f39e724073a3d2E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '33'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 463, Column: 9 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\nArgs:\n  - String:          ''''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 966, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '65'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h63f39e724073a3d2E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '46'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 978, Column: 17 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3mem4swap17ha9fe964faa446cbeE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 966, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15020'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 963, Column: 9 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse17h9207c78ad9af6638E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse7revswap17h3567edd411607fdaE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse17h9207c78ad9af6638E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 943, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14890'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse17h9207c78ad9af6638E'\n  - String:          ':'\n  - Line:            '20'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 778, Column: 9 }\nFunction:        _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h095d5e2af22083f8E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 722, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14915'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\n  - String:          ':'\n  - Line:            '56'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 772, Column: 13 }\nFunction:        _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 766, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 722, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '110'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\n  - String:          ':'\n  - Line:            '50'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 773, Column: 13 }\nFunction:        _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 766, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 722, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '110'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\n  - String:          ':'\n  - Line:            '51'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 774, Column: 13 }\nFunction:        _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4sort12choose_pivot28_$u7b$$u7b$closure$u7d$$u7d$17h1f80ec46f83c5306E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 722, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14890'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\n  - String:          ':'\n  - Line:            '52'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 786, Column: 9 }\nFunction:        _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$7reverse17h9207c78ad9af6638E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 722, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14975'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\n  - String:          ':'\n  - Line:            '64'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 624, Column: 35 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 189, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 673, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ' @ '\n  - String:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\n  - String:          ':'\n  - Line:            '30'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 707, Column: 29 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4sort14break_patterns28_$u7b$$u7b$closure$u7d$$u7d$17h6513e179dea6d8e5E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 673, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\n  - String:          ':'\n  - Line:            '34'\n  - String:          ':'\n  - Column:          '29'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 714, Column: 13 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 876, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 673, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '75'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\n  - String:          ':'\n  - Line:            '41'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 714, Column: 20 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'hoisting '\n  - Inst:            add\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 714, Column: 20 }\n...\n--- !Passed\nPass:            loop-unroll\nName:            FullyUnrolled\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 621, Column: 12 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'completely unrolled loop with '\n  - UnrollCount:     '3'\n  - String:          ' iterations'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 587, Column: 13 }\nFunction:        '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h42334f934d6ec51aE'\nArgs:\n  - Callee:          _ZN4core5slice5index29slice_end_index_overflow_fail17hd99ee152c27dfee8E\n  - String:          ' will not be inlined into '\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 585, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 587, Column: 13 }\nFunction:        '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h42334f934d6ec51aE'\nArgs:\n  - Callee:          _ZN4core5slice5index29slice_end_index_overflow_fail17hd99ee152c27dfee8E\n  - String:          ' will not be inlined into '\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 585, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 589, Column: 9 }\nFunction:        '_ZN115_$LT$core..ops..range..RangeInclusive$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17h42334f934d6ec51aE'\nArgs:\n  - String:          ''''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 585, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '70'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN83_$LT$core..slice..sort..InsertionHole$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h2ba80b2f1b606843E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 52, Column: 12 }\nFunction:        _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 35, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E\n  - String:          ':'\n  - Line:            '17'\n  - String:          ':'\n  - Column:          '12'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 826, Column: 9 }\nFunction:        _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 665, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 35, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4iter5range116_$LT$impl$u20$core..iter..traits..double_ended..DoubleEndedIterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9next_back17h98253b0f2ebbde87E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN98_$LT$core..iter..adapters..rev..Rev$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h45d470ce7a0405eeE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E\n  - String:          ':'\n  - Line:            '36'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 81, Column: 9 }\nFunction:        _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 35, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E\n  - String:          ':'\n  - Line:            '46'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 73, Column: 21 }\nFunction:        _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 35, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E\n  - String:          ':'\n  - Line:            '38'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 155, Column: 5 }\nFunction:        _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 148, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 155, Column: 5 }\nFunction:        _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 148, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 624, Column: 35 }\nFunction:        _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 189, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 148, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ' @ '\n  - String:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\n  - String:          ':'\n  - Line:            '10'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 627, Column: 9 }\nFunction:        _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 148, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14860'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h5170846dd41b598cE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\n  - String:          ':'\n  - Line:            '15'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 163, Column: 13 }\nFunction:        _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort11insert_tail17hc8781847de8b55b5E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 148, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14955'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\n  - String:          ':'\n  - Line:            '15'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 96, Column: 12 }\nFunction:        _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 88, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '12'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 624, Column: 35 }\nFunction:        _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 189, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 88, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ' @ '\n  - String:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE\n  - String:          ':'\n  - Line:            '43'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 139, Column: 9 }\nFunction:        _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 88, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE\n  - String:          ':'\n  - Line:            '51'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 132, Column: 21 }\nFunction:        _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 88, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE\n  - String:          ':'\n  - Line:            '44'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 180, Column: 5 }\nFunction:        _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 173, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 180, Column: 5 }\nFunction:        _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 173, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 826, Column: 9 }\nFunction:        _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$14spec_next_back17hfd608a57d94d1c67E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 173, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15010'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4iter5range116_$LT$impl$u20$core..iter..traits..double_ended..DoubleEndedIterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9next_back17h98253b0f2ebbde87E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN98_$LT$core..iter..adapters..rev..Rev$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h45d470ce7a0405eeE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\n  - String:          ':'\n  - Line:            '10'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 29, Column: 9 }\nFunction:        _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\nArgs:\n  - String:          ''''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 173, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '70'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h75b6a2ec9a7cc1f9E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\n  - String:          ':'\n  - Line:            '16'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 189, Column: 13 }\nFunction:        _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort11insert_head17h5186ad1a3f7b37edE\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 173, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14960'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\n  - String:          ':'\n  - Line:            '16'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 624, Column: 35 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 189, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 198, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ' @ '\n  - String:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 198, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '787'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\n  - String:          ':'\n  - Line:            '17'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 231, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 876, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 198, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '75'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\n  - String:          ':'\n  - Line:            '33'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 463, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          ''''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 198, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '65'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h63f39e724073a3d2E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\n  - String:          ':'\n  - Line:            '37'\n  - String:          ':'\n  - Column:          '45'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 235, Column: 13 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 148, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 198, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 463, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          ''''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 418, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 198, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '65'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h63f39e724073a3d2E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\n  - String:          ':'\n  - Line:            '40'\n  - String:          ':'\n  - Column:          '46'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 238, Column: 13 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 173, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 198, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 235, Column: 13 }\n...\n--- !Passed\nPass:            loop-unroll\nName:            FullyUnrolled\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'completely unrolled loop with '\n  - UnrollCount:     '5'\n  - String:          ' iterations'\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 238, Column: 13 }\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 1898, Column: 9 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E'\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 1897, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 1898, Column: 9 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E'\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 1897, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 351, Column: 23 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort19partition_in_blocks5width17h7c2e7a704ba7bdc9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 341, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 302, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ':'\n  - Line:            '49'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 355, Column: 27 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort19partition_in_blocks5width17h7c2e7a704ba7bdc9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 341, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 302, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ':'\n  - Line:            '53'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 624, Column: 35 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 189, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 302, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '787'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ' @ '\n  - String:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ':'\n  - Line:            '81'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 397, Column: 40 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 302, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '787'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ':'\n  - Line:            '95'\n  - String:          ':'\n  - Column:          '40'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 431, Column: 30 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort19partition_in_blocks5width17h5923dcf353057604E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 341, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 302, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ':'\n  - Line:            '129'\n  - String:          ':'\n  - Column:          '30'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 431, Column: 53 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort19partition_in_blocks5width17h5923dcf353057604E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 302, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ':'\n  - Line:            '129'\n  - String:          ':'\n  - Column:          '53'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 814, Column: 9 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6min_by17hd4f33f4a265e89c9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1171, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 302, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3min17h6955f9dd2679a295E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3min17h3b66dd7ee6e4c354E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ':'\n  - Line:            '129'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 624, Column: 35 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 189, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 302, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '787'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ' @ '\n  - String:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ':'\n  - Line:            '107'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 425, Column: 39 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 302, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '787'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ':'\n  - Line:            '123'\n  - String:          ':'\n  - Column:          '39'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 624, Column: 35 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 189, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 302, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '787'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ' @ '\n  - String:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ':'\n  - Line:            '166'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 549, Column: 9 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort19partition_in_blocks5width17h7c2e7a704ba7bdc9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 341, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 302, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ':'\n  - Line:            '247'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 546, Column: 9 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort19partition_in_blocks5width17h7c2e7a704ba7bdc9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 341, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 302, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ':'\n  - Line:            '244'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 533, Column: 9 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort19partition_in_blocks5width17h7c2e7a704ba7bdc9E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 302, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ':'\n  - Line:            '231'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 470, Column: 55 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 470, Column: 55 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 472, Column: 46 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 472, Column: 56 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 470, Column: 46 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 475, Column: 48 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 475, Column: 48 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 470, Column: 55 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 470, Column: 55 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 472, Column: 46 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 472, Column: 56 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 470, Column: 46 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 475, Column: 48 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 475, Column: 48 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 568, Column: 26 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core5slice4sort9partition17h806290e418586c69E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 560, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 568, Column: 26 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core5slice4sort9partition17h806290e418586c69E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 560, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 566, Column: 9 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 876, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort9partition17h806290e418586c69E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 560, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '75'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort9partition17h806290e418586c69E\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 567, Column: 26 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 1897, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort9partition17h806290e418586c69E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 560, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '5'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort9partition17h806290e418586c69E\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 588, Column: 28 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort9partition17h806290e418586c69E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 560, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort9partition17h806290e418586c69E\n  - String:          ':'\n  - Line:            '28'\n  - String:          ':'\n  - Column:          '28'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 593, Column: 29 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort9partition17h806290e418586c69E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 560, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort9partition17h806290e418586c69E\n  - String:          ':'\n  - Line:            '33'\n  - String:          ':'\n  - Column:          '29'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 29, Column: 9 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort9partition17h806290e418586c69E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 560, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14930'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h75b6a2ec9a7cc1f9E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort9partition17h806290e418586c69E\n  - String:          ':'\n  - Line:            '38'\n  - String:          ':'\n  - Column:          '40'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 598, Column: 14 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort19partition_in_blocks17h270a7194e60be23bE\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort9partition17h806290e418586c69E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 560, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14575'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort9partition17h806290e418586c69E\n  - String:          ':'\n  - Line:            '38'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 603, Column: 5 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort9partition17h806290e418586c69E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 560, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort9partition17h806290e418586c69E\n  - String:          ':'\n  - Line:            '43'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 606, Column: 5 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 876, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort9partition17h806290e418586c69E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 560, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '75'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort9partition17h806290e418586c69E\n  - String:          ':'\n  - Line:            '46'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 588, Column: 28 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 397, Column: 40 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 470, Column: 55 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 470, Column: 55 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 475, Column: 48 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 475, Column: 48 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 588, Column: 28 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 397, Column: 40 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort9partition17h806290e418586c69E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 622, Column: 22 }\nFunction:        _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 615, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 622, Column: 22 }\nFunction:        _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 615, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 620, Column: 5 }\nFunction:        _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$4swap17hc87d9481ee3b90f7E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 615, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14925'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 621, Column: 22 }\nFunction:        _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 1897, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 615, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '5'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 641, Column: 29 }\nFunction:        _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 615, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\n  - String:          ':'\n  - Line:            '26'\n  - String:          ':'\n  - Column:          '29'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 646, Column: 28 }\nFunction:        _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ops/function.rs', \n                       Line: 166, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 615, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '787'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\n  - String:          ':'\n  - Line:            '31'\n  - String:          ':'\n  - Column:          '28'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 668, Column: 1 }\nFunction:        _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr64drop_in_place$LT$core..slice..sort..InsertionHole$LT$u32$GT$$GT$17h71985242ec95446cE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 615, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\n  - String:          ':'\n  - Line:            '53'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 646, Column: 28 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                   Line: 922, Column: 18 }\nFunction:        _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\nArgs:\n  - String:          'sinking '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                       Line: 922, Column: 18 }\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 506, Column: 13 }\nFunction:        '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17hfdf0a1153c3e56e1E'\nArgs:\n  - Callee:          _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE\n  - String:          ' will not be inlined into '\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 504, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 506, Column: 13 }\nFunction:        '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$9index_mut17hfdf0a1153c3e56e1E'\nArgs:\n  - Callee:          _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE\n  - String:          ' will not be inlined into '\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 504, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 29 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 868, Column: 22 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 29 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 868, Column: 22 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - Callee:          _ZN4core9panicking18panic_bounds_check17h15aca0ca92b2bf3fE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 823, Column: 13 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 249, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '510'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 835, Column: 38 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort12choose_pivot17hdc7b6a12a03de684E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14580'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n  - String:          ':'\n  - Line:            '38'\n  - String:          ':'\n  - Column:          '38'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 830, Column: 13 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 673, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '355'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 842, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 198, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '1120'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 861, Column: 28 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort9partition17h806290e418586c69E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14165'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n  - String:          ':'\n  - Line:            '64'\n  - String:          ':'\n  - Column:          '28'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 814, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6min_by17hd4f33f4a265e89c9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1171, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3min17h6955f9dd2679a295E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3min17h3b66dd7ee6e4c354E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n  - String:          ':'\n  - Line:            '65'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 866, Column: 29 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 1897, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '5'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n  - String:          ':'\n  - Line:            '69'\n  - String:          ':'\n  - Column:          '29'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 867, Column: 30 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$12split_at_mut17had862570ab44d856E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n  - String:          ':'\n  - Line:            '70'\n  - String:          ':'\n  - Column:          '30'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3ops8function5FnMut8call_mut17h1de8c0acb98ba7f7E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n  - String:          ':'\n  - Line:            '54'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 852, Column: 27 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort15partition_equal17h625b3f855c3375f3E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14805'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n  - String:          ':'\n  - Line:            '55'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 29, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14975'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h44b794b2d334175fE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n  - String:          ':'\n  - Line:            '58'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline-cost\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 878, Column: 13 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - Callee:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ' has uninlinable pattern ('\n  - InlineResult:    recursive\n  - String:          ') and cost is not fully computed'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 878, Column: 13 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          recursive\n...\n--- !Missed\nPass:            inline-cost\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 874, Column: 13 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - Callee:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ' has uninlinable pattern ('\n  - InlineResult:    recursive\n  - String:          ') and cost is not fully computed'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 874, Column: 13 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          recursive\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 815, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 148, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                   Line: 922, Column: 18 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'sinking '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                       Line: 922, Column: 18 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 829, Column: 13 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 829, Column: 13 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 839, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 839, Column: 12 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 839, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'hoisting '\n  - Inst:            select\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 839, Column: 12 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 850, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 850, Column: 16 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 813, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 813, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 588, Column: 28 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 751, Column: 16 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 751, Column: 16 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 751, Column: 16 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 751, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 588, Column: 28 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 588, Column: 28 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 465, Column: 37 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 424, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 842, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 878, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 874, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 466, Column: 42 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 396, Column: 21 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                   Line: 922, Column: 18 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'sinking '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/const_ptr.rs', \n                       Line: 922, Column: 18 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            inline-cost\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 897, Column: 5 }\nFunction:        _ZN4core5slice4sort9quicksort17h7842f2cad712b10eE\nArgs:\n  - Callee:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ' has uninlinable pattern ('\n  - InlineResult:    recursive\n  - String:          ') and cost is not fully computed'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 897, Column: 5 }\nFunction:        _ZN4core5slice4sort9quicksort17h7842f2cad712b10eE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN4core5slice4sort9quicksort17h7842f2cad712b10eE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 885, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          recursive\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/hash/mod.rs', \n                   Line: 770, Column: 9 }\nFunction:        '_ZN83_$LT$core..hash..BuildHasherDefault$LT$H$GT$$u20$as$u20$core..hash..BuildHasher$GT$12build_hasher17hbca0200ad2e8509bE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN59_$LT$fxhash..FxHasher$u20$as$u20$core..default..Default$GT$7default17h56322d00267286b4E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN83_$LT$core..hash..BuildHasherDefault$LT$H$GT$$u20$as$u20$core..hash..BuildHasher$GT$12build_hasher17hbca0200ad2e8509bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/hash/mod.rs', \n                       Line: 769, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN83_$LT$core..hash..BuildHasherDefault$LT$H$GT$$u20$as$u20$core..hash..BuildHasher$GT$12build_hasher17hbca0200ad2e8509bE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/hash/mod.rs', \n                   Line: 810, Column: 21 }\nFunction:        '_ZN4core4hash5impls50_$LT$impl$u20$core..hash..Hash$u20$for$u20$u32$GT$4hash17h8bb8d9ec57f9e346E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN55_$LT$fxhash..FxHasher$u20$as$u20$core..hash..Hasher$GT$9write_u3217h6ea1c51f6600b21eE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core4hash5impls50_$LT$impl$u20$core..hash..Hash$u20$for$u20$u32$GT$4hash17h8bb8d9ec57f9e346E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/hash/mod.rs', \n                       Line: 809, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15015'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4hash5impls50_$LT$impl$u20$core..hash..Hash$u20$for$u20$u32$GT$4hash17h8bb8d9ec57f9e346E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 267, Column: 21 }\nFunction:        _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN83_$LT$core..hash..BuildHasherDefault$LT$H$GT$$u20$as$u20$core..hash..BuildHasher$GT$12build_hasher17hbca0200ad2e8509bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/hash/mod.rs', \n                       Line: 769, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 261, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 268, Column: 5 }\nFunction:        _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core4hash5impls50_$LT$impl$u20$core..hash..Hash$u20$for$u20$u32$GT$4hash17h8bb8d9ec57f9e346E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/hash/mod.rs', \n                       Line: 809, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 261, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-25'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 269, Column: 5 }\nFunction:        _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN55_$LT$fxhash..FxHasher$u20$as$u20$core..hash..Hasher$GT$6finish17h60276984bd66316eE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fxhash-0.2.1/lib.rs', \n                       Line: 178, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 261, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 85, Column: 51 }\nFunction:        _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse213_mm_set1_epi817hb94aa74bb45fa466E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1081, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                       Line: 75, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E\n  - String:          ':'\n  - Line:            '10'\n  - String:          ':'\n  - Column:          '51'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 85, Column: 23 }\nFunction:        _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse214_mm_cmpeq_epi817h87687a818487a9d4E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                       Line: 75, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '974'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E\n  - String:          ':'\n  - Line:            '10'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 86, Column: 21 }\nFunction:        _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse217_mm_movemask_epi817h361d500a1788e36fE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1386, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                       Line: 75, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-25'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E\n  - String:          ':'\n  - Line:            '11'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 814, Column: 9 }\nFunction:        '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6min_by17hd4f33f4a265e89c9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1171, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2182, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-40'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3min17h6955f9dd2679a295E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN9hashbrown3raw2h217hebd1ca978dc249e3E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 49, Column: 15 }\nFunction:        '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse215_mm_loadu_si12817hb29751f91b7d64a2E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1200, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2182, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group4load17ha2bdad54841b756eE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2187, Column: 27 }\nFunction:        '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                       Line: 75, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2182, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-25'\n  - String:          ', threshold='\n  - Threshold:       '974'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2219, Column: 36 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN95_$LT$hashbrown..raw..bitmask..BitMaskIter$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hcd1710d002aba3b9E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2216, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14985'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '36'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 94, Column: 9 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                       Line: 75, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2216, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-25'\n  - String:          ', threshold='\n  - Threshold:       '974'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group11match_empty17h2c4e7d4941d31755E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '38'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 62, Column: 9 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3raw4cold17h85b79fa5cb55eabdE\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 56, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2216, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw6likely17h947c12da0c6bd19eE\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 49, Column: 15 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse215_mm_loadu_si12817hb29751f91b7d64a2E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1200, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2216, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group4load17ha2bdad54841b756eE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\n  - String:          ':'\n  - Line:            '11'\n  - String:          ':'\n  - Column:          '30'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2228, Column: 32 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3raw4sse25Group10match_byte17h311283b08ab29d29E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2216, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15025'\n  - String:          ', threshold='\n  - Threshold:       '974'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '32'\n  - String:          ';'\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2219, Column: 36 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2219, Column: 36 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', \n                   Line: 118, Column: 19 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 182, Column: 9 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 182, Column: 9 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Passed\nPass:            licm\nName:            PromoteLoopAccessesToScalar\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 183, Column: 9 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          Moving accesses to memory location out of the loop\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2223, Column: 27 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2223, Column: 27 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2223, Column: 27 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2226, Column: 42 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2226, Column: 42 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2226, Column: 42 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2226, Column: 42 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2226, Column: 42 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2226, Column: 42 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2226, Column: 42 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 181, Column: 9 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 181, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 181, Column: 9 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2228, Column: 54 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2228, Column: 54 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2228, Column: 54 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2228, Column: 54 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/simd.rs', \n                   Line: 193, Column: 1 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            insertelement\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/simd.rs', \n                       Line: 193, Column: 1 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/simd.rs', \n                   Line: 193, Column: 1 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            shufflevector\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/simd.rs', \n                       Line: 193, Column: 1 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', \n                   Line: 118, Column: 19 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            PromoteLoopAccessesToScalar\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 181, Column: 9 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          Moving accesses to memory location out of the loop\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2223, Column: 27 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2220, Column: 34 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2220, Column: 62 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2220, Column: 62 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2226, Column: 42 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2205, Column: 19 }\nFunction:        '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN100_$LT$hashbrown..raw..RawIterHashInner$LT$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h42657cef289c3b9cE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2203, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14855'\n  - String:          ', threshold='\n  - Threshold:       '438'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2206, Column: 37 }\nFunction:        '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$6bucket17h224c8a87222395a4E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1267, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2203, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '37'\n  - String:          ';'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2226, Column: 42 }\nFunction:        '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2226, Column: 42 }\nFunction:        '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2206, Column: 37 }\nFunction:        '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 2206, Column: 37 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2206, Column: 37 }\nFunction:        '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2226, Column: 42 }\nFunction:        '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 233, Column: 19 }\nFunction:        '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN51_$LT$T$u20$as$u20$core..borrow..Borrow$LT$T$GT$$GT$6borrow17h9596354329525d8aE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 233, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 233, Column: 14 }\nFunction:        '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3cmp5impls54_$LT$impl$u20$core..cmp..PartialEq$u20$for$u20$u32$GT$2eq17h0575c314f1f054b3E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 233, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 2175, Column: 20 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw25RawIterHashInner$LT$A$GT$3new17hc076168dce928db3E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 919, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15005'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw24RawIterHash$LT$T$C$A$GT$3new17hf4865d7e5e85e486E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$9iter_hash17h4bb75b8e2635b903E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '32'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 921, Column: 27 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN99_$LT$hashbrown..raw..RawIterHash$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hf8f38dce49822775E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 919, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14910'\n  - String:          ', threshold='\n  - Threshold:       '438'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 923, Column: 27 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3map14equivalent_key28_$u7b$$u7b$closure$u7d$$u7d$17h433837b24b452a8aE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 919, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 62, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3raw4cold17h85b79fa5cb55eabdE\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 56, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 919, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw6likely17h947c12da0c6bd19eE\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ';'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 233, Column: 14 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 233, Column: 14 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 233, Column: 14 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 901, Column: 20 }\nFunction:        '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3map16make_insert_hash17h8d95166652b584cfE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 900, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 902, Column: 29 }\nFunction:        '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 919, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 900, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '110'\n  - String:          ', threshold='\n  - Threshold:       '569'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '29'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 130, Column: 9 }\nFunction:        '_ZN15similarity_join6record13load_relation28_$u7b$$u7b$closure$u7d$$u7d$17hcf3ae76b736dc3cfE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join6record13load_relation28_$u7b$$u7b$closure$u7d$$u7d$17hcf3ae76b736dc3cfE'\n    DebugLoc:        { File: 'src/record.rs', Line: 41, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '145'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h0be1087d6254dc0fE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$16with_capacity_in17h70dda23586bcca2dE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ' @ '\n  - String:          '_ZN5alloc3vec12Vec$LT$T$GT$13with_capacity17h56b1a198accd2119E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN15similarity_join6record13load_relation28_$u7b$$u7b$closure$u7d$$u7d$17hcf3ae76b736dc3cfE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '67'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 49, Column: 15 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse215_mm_loadu_si12817hb29751f91b7d64a2E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1211, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group4load17ha2bdad54841b756eE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '29'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 110, Column: 21 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse217_mm_movemask_epi817h361d500a1788e36fE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1386, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1211, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-25'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group22match_empty_or_deleted17he4785729a82ee490E\n  - String:          ':'\n  - Line:            '10'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '42'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 70, Column: 9 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3raw4cold17h85b79fa5cb55eabdE\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 56, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1211, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw8unlikely17h51f3123906009edeE\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n  - String:          ':'\n  - Line:            '17'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 59, Column: 15 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse214_mm_load_si12817h24ce96806e62121dE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1187, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1211, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group12load_aligned17h397531b7c90c31f7E\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n  - String:          ':'\n  - Line:            '20'\n  - String:          ':'\n  - Column:          '32'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 110, Column: 21 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse217_mm_movemask_epi817h361d500a1788e36fE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1386, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1211, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-25'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group22match_empty_or_deleted17he4785729a82ee490E\n  - String:          ':'\n  - Line:            '10'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n  - String:          ':'\n  - Line:            '21'\n  - String:          ':'\n  - Column:          '30'\n  - String:          ';'\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            call\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1397, Column: 13 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN75_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$core..clone..Clone$GT$5clone17h67eb7c9025470c8aE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1387, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E'\n  - String:          ':'\n  - Line:            '10'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1396, Column: 29 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$22fallible_with_capacity17hcdff731e6a5be112E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1387, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14590'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E'\n  - String:          ':'\n  - Line:            '9'\n  - String:          ':'\n  - Column:          '29'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 59, Column: 15 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse214_mm_load_si12817h24ce96806e62121dE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1187, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1035, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group12load_aligned17h397531b7c90c31f7E\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawIterRange$LT$T$GT$3new17h83d47a506439db1aE'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '29'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 110, Column: 21 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse217_mm_movemask_epi817h361d500a1788e36fE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1386, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1035, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-25'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group22match_empty_or_deleted17he4785729a82ee490E\n  - String:          ':'\n  - Line:            '10'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ' @ '\n  - String:          _ZN9hashbrown3raw4sse25Group10match_full17hdadeff2b5424afe3E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawIterRange$LT$T$GT$3new17h83d47a506439db1aE'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '55'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1808, Column: 33 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw15Bucket$LT$T$GT$6next_n17h25e11bcf11e20fdcE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 332, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1803, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '33'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 59, Column: 15 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse214_mm_load_si12817h24ce96806e62121dE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1187, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1803, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group12load_aligned17h397531b7c90c31f7E\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\n  - String:          ':'\n  - Line:            '17'\n  - String:          ':'\n  - Column:          '38'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 110, Column: 21 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse217_mm_movemask_epi817h361d500a1788e36fE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1803, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15025'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group22match_empty_or_deleted17he4785729a82ee490E\n  - String:          ':'\n  - Line:            '10'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ' @ '\n  - String:          _ZN9hashbrown3raw4sse25Group10match_full17hdadeff2b5424afe3E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\n  - String:          ':'\n  - Line:            '17'\n  - String:          ':'\n  - Column:          '74'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1821, Column: 29 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw15Bucket$LT$T$GT$6next_n17h25e11bcf11e20fdcE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1803, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\n  - String:          ':'\n  - Line:            '18'\n  - String:          ':'\n  - Column:          '29'\n  - String:          ';'\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1806, Column: 38 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1806, Column: 38 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1806, Column: 38 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1821, Column: 29 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            PromoteLoopAccessesToScalar\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1820, Column: 17 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          Moving accesses to memory location out of the loop\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1821, Column: 29 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Passed\nPass:            licm\nName:            PromoteLoopAccessesToScalar\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1821, Column: 29 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          Moving accesses to memory location out of the loop\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1811, Column: 20 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1811, Column: 20 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1811, Column: 20 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1811, Column: 38 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1811, Column: 38 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1811, Column: 38 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1811, Column: 38 }\n...\n--- !Passed\nPass:            licm\nName:            PromoteLoopAccessesToScalar\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1822, Column: 17 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          Moving accesses to memory location out of the loop\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1808, Column: 33 }\nFunction:        '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 117, Column: 14 }\nFunction:        '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$10deallocate17hfe4fc286dc536cf3E'\nArgs:\n  - String:          ''''\n  - Callee:          __rust_dealloc\n    DebugLoc:        { File: 'src/main.rs', Line: 14, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$10deallocate17hfe4fc286dc536cf3E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/alloc.rs', \n                       Line: 49, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-10'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc5alloc7dealloc17hd511352e90405d82E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$10deallocate17hfe4fc286dc536cf3E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1421, Column: 43 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3raw11TableLayout20calculate_layout_for17hd5066d4e0b6d4059E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1419, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '43'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1425, Column: 9 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN96_$LT$hashbrown..raw..alloc..inner..Global$u20$as$u20$hashbrown..raw..alloc..inner..Allocator$GT$10deallocate17hfe4fc286dc536cf3E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1419, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15010'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1413, Column: 17 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize28_$u7b$$u7b$closure$u7d$$u7d$17h2a86b80f9442596dE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1419, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize28_$u7b$$u7b$closure$u7d$$u7d$17h2a86b80f9442596dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1411, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '45'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize28_$u7b$$u7b$closure$u7d$$u7d$17h2a86b80f9442596dE'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/scopeguard.rs', \n                   Line: 47, Column: 9 }\nFunction:        '_ZN88_$LT$hashbrown..scopeguard..ScopeGuard$LT$T$C$F$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hf4905b2cbccd719cE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize28_$u7b$$u7b$closure$u7d$$u7d$17h2a86b80f9442596dE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN88_$LT$hashbrown..scopeguard..ScopeGuard$LT$T$C$F$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hf4905b2cbccd719cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/scopeguard.rs', \n                       Line: 46, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14945'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN88_$LT$hashbrown..scopeguard..ScopeGuard$LT$T$C$F$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hf4905b2cbccd719cE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN88_$LT$hashbrown..scopeguard..ScopeGuard$LT$T$C$F$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hf4905b2cbccd719cE'\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14910'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 255, Column: 21 }\nFunction:        _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN83_$LT$core..hash..BuildHasherDefault$LT$H$GT$$u20$as$u20$core..hash..BuildHasher$GT$12build_hasher17hbca0200ad2e8509bE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 248, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 256, Column: 5 }\nFunction:        _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core4hash5impls50_$LT$impl$u20$core..hash..Hash$u20$for$u20$u32$GT$4hash17h8bb8d9ec57f9e346E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 248, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15025'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 257, Column: 5 }\nFunction:        _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN55_$LT$fxhash..FxHasher$u20$as$u20$core..hash..Hasher$GT$6finish17h60276984bd66316eE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 248, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE\n  - String:          ':'\n  - Line:            '9'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 222, Column: 16 }\nFunction:        '_ZN9hashbrown3map11make_hasher28_$u7b$$u7b$closure$u7d$$u7d$17hdc76bd6995535f10E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 248, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3map11make_hasher28_$u7b$$u7b$closure$u7d$$u7d$17hdc76bd6995535f10E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 222, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3map11make_hasher28_$u7b$$u7b$closure$u7d$$u7d$17hdc76bd6995535f10E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 814, Column: 9 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6min_by17hd4f33f4a265e89c9E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1171, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1324, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-40'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3min17h6955f9dd2679a295E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN9hashbrown3raw2h217hebd1ca978dc249e3E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '30'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 780, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-40'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN9hashbrown3raw11TableLayout3new17h740adb3f94ec47e3E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n  - String:          ':'\n  - Line:            '9'\n  - String:          ':'\n  - Column:          '37'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 788, Column: 17 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$14prepare_resize17hb6b06c2f5316c0b4E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 780, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14605'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 792, Column: 25 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1035, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 780, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-5'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1997, Column: 26 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1803, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 780, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '40'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN91_$LT$hashbrown..raw..RawIter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h3905473dea73cc44E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 808, Column: 13 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3mem4swap17h52c302ac7ef84f2eE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 780, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15020'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n  - String:          ':'\n  - Line:            '28'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 811, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 780, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14930'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n  - String:          ':'\n  - Line:            '31'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 794, Column: 28 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3map11make_hasher28_$u7b$$u7b$closure$u7d$$u7d$17hdc76bd6995535f10E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 222, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 780, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n  - String:          ':'\n  - Line:            '14'\n  - String:          ':'\n  - Column:          '28'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1200, Column: 21 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1211, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 780, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '70'\n  - String:          ', threshold='\n  - Threshold:       '569'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$19prepare_insert_slot17h79388176e01ce371E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n  - String:          ':'\n  - Line:            '20'\n  - String:          ':'\n  - Column:          '44'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1202, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1324, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 780, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-20'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$19prepare_insert_slot17h79388176e01ce371E'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n  - String:          ':'\n  - Line:            '20'\n  - String:          ':'\n  - Column:          '44'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 801, Column: 17 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$6bucket17h224c8a87222395a4E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1267, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 780, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n  - String:          ':'\n  - Line:            '21'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 801, Column: 17 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw15Bucket$LT$T$GT$24copy_from_nonoverlapping17h66aa0b3825165c06E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 363, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 780, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n  - String:          ':'\n  - Line:            '21'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', \n                   Line: 25, Column: 17 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          'sinking '\n  - Inst:            xor\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', \n                       Line: 25, Column: 17 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 504, Column: 32 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1372, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2844, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1132, Column: 51 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 504, Column: 32 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 1180, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1372, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2844, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1132, Column: 51 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 717, Column: 12 }\nFunction:        '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3cmp5impls57_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$2lt17hbc71024a1daecb16E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 716, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '12'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 718, Column: 24 }\nFunction:        '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$13steps_between17h3989600a33f39965E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 716, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15010'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', \n                   Line: 409, Column: 33 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$9size_hint17hb8ff3386725edbb5E'\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', \n                       Line: 408, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '33'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', \n                   Line: 412, Column: 35 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3num23_$LT$impl$u20$usize$GT$8div_ceil17h7a387dba9ed6f1f6E'\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', \n                       Line: 408, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15015'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', \n                   Line: 34, Column: 20 }\nFunction:        '_ZN4core4iter8adapters7step_by15StepBy$LT$I$GT$3new17h2ebf892157bf24f1E'\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core4iter8adapters7step_by15StepBy$LT$I$GT$3new17h2ebf892157bf24f1E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', \n                       Line: 32, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15005'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4iter8adapters7step_by15StepBy$LT$I$GT$3new17h2ebf892157bf24f1E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 137, Column: 24 }\nFunction:        _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse217_mm_setzero_si12817hf7d470f35c825ff2E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                       Line: 125, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 138, Column: 27 }\nFunction:        _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse214_mm_cmpgt_epi817h8f4796e3881a5eb6E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                       Line: 125, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '974'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E\n  - String:          ':'\n  - Line:            '13'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 141, Column: 17 }\nFunction:        _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse213_mm_set1_epi817hb94aa74bb45fa466E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                       Line: 125, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E\n  - String:          ':'\n  - Line:            '16'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 139, Column: 19 }\nFunction:        _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse212_mm_or_si12817hcba6ec9d3530d909E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                       Line: 125, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '974'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E\n  - String:          ':'\n  - Line:            '14'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 451, Column: 9 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core4iter8adapters7step_by15StepBy$LT$I$GT$3new17h2ebf892157bf24f1E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', \n                       Line: 32, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1245, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-20'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core4iter6traits8iterator8Iterator7step_by17hf5d75d8f5c9fdec8E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '38'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 59, Column: 15 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse214_mm_load_si12817h24ce96806e62121dE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1245, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group12load_aligned17h397531b7c90c31f7E\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1251, Column: 25 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3raw4sse25Group44convert_special_to_empty_and_full_to_deleted17h18cb2bf1c8bda5e2E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1245, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '974'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/sse2.rs', \n                   Line: 69, Column: 9 }\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core9core_arch3x864sse215_mm_store_si12817h97f0f1ad74f17bf0E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1245, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '731'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw4sse25Group13store_aligned17hefdcd612909c3794E\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\nArgs:\n  - String:          'hoisting '\n  - Inst:            call\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 711, Column: 13 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$23prepare_rehash_in_place17hf9a55e5ded58d78cE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 705, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14940'\n  - String:          ', threshold='\n  - Threshold:       '569'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 624, Column: 35 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                       Line: 189, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 705, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ' @ '\n  - String:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n  - String:          ':'\n  - Line:            '24'\n  - String:          ':'\n  - Column:          '30'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 736, Column: 32 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$6bucket17h224c8a87222395a4E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1267, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 705, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n  - String:          ':'\n  - Line:            '31'\n  - String:          ':'\n  - Column:          '32'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 737, Column: 32 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3map11make_hasher28_$u7b$$u7b$closure$u7d$$u7d$17hdc76bd6995535f10E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 705, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n  - String:          ':'\n  - Line:            '32'\n  - String:          ':'\n  - Column:          '32'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 740, Column: 33 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1211, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 705, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '70'\n  - String:          ', threshold='\n  - Threshold:       '569'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n  - String:          ':'\n  - Line:            '35'\n  - String:          ':'\n  - Column:          '33'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 62, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3raw4cold17h85b79fa5cb55eabdE\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 56, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 705, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw6likely17h947c12da0c6bd19eE\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n  - String:          ':'\n  - Line:            '42'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1331, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1324, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 705, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-20'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$15replace_ctrl_h217hd9886cdb76e99903E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n  - String:          ':'\n  - Line:            '49'\n  - String:          ':'\n  - Column:          '43'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 748, Column: 25 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1324, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 705, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-20'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n  - String:          ':'\n  - Line:            '43'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 767, Column: 35 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$6bucket17h224c8a87222395a4E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1267, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 705, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n  - String:          ':'\n  - Line:            '62'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 767, Column: 25 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3mem4swap17h64bd47b1ede9e413E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 705, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15020'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n  - String:          ':'\n  - Line:            '62'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 760, Column: 25 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$6bucket17h224c8a87222395a4E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 705, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n  - String:          ':'\n  - Line:            '55'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 760, Column: 25 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw15Bucket$LT$T$GT$24copy_from_nonoverlapping17h66aa0b3825165c06E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 705, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n  - String:          ':'\n  - Line:            '55'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/num/mod.rs', \n                   Line: 456, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            sub\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/num/mod.rs', \n                       Line: 456, Column: 5 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                   Line: 481, Column: 18 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                       Line: 481, Column: 18 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                   Line: 481, Column: 18 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                       Line: 481, Column: 18 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 737, Column: 32 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 737, Column: 32 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1216, Column: 24 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1216, Column: 24 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1372, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 711, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 730, Column: 20 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1238, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 730, Column: 20 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 737, Column: 32 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1360, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1238, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 730, Column: 20 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1238, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 730, Column: 20 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 737, Column: 32 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1360, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1238, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 737, Column: 32 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 99, Column: 40 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 673, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 99, Column: 40 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 673, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 673, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n  - String:          ':'\n  - Line:            '21'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 693, Column: 13 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6resize17h78c6c42243320c17E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 673, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14225'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n  - String:          ':'\n  - Line:            '20'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 688, Column: 13 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$15rehash_in_place17h60e5156319d441a6E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 673, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14545'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n  - String:          ':'\n  - Line:            '15'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 737, Column: 32 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 737, Column: 32 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 711, Column: 13 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 684, Column: 53 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 730, Column: 20 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 730, Column: 20 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1238, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 737, Column: 32 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1238, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1360, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 788, Column: 17 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 680, Column: 31 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2844, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2844, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2844, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 730, Column: 20 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 730, Column: 20 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1238, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 737, Column: 32 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2772, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                       Line: 1238, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1360, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 1378, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2844, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2844, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2844, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 737, Column: 32 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 646, Column: 16 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$7reserve17hd77d5f8541dac4fdE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 673, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$7reserve17hd77d5f8541dac4fdE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 643, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1211, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 818, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '70'\n  - String:          ', threshold='\n  - Threshold:       '569'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '29'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 70, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3raw4cold17h85b79fa5cb55eabdE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 818, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN9hashbrown3raw8unlikely17h51f3123906009edeE\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 827, Column: 17 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$7reserve17hd77d5f8541dac4fdE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 818, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14980'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n  - String:          ':'\n  - Line:            '9'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$16find_insert_slot17hd91b92270a6fd3ccE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 818, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14930'\n  - String:          ', threshold='\n  - Threshold:       '569'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n  - String:          ':'\n  - Line:            '10'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1309, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$11set_ctrl_h217h74f57c348508fe92E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 818, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15020'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$21record_item_insert_at17h50d41967f8c0f30bE'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n  - String:          ':'\n  - Line:            '13'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 833, Column: 26 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6bucket17hf08a13a598e6c743E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 818, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n  - String:          ':'\n  - Line:            '15'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 646, Column: 16 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 673, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 818, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 825, Column: 28 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 820, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 820, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 826, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1309, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1309, Column: 9 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1309, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1309, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 820, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 820, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 826, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 865, Column: 18 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$6insert17hc11dcd2e391932b1E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 3331, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14635'\n  - String:          ', threshold='\n  - Threshold:       '569'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$12insert_entry17hd91b33dce550ee57E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 646, Column: 16 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 673, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 3331, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 820, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 820, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 826, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 820, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 820, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 826, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 2782, Column: 50 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN15similarity_join6record13load_relation28_$u7b$$u7b$closure$u7d$$u7d$17hcf3ae76b736dc3cfE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 2775, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14860'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '50'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 2782, Column: 37 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3map32VacantEntry$LT$K$C$V$C$S$C$A$GT$6insert17h419e01b747f8bf02E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 2775, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14615'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '37'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 646, Column: 16 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 673, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 2775, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 820, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 820, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 826, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 820, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 820, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 826, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3max17hae4946db965cca35E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\n  - String:          ':'\n  - Line:            '15'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3max17hae4946db965cca35E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\n  - String:          ':'\n  - Line:            '16'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                   Line: 433, Column: 16 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                       Line: 436, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-20'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5alloc6layout6Layout5array17h0d164c05247cc9e2E\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\n  - String:          ':'\n  - Line:            '18'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 43 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17hc6b9d8d38f1fa913E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 239, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\n  - String:          ':'\n  - Line:            '21'\n  - String:          ':'\n  - Column:          '43'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 19 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 464, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 405, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$15set_ptr_and_cap17hba7dded311dfec15E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\n  - String:          ':'\n  - Line:            '22'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 43 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 398, Column: 28 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  inttoptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1949, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 302, Column: 24 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '140'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 302, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 503, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '55'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 19 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 464, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1829, Column: 13 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1825, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3max17hae4946db965cca35E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\n  - String:          ':'\n  - Line:            '15'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3max17hae4946db965cca35E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\n  - String:          ':'\n  - Line:            '16'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                   Line: 433, Column: 16 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                       Line: 436, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-20'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5alloc6layout6Layout5array17hd0e0ef8e7773a3d9E\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\n  - String:          ':'\n  - Line:            '18'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 43 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17hf3cebb45b0cbef90E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 239, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\n  - String:          ':'\n  - Line:            '21'\n  - String:          ':'\n  - Column:          '43'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 19 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 464, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 405, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$15set_ptr_and_cap17hc32ac00f13257e07E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\n  - String:          ':'\n  - Line:            '22'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 43 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 398, Column: 28 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  inttoptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1949, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 302, Column: 24 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17hbf415245d97bc140E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14855'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 302, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 503, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '55'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 19 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 464, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1829, Column: 13 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1825, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3max17hae4946db965cca35E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\n  - String:          ':'\n  - Line:            '15'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                       Line: 1240, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-35'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3max17hae4946db965cca35E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\n  - String:          ':'\n  - Line:            '16'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/alloc/layout.rs', \n                   Line: 433, Column: 16 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5alloc6layout6Layout5array5inner17h84ba885c38e7072eE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15020'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core5alloc6layout6Layout5array17ha9e0225a29b9a19fE\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ' @ '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\n  - String:          ':'\n  - Line:            '18'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 43 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17h6e62f964d2d11881E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 239, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\n  - String:          ':'\n  - Line:            '21'\n  - String:          ':'\n  - Column:          '43'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 19 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 464, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 405, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$15set_ptr_and_cap17h2bc1c99ba5775d25E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 383, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\n  - String:          ':'\n  - Line:            '22'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 43 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 398, Column: 28 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  inttoptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1949, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 302, Column: 24 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h180aa4c0c5dc397aE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14855'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 302, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 503, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '55'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 19 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 464, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1829, Column: 13 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1825, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/record.rs', Line: 51, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/record.rs', Line: 51, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - Callee:          _ZN4core9panicking5panic17h1d82ab6226901e9cE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/record.rs', Line: 23, Column: 16 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2fs4File4open17h34e474e28e0e0bdcE\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14915'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/record.rs', Line: 24, Column: 22 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17heec4d5c96cdc96c4E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14865'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 489, Column: 15 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$22fallible_with_capacity17h2f25dba08f3ce537E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14865'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$16with_capacity_in17h337d8ef67c907169E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw17RawTable$LT$T$GT$13with_capacity17h263d0ed673c3c69dE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3map24HashMap$LT$K$C$V$C$S$GT$24with_capacity_and_hasher17h8a8f186ed957ce2dE'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ' @ '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 130, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h0eb54356cf6f4478E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14855'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h517eb7f51f7f540aE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$16with_capacity_in17h2e13b0177aac736aE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ' @ '\n  - String:          '_ZN5alloc3vec12Vec$LT$T$GT$13with_capacity17h91d454c5f0c08df6E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 130, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '145'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h65853ad3cb8b3fa9E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$16with_capacity_in17h2ded9530409c73c5E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ' @ '\n  - String:          '_ZN5alloc3vec12Vec$LT$T$GT$13with_capacity17hae6931c7978f2904E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '30'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1962, Column: 27 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN6anyhow5error72_$LT$impl$u20$core..convert..From$LT$E$GT$$u20$for$u20$anyhow..Error$GT$4from17h3fbcaf4e75eb45afE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '0'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ' @ '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 217, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '680'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/record.rs', Line: 34, Column: 10 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr76drop_in_place$LT$core..result..Result$LT$u32$C$std..io..error..Error$GT$$GT$17h616b09680f5b9f11E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '95'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '10'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 130, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h3b0bb81f52ab6002E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14790'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h0be1087d6254dc0fE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$16with_capacity_in17h70dda23586bcca2dE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ' @ '\n  - String:          '_ZN5alloc3vec12Vec$LT$T$GT$13with_capacity17h56b1a198accd2119E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '14'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/record.rs', Line: 34, Column: 10 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr76drop_in_place$LT$core..result..Result$LT$u32$C$std..io..error..Error$GT$$GT$17h616b09680f5b9f11E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14905'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '10'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/record.rs', Line: 61, Column: 1 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr81drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..fs..File$GT$$GT$17hfb2d68cc57e65978E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14955'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '39'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 624, Column: 35 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN47_$LT$u32$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17haf74a5f77c4b068aE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '787'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17h50032c471b98e0bfE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ' @ '\n  - String:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h5b78cebea794f397E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '17'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 2898, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort9quicksort17h7842f2cad712b10eE\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14970'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$13sort_unstable17h7835f10a0003edc1E'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '27'\n  - String:          ':'\n  - Column:          '16'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 217, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '680'\n  - String:          ', threshold='\n  - Threshold:       '525'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN88_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$similarity_join..util..ForceUnwrap$GT$12unwrap_force17h273f87d9dbbec25aE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '787'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '18'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/record.rs', Line: 41, Column: 30 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$5entry17h9bbaf105d049287dE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14895'\n  - String:          ', threshold='\n  - Threshold:       '919'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '19'\n  - String:          ':'\n  - Column:          '30'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/record.rs', Line: 41, Column: 30 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3map26Entry$LT$K$C$V$C$S$C$A$GT$14or_insert_with17h6234f17dd9750d0bE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14425'\n  - String:          ', threshold='\n  - Threshold:       '525'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '19'\n  - String:          ':'\n  - Column:          '30'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/record.rs', Line: 52, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17heb890d6ce4463ba1E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14955'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '30'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/record.rs', Line: 53, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17h08e5f25e3c78a9b8E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14950'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '31'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/record.rs', Line: 46, Column: 13 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1825, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '45'\n  - String:          ', threshold='\n  - Threshold:       '525'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '24'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/record.rs', Line: 47, Column: 13 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$4push17ha566e0d800307981E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14955'\n  - String:          ', threshold='\n  - Threshold:       '525'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ':'\n  - Line:            '25'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                   Line: 103, Column: 18 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 218, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '150'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Missed\nPass:            inline-cost\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 897, Column: 5 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - Callee:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ' has uninlinable pattern ('\n  - InlineResult:    recursive\n  - String:          ') and cost is not fully computed'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 897, Column: 5 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          recursive\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 646, Column: 16 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 673, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1829, Column: 13 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1829, Column: 13 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1829, Column: 13 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1829, Column: 13 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n    DebugLoc:        { File: 'src/record.rs', Line: 22, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1286, Column: 29 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1286, Column: 29 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1286, Column: 29 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 820, Column: 29 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 826, Column: 25 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1310, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/record.rs', Line: 32, Column: 16 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: 'src/record.rs', Line: 32, Column: 16 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 32, Column: 16 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 670, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 670, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2618, Column: 63 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 921, Column: 13 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: 'src/record.rs', Line: 30, Column: 5 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 34, Column: 10 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 32, Column: 16 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1286, Column: 29 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<2 x i64>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1367, Column: 9 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 820, Column: 29 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1286, Column: 29 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1367, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1286, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 826, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2610, Column: 55 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 300, Column: 16 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2618, Column: 63 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2618, Column: 63 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 34, Column: 10 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 32, Column: 16 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1286, Column: 29 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<2 x i64>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1367, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1286, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 826, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 300, Column: 16 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1286, Column: 29 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 32, Column: 16 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join6record13load_relation17h254df26235556605E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr34drop_in_place$LT$anyhow..Error$GT$17h10d757e304a52fe5E'\nArgs:\n  - Callee:          '_ZN6anyhow5error65_$LT$impl$u20$core..ops..drop..Drop$u20$for$u20$anyhow..Error$GT$4drop17h71fcb23f4c845bd8E'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core3ptr34drop_in_place$LT$anyhow..Error$GT$17h10d757e304a52fe5E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr34drop_in_place$LT$anyhow..Error$GT$17h10d757e304a52fe5E'\nArgs:\n  - Callee:          '_ZN6anyhow5error65_$LT$impl$u20$core..ops..drop..Drop$u20$for$u20$anyhow..Error$GT$4drop17h71fcb23f4c845bd8E'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core3ptr34drop_in_place$LT$anyhow..Error$GT$17h10d757e304a52fe5E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 23 }\nFunction:        '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17he10a8659ad3fe1e0E'\nArgs:\n  - Callee:          _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17he10a8659ad3fe1e0E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1071, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 23 }\nFunction:        '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17he10a8659ad3fe1e0E'\nArgs:\n  - Callee:          _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17he10a8659ad3fe1e0E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1071, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 23 }\nFunction:        '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h18ca03a85aba0075E'\nArgs:\n  - Callee:          _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h18ca03a85aba0075E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1071, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 23 }\nFunction:        '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h18ca03a85aba0075E'\nArgs:\n  - Callee:          _ZN4core6result13unwrap_failed17h918f5fb7ac40f939E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h18ca03a85aba0075E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1071, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 309, Column: 13 }\nFunction:        _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E\nArgs:\n  - Callee:          _ZN4core9panicking9panic_fmt17hf3068e6facc908aeE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 307, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 309, Column: 13 }\nFunction:        _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E\nArgs:\n  - Callee:          _ZN4core9panicking9panic_fmt17hf3068e6facc908aeE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 307, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 289, Column: 28 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14grow_amortized17h1f55aae9ad6b745cE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14860'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '28'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 289, Column: 13 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec14handle_reserve17hd1c3bfaa62c9ac44E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14945'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 404, Column: 19 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 464, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 404, Column: 19 }\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 293, Column: 13 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$7reserve17hf64da458ceb63d5aE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$7reserve17hf64da458ceb63d5aE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 908, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '225'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr62drop_in_place$LT$alloc..vec..set_len_on_drop..SetLenOnDrop$GT$17hd59c871c2f90ceedE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN83_$LT$alloc..vec..set_len_on_drop..SetLenOnDrop$u20$as$u20$core..ops..drop..Drop$GT$4drop17h78fd822af5aef725E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr62drop_in_place$LT$alloc..vec..set_len_on_drop..SetLenOnDrop$GT$17hd59c871c2f90ceedE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr62drop_in_place$LT$alloc..vec..set_len_on_drop..SetLenOnDrop$GT$17hd59c871c2f90ceedE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            AlwaysInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2488, Column: 33 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5clone5impls52_$LT$impl$u20$core..clone..Clone$u20$for$u20$u16$GT$5clone17h40c7af84fd8aa0c2E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2476, Column: 0 }\n  - String:          ''''\n  - String:          ': always inline attribute'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '33'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2477, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$7reserve17hf64da458ceb63d5aE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2476, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14970'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 624, Column: 35 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN49_$LT$usize$u20$as$u20$core..iter..range..Step$GT$17forward_unchecked17hcd7fb647245a5753E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2476, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN89_$LT$core..ops..range..Range$LT$T$GT$$u20$as$u20$core..iter..range..RangeIteratorImpl$GT$9spec_next17hdde95208abd0b97eE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ' @ '\n  - String:          '_ZN4core4iter5range101_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$4next17h8ea2309b229adf62E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '14'\n  - String:          ' @ '\n  - String:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\n  - String:          ':'\n  - Line:            '11'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2501, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr62drop_in_place$LT$alloc..vec..set_len_on_drop..SetLenOnDrop$GT$17hd59c871c2f90ceedE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2476, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\n  - String:          ':'\n  - Line:            '25'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 293, Column: 13 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2476, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '225'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 909, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 293, Column: 13 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', \n                   Line: 24, Column: 12 }\nFunction:        '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN51_$LT$u16$u20$as$u20$alloc..vec..is_zero..IsZero$GT$7is_zero17h254871527c743e34E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', \n                       Line: 23, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '12'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 130, Column: 9 }\nFunction:        '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 168, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', \n                       Line: 23, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '210'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h65853ad3cb8b3fa9E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$16with_capacity_in17h2ded9530409c73c5E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ' @ '\n  - String:          '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', \n                   Line: 28, Column: 9 }\nFunction:        '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$11extend_with17h4fa6f623d6f9496eE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', \n                       Line: 23, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14900'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 138, Column: 9 }\nFunction:        '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h433b76dee0108e05E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', \n                       Line: 23, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14795'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$23with_capacity_zeroed_in17hf1560f00c6a9f6c5E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '31'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 293, Column: 13 }\nFunction:        '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hc580e3978668c9eeE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 284, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/spec_from_elem.rs', \n                       Line: 23, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '205'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 18, Column: 9 }\nFunction:        '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h7c8f55f4951b4da0E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17hfcab42288d10a6a9E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h7c8f55f4951b4da0E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2674, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice5index74_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$5index17h6613f4a385e01365E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h7c8f55f4951b4da0E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 935, Column: 15 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$3get17h5b79f511bfd4ae85E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4find17hed948054668fba76E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$3get17h5b79f511bfd4ae85E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 933, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14885'\n  - String:          ', threshold='\n  - Threshold:       '569'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$3get17h5b79f511bfd4ae85E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 988, Column: 20 }\nFunction:        '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9hashbrown3map9make_hash17hc64429a1e87b2b0dE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 938, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$9get_inner17h8bce3c7767b7b6dcE'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 989, Column: 9 }\nFunction:        '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$3get17h5b79f511bfd4ae85E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 938, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14895'\n  - String:          ', threshold='\n  - Threshold:       '569'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$9get_inner17h8bce3c7767b7b6dcE'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 549, Column: 9 }\nFunction:        _ZN4core4iter8adapters3zip27TrustedRandomAccessNoCoerce4size17hd9aff81dc2115762E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$9size_hint17h5344156502bbd702E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core4iter8adapters3zip27TrustedRandomAccessNoCoerce4size17hd9aff81dc2115762E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 545, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core4iter8adapters3zip27TrustedRandomAccessNoCoerce4size17hd9aff81dc2115762E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 263, Column: 21 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core4iter8adapters3zip27TrustedRandomAccessNoCoerce4size17hd9aff81dc2115762E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 545, Column: 0 }\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 262, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 264, Column: 35 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core4iter8adapters3zip27TrustedRandomAccessNoCoerce4size17hd9aff81dc2115762E\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 262, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 814, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6min_by17hd4f33f4a265e89c9E\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 262, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3min17h6955f9dd2679a295E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core3cmp3min17h3b66dd7ee6e4c354E\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '8'\n  - String:          ' @ '\n  - 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'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '19'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 643, Column: 24 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4iter87_$LT$impl$u20$core..iter..traits..collect..IntoIterator$u20$for$u20$$RF$$u5b$T$u5d$$GT$9into_iter17h1a7b40a1148a0daaE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter.rs', \n                       Line: 25, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                       Line: 638, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-30'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 23, Column: 9 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                       Line: 638, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4iter8adapters3zip16Zip$LT$A$C$B$GT$3new17h6c67f02fef12bf9fE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 277, Column: 23 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$24__iterator_get_unchecked17h23c52010207f1128E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 372, Column: 0 }\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 269, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-40'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 277, Column: 59 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$24__iterator_get_unchecked17h23c52010207f1128E'\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 269, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '59'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 84, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hfa1e56bb0f626777E'\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN102_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hfa1e56bb0f626777E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 83, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14985'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN102_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hfa1e56bb0f626777E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', \n                   Line: 84, Column: 28 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$28_$u7b$$u7b$closure$u7d$$u7d$17h6ca9fa961b787aacE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', \n                       Line: 84, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14985'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '28'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', \n                   Line: 84, Column: 21 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN54_$LT$u64$u20$as$u20$core..iter..traits..accum..Sum$GT$3sum28_$u7b$$u7b$closure$u7d$$u7d$17hb8a27f1045bed0d9E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', \n                       Line: 84, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2480, Column: 29 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN102_$LT$core..iter..adapters..zip..Zip$LT$A$C$B$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hfa1e56bb0f626777E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                       Line: 2474, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14985'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '29'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17hfd054980170fd38cE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                       Line: 2474, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14985'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 270, Column: 12 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 270, Column: 12 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 270, Column: 12 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 270, Column: 25 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 270, Column: 25 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 270, Column: 25 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 270, Column: 25 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 277, Column: 23 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: 'src/main.rs', Line: 120, Column: 55 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: 'src/main.rs', Line: 122, Column: 30 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Passed\nPass:            licm\nName:            PromoteLoopAccessesToScalar\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 274, Column: 13 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          Moving accesses to memory location out of the loop\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 277, Column: 23 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 277, Column: 23 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 277, Column: 59 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 277, Column: 59 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 277, Column: 59 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 277, Column: 59 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/main.rs', Line: 120, Column: 55 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: 'src/main.rs', Line: 120, Column: 55 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2051, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2051, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/main.rs', Line: 120, Column: 55 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          'hoisting '\n  - Inst:            trunc\n    DebugLoc:        { File: 'src/main.rs', Line: 120, Column: 55 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/main.rs', Line: 122, Column: 30 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: 'src/main.rs', Line: 122, Column: 30 }\n...\n--- !Passed\nPass:            licm\nName:            PromoteLoopAccessesToScalar\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 274, Column: 13 }\nFunction:        _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\nArgs:\n  - String:          Moving accesses to memory location out of the loop\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', \n                   Line: 124, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h825b9950abc1e838E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core4iter6traits8iterator8Iterator4fold17h1e4d167a325656e0E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h825b9950abc1e838E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', \n                       Line: 120, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14960'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h825b9950abc1e838E'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 494, Column: 38 }\nFunction:        '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17hc6b9d8d38f1fa913E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 493, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '38'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 495, Column: 22 }\nFunction:        '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 493, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '0'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u16$GT$$GT$17h093bb07298e3619fE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h1a50e1429648e602E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u16$GT$$GT$17h093bb07298e3619fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u16$GT$$GT$17h093bb07298e3619fE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h8539f7eab489f3a4E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u16$GT$$GT$17h093bb07298e3619fE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 4141, Column: 38 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point28_$u7b$$u7b$closure$u7d$$u7d$17h7f490543ddccd1deE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$28_$u7b$$u7b$closure$u7d$$u7d$17h0080217968fa1ff2E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point28_$u7b$$u7b$closure$u7d$$u7d$17h7f490543ddccd1deE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 4141, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point28_$u7b$$u7b$closure$u7d$$u7d$17h7f490543ddccd1deE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '38'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 2787, Column: 23 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point28_$u7b$$u7b$closure$u7d$$u7d$17h7f490543ddccd1deE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 2769, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15020'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E'\n  - String:          ':'\n  - Line:            '18'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ';'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressCondExecuted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 4141, Column: 38 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E'\nArgs:\n  - String:          failed to hoist load with loop-invariant address because load is conditionally executed\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 4141, Column: 38 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 4141, Column: 38 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/main.rs', Line: 33, Column: 80 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            load\n    DebugLoc:        { File: 'src/main.rs', Line: 33, Column: 80 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/main.rs', Line: 33, Column: 80 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            trunc\n    DebugLoc:        { File: 'src/main.rs', Line: 33, Column: 80 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 4141, Column: 9 }\nFunction:        '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point17h38ae2f01f410bca7E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$16binary_search_by17h20edc35e623686b4E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point17h38ae2f01f410bca7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                       Line: 4137, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14975'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point17h38ae2f01f410bca7E'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 497, Column: 13 }\nFunction:        '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h19529fe6016375d7E'\nArgs:\n  - Callee:          _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h19529fe6016375d7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 495, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 497, Column: 13 }\nFunction:        '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h19529fe6016375d7E'\nArgs:\n  - Callee:          _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h19529fe6016375d7E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                       Line: 495, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 18, Column: 9 }\nFunction:        '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h445919385991af25E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN110_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..index..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$5index17h19529fe6016375d7E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h445919385991af25E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2674, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14975'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core5slice5index74_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$5index17h7a5bcf47c04e99e1E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h445919385991af25E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 497, Column: 13 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - Callee:          _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/option.rs', \n                   Line: 898, Column: 21 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - Callee:          _ZN4core6option13expect_failed17h0646ff7561f3f4b3E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 497, Column: 13 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - Callee:          _ZN4core5slice5index26slice_start_index_len_fail17h1016b6d39a34dd8eE\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/option.rs', \n                   Line: 898, Column: 21 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - Callee:          _ZN4core6option13expect_failed17h0646ff7561f3f4b3E\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2535, Column: 5 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN62_$LT$T$u20$as$u20$alloc..vec..spec_from_elem..SpecFromElem$GT$9from_elem17h77af34eb17987c32E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14810'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN5alloc3vec9from_elem17h272b13c46cd7d66aE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ' @ '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '22'\n  - String:          ':'\n  - Column:          '36'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 31, Column: 26 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN94_$LT$$RF$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..iter..traits..collect..IntoIterator$GT$9into_iter17h04a8c941a7d519c3E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 31, Column: 26 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h4b6802111f20d06bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 156, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-25'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '6'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 116, Column: 26 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h7c8f55f4951b4da0E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '91'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 116, Column: 13 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4iter87_$LT$impl$u20$core..iter..traits..collect..IntoIterator$u20$for$u20$$RF$$u5b$T$u5d$$GT$9into_iter17h1a7b40a1148a0daaE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '91'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3map28HashMap$LT$K$C$V$C$S$C$A$GT$3get17h8a34eb185a9327d1E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14880'\n  - String:          ', threshold='\n  - Threshold:       '569'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '7'\n  - String:          ':'\n  - Column:          '57'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 116, Column: 13 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core4iter6traits8iterator8Iterator3zip17hb65349ebe5f2b80dE\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '91'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/accum.rs', \n                   Line: 149, Column: 1 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h825b9950abc1e838E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14950'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN54_$LT$u64$u20$as$u20$core..iter..traits..accum..Sum$GT$3sum17h2eb8818e88a6f150E'\n  - String:          ':'\n  - Line:            '100'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ' @ '\n  - String:          _ZN4core4iter6traits8iterator8Iterator3sum17he8161fb7a11e4cc1E\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '103'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 129, Column: 9 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '5'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '104'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 33, Column: 35 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice29_$LT$impl$u20$$u5b$T$u5d$$GT$15partition_point17h38ae2f01f410bca7E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14985'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '8'\n  - String:          ':'\n  - Column:          '35'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 451, Column: 9 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core4iter8adapters7step_by15StepBy$LT$I$GT$3new17h2ebf892157bf24f1E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15020'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core4iter6traits8iterator8Iterator7step_by17hf5d75d8f5c9fdec8E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '21'\n  - String:          ':'\n  - Column:          '79'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN81_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$5index17h445919385991af25E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14975'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '50'\n  - String:          ':'\n  - Column:          '57'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 38 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core5slice4iter87_$LT$impl$u20$core..iter..traits..collect..IntoIterator$u20$for$u20$$RF$$u5b$T$u5d$$GT$9into_iter17hed4131322fff98a2E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '50'\n  - String:          ':'\n  - Column:          '38'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 38 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h4b6802111f20d06bE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n    DebugLoc:        { File: 'src/main.rs', Line: 25, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15025'\n  - String:          ', threshold='\n  - Threshold:       '525'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ':'\n  - Line:            '50'\n  - String:          ':'\n  - Column:          '38'\n  - String:          ';'\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', \n                   Line: 561, Column: 1 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'sinking '\n  - Inst:            select\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', \n                       Line: 561, Column: 1 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            call\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            call\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            trunc\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: 'src/main.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', \n                   Line: 84, Column: 28 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN15similarity_join15calculate_query28_$u7b$$u7b$closure$u7d$$u7d$17hc19335409d1e1d06E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', \n                       Line: 84, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-13845'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '28'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', \n                   Line: 84, Column: 21 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN54_$LT$u64$u20$as$u20$core..iter..traits..accum..Sum$GT$3sum28_$u7b$$u7b$closure$u7d$$u7d$17h80e9880b2a4a32bdE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', \n                       Line: 84, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '21'\n  - String:          ';'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 107, Column: 27 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core4iter8adapters3map8map_fold28_$u7b$$u7b$closure$u7d$$u7d$17ha798aac44f484e1fE'\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                       Line: 106, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-13860'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_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'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_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'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 108, Column: 17 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                       Line: 107, Column: 38 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 108, Column: 17 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                       Line: 107, Column: 38 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 108, Column: 17 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                       Line: 107, Column: 38 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 108, Column: 17 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                       Line: 107, Column: 38 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_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'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_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'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 232, Column: 27 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                       Line: 212, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-13835'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\n  - String:          ':'\n  - Line:            '20'\n  - String:          ':'\n  - Column:          '27'\n  - String:          ';'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 107, Column: 38 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                       Line: 107, Column: 38 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 107, Column: 38 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 108, Column: 17 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 107, Column: 38 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 108, Column: 17 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 229, Column: 17 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 48, Column: 22 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 107, Column: 38 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 108, Column: 17 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                       Line: 107, Column: 38 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 108, Column: 17 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                       Line: 107, Column: 38 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 108, Column: 17 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                       Line: 107, Column: 38 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 108, Column: 17 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                       Line: 107, Column: 38 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 32, Column: 43 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 27, Column: 42 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 119, Column: 22 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 108, Column: 17 }\nFunction:        '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 113, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN91_$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h27e8484351a8cda2E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                       Line: 96, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-13820'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\n  - String:          ':'\n  - Line:            '17'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 1494, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            call\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2051, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'hoisting '\n  - Inst:            icmp\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 229, Column: 17 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 48, Column: 22 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nFunction:        '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', \n                   Line: 124, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN110_$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17hef4caf3b2ca6fa48E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/map.rs', \n                       Line: 120, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-13820'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 229, Column: 17 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 48, Column: 22 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            float\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nFunction:        '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 494, Column: 38 }\nFunction:        '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17h6e62f964d2d11881E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 493, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '38'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 495, Column: 22 }\nFunction:        '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                       Line: 250, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 493, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '0'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u32$GT$$GT$17he1b189960886f975E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h731a25f9ecd555f1E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u32$GT$$GT$17he1b189960886f975E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u32$GT$$GT$17he1b189960886f975E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9d554f3713eaa1d4E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr54drop_in_place$LT$alloc..raw_vec..RawVec$LT$u32$GT$$GT$17he1b189960886f975E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr61drop_in_place$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$17h54c9f96dbfa2aeefE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr61drop_in_place$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$17h54c9f96dbfa2aeefE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '5'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr61drop_in_place$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$17h54c9f96dbfa2aeefE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 597, Column: 25 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$4iter17h71144187e07c4866E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 595, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15005'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1997, Column: 26 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN96_$LT$hashbrown..raw..RawIterRange$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h2de1bd552f33d7b2E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 595, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14960'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN91_$LT$hashbrown..raw..RawIter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17h3905473dea73cc44E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                   Line: 1433, Column: 18 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr61drop_in_place$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$17h54c9f96dbfa2aeefE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 595, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr7mut_ptr31_$LT$impl$u20$$BP$mut$u20$T$GT$13drop_in_place17hde1734e1f383b20eE'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '18'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw15Bucket$LT$T$GT$4drop17haa620959c1757898E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            licm\nName:            InstSunk\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', \n                   Line: 25, Column: 17 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\nArgs:\n  - String:          'sinking '\n  - Inst:            xor\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', \n                       Line: 25, Column: 17 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 597, Column: 13 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1677, Column: 17 }\nFunction:        '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$13drop_elements17hfbfb5f240ae3f269E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1674, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14860'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\n  - String:          ':'\n  - Line:            '3'\n  - String:          ':'\n  - Column:          '17'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 794, Column: 9 }\nFunction:        '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3cmp6max_by17h709db21befafa9e3E\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1674, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '487'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3cmp3Ord3max17h10dab41b1209b26bE\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN9hashbrown3raw11TableLayout3new17h740adb3f94ec47e3E\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ' @ '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$12free_buckets17h80e94a8bb1563e3eE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '33'\n  - String:          ' @ '\n  - String:          '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 498, Column: 9 }\nFunction:        '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw22RawTableInner$LT$A$GT$12free_buckets17hdf32a6b75b810ac4E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1674, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14965'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$12free_buckets17h80e94a8bb1563e3eE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 597, Column: 13 }\nFunction:        '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 498, Column: 9 }\nFunction:        '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 498, Column: 9 }\nFunction:        '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1382, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN79_$LT$hashbrown..raw..RawTable$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h9a533f40ad19327cE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14795'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 597, Column: 13 }\nFunction:        '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_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'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr93drop_in_place$LT$hashbrown..raw..RawTable$LT$$LP$u32$C$alloc..vec..Vec$LT$u32$GT$$RP$$GT$$GT$17h8da25e638499eeffE'\n  - String:          ''' inlined into '''\n  - 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'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14795'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 597, Column: 13 }\nFunction:        '_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'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_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'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr57drop_in_place$LT$$u5b$alloc..vec..Vec$LT$u32$GT$$u5d$$GT$17h1582285934047aa5E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u32$GT$$GT$17h180f4d712cd64124E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr57drop_in_place$LT$$u5b$alloc..vec..Vec$LT$u32$GT$$u5d$$GT$17h1582285934047aa5E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr57drop_in_place$LT$$u5b$alloc..vec..Vec$LT$u32$GT$$u5d$$GT$17h1582285934047aa5E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 240, Column: 12 }\nFunction:        '_ZN4core3ptr57drop_in_place$LT$$u5b$alloc..vec..Vec$LT$u32$GT$$u5d$$GT$17h1582285934047aa5E'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 3013, Column: 13 }\nFunction:        '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hcf34e6a5bc1110f5E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr57drop_in_place$LT$$u5b$alloc..vec..Vec$LT$u32$GT$$u5d$$GT$17h1582285934047aa5E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hcf34e6a5bc1110f5E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 3008, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14955'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hcf34e6a5bc1110f5E'\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 240, Column: 12 }\nFunction:        '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hcf34e6a5bc1110f5E'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 494, Column: 38 }\nFunction:        '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$14current_memory17hf3cebb45b0cbef90E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 493, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15030'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '38'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 495, Column: 22 }\nFunction:        '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN63_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Allocator$GT$10deallocate17hee84bdc60637090fE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 493, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15000'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr77drop_in_place$LT$alloc..raw_vec..RawVec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hf5c78fbe8006561eE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN77_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hc1996700cca82312E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr77drop_in_place$LT$alloc..raw_vec..RawVec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hf5c78fbe8006561eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr77drop_in_place$LT$alloc..raw_vec..RawVec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hf5c78fbe8006561eE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN70_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17hcf34e6a5bc1110f5E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14955'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr77drop_in_place$LT$alloc..raw_vec..RawVec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hf5c78fbe8006561eE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 240, Column: 12 }\nFunction:        '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14795'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr70drop_in_place$LT$alloc..vec..Vec$LT$alloc..vec..Vec$LT$u32$GT$$GT$$GT$17hd9e4e33f0a5e3d4fE'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14890'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr47drop_in_place$LT$alloc..vec..Vec$LT$u16$GT$$GT$17h522daaac7e2e0443E'\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 597, Column: 13 }\nFunction:        '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 240, Column: 12 }\nFunction:        '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/accum.rs', \n                   Line: 149, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4fold17h9b8eec143d2db7eaE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\n    DebugLoc:        { File: 'src/main.rs', Line: 17, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-13815'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN54_$LT$u64$u20$as$u20$core..iter..traits..accum..Sum$GT$3sum17h9b765828d3fdf962E'\n  - String:          ':'\n  - Line:            '100'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ' @ '\n  - String:          _ZN4core4iter6traits8iterator8Iterator3sum17h17c609e0298f2fb2E\n  - String:          ':'\n  - Line:            '5'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\n  - String:          ':'\n  - Line:            '113'\n  - String:          ':'\n  - Column:          '10'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 131, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr54drop_in_place$LT$similarity_join..record..Relation$GT$17h18d49ac29929d2aaE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\n    DebugLoc:        { File: 'src/main.rs', Line: 17, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14595'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\n  - String:          ':'\n  - Line:            '114'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 118, Column: 23 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 229, Column: 17 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 48, Column: 22 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 597, Column: 13 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 240, Column: 12 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1382, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1382, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1021, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1021, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 498, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 1494, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 498, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 1494, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1382, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1382, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1021, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1021, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 498, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 1494, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 498, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 1494, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17hd75554de6c06dea4E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr42drop_in_place$LT$std..io..error..Error$GT$17h15c5b885efa4e649E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17hd75554de6c06dea4E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '95'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17hd75554de6c06dea4E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', \n                   Line: 1738, Column: 14 }\nFunction:        _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE\nArgs:\n  - Callee:          _ZN4core9panicking9panic_fmt17hf3068e6facc908aeE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', \n                       Line: 1717, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', \n                   Line: 1738, Column: 14 }\nFunction:        _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE\nArgs:\n  - Callee:          _ZN4core9panicking9panic_fmt17hf3068e6facc908aeE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', \n                       Line: 1717, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', \n                   Line: 1738, Column: 14 }\nFunction:        _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 307, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', \n                       Line: 1717, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '20'\n  - String:          ', threshold='\n  - Threshold:       '0'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/index.rs', \n                   Line: 463, Column: 9 }\nFunction:        _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE\nArgs:\n  - String:          ''''\n  - 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'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', \n                       Line: 1717, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14990'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - 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'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN4core5slice5index77_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$9index_mut17h335d4021eba981ccE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '15'\n  - String:          ' @ '\n  - String:          _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE\n  - String:          ':'\n  - Line:            '28'\n  - String:          ':'\n  - Column:          '13'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1703, Column: 23 }\nFunction:        '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E'\nArgs:\n  - Callee:          '_ZN61_$LT$std..io..stdio..StdoutLock$u20$as$u20$std..io..Write$GT$9write_all17he93f54dd5d409866E'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1702, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1703, Column: 23 }\nFunction:        '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E'\nArgs:\n  - Callee:          '_ZN61_$LT$std..io..stdio..StdoutLock$u20$as$u20$std..io..Write$GT$9write_all17he93f54dd5d409866E'\n  - String:          ' will not be inlined into '\n  - Caller:          '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1702, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1706, Column: 25 }\nFunction:        '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17hd75554de6c06dea4E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1702, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '100'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E'\n  - String:          ':'\n  - Line:            '4'\n  - String:          ':'\n  - Column:          '25'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', \n                   Line: 633, Column: 42 }\nFunction:        _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core4char7methods15encode_utf8_raw17he1b7b52f1661c82bE\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 163, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14845'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core4char7methods22_$LT$impl$u20$char$GT$11encode_utf817hd4a0e19551c81989E'\n  - String:          ':'\n  - Line:            '2'\n  - String:          ':'\n  - Column:          '42'\n  - String:          ' @ '\n  - String:          _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '26'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 164, Column: 9 }\nFunction:        _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1702, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 163, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '160'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 203, Column: 9 }\nFunction:        '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$10write_char17h2c72e1cd5ebe338bE'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3fmt5Write10write_char17h2cada7674fc1abbbE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 163, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$10write_char17h2c72e1cd5ebe338bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 202, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '365'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 199, Column: 9 }\nFunction:        '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$9write_str17h557c47b44ec0bae9E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17hb6ee534dd9b9b2d0E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1702, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$9write_str17h557c47b44ec0bae9E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 198, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '160'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$9write_str17h557c47b44ec0bae9E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 192, Column: 9 }\nFunction:        _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E\nArgs:\n  - Callee:          _ZN4core3fmt5write17heba65d7649896adbE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 191, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 192, Column: 9 }\nFunction:        _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E\nArgs:\n  - Callee:          _ZN4core3fmt5write17heba65d7649896adbE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 191, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 207, Column: 9 }\nFunction:        '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$9write_fmt17h7fc38c6cafccd0a3E'\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 191, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$9write_fmt17h7fc38c6cafccd0a3E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 206, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '15'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN50_$LT$$RF$mut$u20$W$u20$as$u20$core..fmt..Write$GT$9write_fmt17h7fc38c6cafccd0a3E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 192, Column: 9 }\nFunction:        _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E\nArgs:\n  - Callee:          _ZN4core3fmt5write17heba65d7649896adbE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 191, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 192, Column: 9 }\nFunction:        _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E\nArgs:\n  - Callee:          _ZN4core3fmt5write17heba65d7649896adbE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN4core3fmt5Write9write_fmt17hb4f952a816c7b824E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 191, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        '_ZN4core3ptr89drop_in_place$LT$std..io..Write..write_fmt..Adapter$LT$std..io..stdio..StdoutLock$GT$$GT$17h4bec449389b40dd8E'\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17hd75554de6c06dea4E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          '_ZN4core3ptr89drop_in_place$LT$std..io..Write..write_fmt..Adapter$LT$std..io..stdio..StdoutLock$GT$$GT$17h4bec449389b40dd8E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                       Line: 497, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '100'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN4core3ptr89drop_in_place$LT$std..io..Write..write_fmt..Adapter$LT$std..io..stdio..StdoutLock$GT$$GT$17h4bec449389b40dd8E'\n  - String:          ':'\n  - Line:            '0'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1714, Column: 15 }\nFunction:        _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\nArgs:\n  - Callee:          _ZN4core3fmt5write17heba65d7649896adbE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1693, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1714, Column: 15 }\nFunction:        _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\nArgs:\n  - Callee:          _ZN4core3fmt5write17heba65d7649896adbE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1693, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1725, Column: 5 }\nFunction:        _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17hd75554de6c06dea4E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1693, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14900'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\n  - String:          ':'\n  - Line:            '32'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 539, Column: 18 }\nFunction:        _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1713, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1725, Column: 5 }\nFunction:        _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1713, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1725, Column: 5 }\nFunction:        _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1725, Column: 5 }\nFunction:        _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1713, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 142, Column: 17 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std2io5stdio5stdin17h995b0e8d735359f6E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 143, Column: 17 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std2io5stdio5Stdin4lock17hf95e06cbedaff7afE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 147, Column: 18 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std2io5stdio6stdout17h5984a4f21c459b04E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 148, Column: 22 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std2io5stdio6Stdout4lock17h2a3d726881475cecE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          '_ZN61_$LT$std..io..stdio..StdoutLock$u20$as$u20$std..io..Write$GT$5flush17ha5612cedfec32950E'\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 160, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          '_ZN4core3num7dec2flt60_$LT$impl$u20$core..str..traits..FromStr$u20$for$u20$f32$GT$8from_str17hcbf54fa69594bcc8E'\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std4time10SystemTime3now17h8870b0e32eac639dE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std4time10SystemTime7elapsed17h5728fe486c12e534E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std2io5stdio7_eprint17h4300be9c055caca2E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 142, Column: 17 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std2io5stdio5stdin17h995b0e8d735359f6E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 143, Column: 17 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std2io5stdio5Stdin4lock17hf95e06cbedaff7afE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 147, Column: 18 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std2io5stdio6stdout17h5984a4f21c459b04E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 148, Column: 22 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std2io5stdio6Stdout4lock17h2a3d726881475cecE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          '_ZN61_$LT$std..io..stdio..StdoutLock$u20$as$u20$std..io..Write$GT$5flush17ha5612cedfec32950E'\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 160, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          '_ZN4core3num7dec2flt60_$LT$impl$u20$core..str..traits..FromStr$u20$for$u20$f32$GT$8from_str17hcbf54fa69594bcc8E'\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std4time10SystemTime3now17h8870b0e32eac639dE\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std4time10SystemTime7elapsed17h5728fe486c12e534E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Missed\nPass:            inline\nName:            NoDefinition\nDebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN3std2io5stdio7_eprint17h4300be9c055caca2E\n  - String:          ' will not be inlined into '\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ' because its definition is unavailable'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 73, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$13with_capacity17h1e938839d7b1b8adE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14865'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN3std2io8buffered9bufreader18BufReader$LT$R$GT$3new17h6ee6826a50792bdaE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '11'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 130, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$11allocate_in17h72a51c630162915fE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14855'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16with_capacity_in17h3e40c755a2fa20a3E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          '_ZN5alloc3vec16Vec$LT$T$C$A$GT$16with_capacity_in17hcf4a35bc3444630bE'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ' @ '\n  - String:          '_ZN5alloc3vec12Vec$LT$T$GT$13with_capacity17h8cc411c24fe4f2f8E'\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ' @ '\n  - String:          _ZN5alloc6string6String13with_capacity17h2ce9c1443a5d696bE\n  - String:          ':'\n  - Line:            '1'\n  - String:          ':'\n  - Column:          '23'\n  - String:          ' @ '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '12'\n  - String:          ':'\n  - Column:          '20'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 2239, Column: 18 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 335, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '965'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 152, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN88_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$similarity_join..util..ForceUnwrap$GT$12unwrap_force17hcf5a18c71d2a474bE'\n    DebugLoc:        { File: 'src/util.rs', Line: 31, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-40'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '19'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17hc2025190665822f2E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14960'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '38'\n  - String:          ':'\n  - Column:          '5'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr47drop_in_place$LT$std..io..stdio..StdoutLock$GT$17h3084d735c2d0a482E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14955'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '39'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h8706786611654137E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14995'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '39'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3ptr93drop_in_place$LT$std..io..buffered..bufreader..BufReader$LT$std..io..stdio..StdinLock$GT$$GT$17h757522476a6e2f7dE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14870'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '39'\n  - String:          ':'\n  - Column:          '1'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 2239, Column: 18 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 335, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '965'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 158, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN88_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$similarity_join..util..ForceUnwrap$GT$12unwrap_force17hcf5a18c71d2a474bE'\n    DebugLoc:        { File: 'src/util.rs', Line: 31, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-40'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '25'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', \n                   Line: 1830, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', \n                       Line: 2020, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '680'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 2239, Column: 18 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 335, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '965'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 163, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN88_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$similarity_join..util..ForceUnwrap$GT$12unwrap_force17hcf5a18c71d2a474bE'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15040'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '30'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', \n                   Line: 1830, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', \n                       Line: 2020, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '680'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 165, Column: 50 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN15similarity_join6record13load_relation17h254df26235556605E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-12205'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '32'\n  - String:          ':'\n  - Column:          '50'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 165, Column: 50 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17he10a8659ad3fe1e0E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14960'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '32'\n  - String:          ':'\n  - Column:          '50'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN4core6result19Result$LT$T$C$E$GT$6unwrap17h18ca03a85aba0075E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14945'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '32'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 307, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '20'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '32'\n  - String:          ':'\n  - Column:          '24'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 166, Column: 22 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN15similarity_join15calculate_query17h85f56e9cf6dcde71E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-13460'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '33'\n  - String:          ':'\n  - Column:          '22'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 167, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core3fmt9Arguments6new_v117h8a0d844b231464f0E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14980'\n  - String:          ', threshold='\n  - Threshold:       '325'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '34'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 167, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2io5Write9write_fmt17h1476850bb111fdc1E\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-14825'\n  - String:          ', threshold='\n  - Threshold:       '250'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '34'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nDebugLoc:        { File: 'src/main.rs', Line: 167, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN88_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$similarity_join..util..ForceUnwrap$GT$12unwrap_force17h665fc82143a86681E'\n  - String:          ''' inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '-15035'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n  - String:          ' at callsite '\n  - String:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n  - String:          ':'\n  - Line:            '34'\n  - String:          ':'\n  - Column:          '9'\n  - String:          ';'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1829, Column: 13 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1829, Column: 13 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1829, Column: 13 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1829, Column: 13 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 301, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 646, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 673, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          noinline function attribute\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 217, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '680'\n  - String:          ', threshold='\n  - Threshold:       '525'\n  - String:          ')'\n...\n--- !Missed\nPass:            inline-cost\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 897, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - Callee:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ' has uninlinable pattern ('\n  - InlineResult:    recursive\n  - String:          ') and cost is not fully computed'\n...\n--- !Missed\nPass:            inline\nName:            NeverInline\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 897, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 797, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because it should never be inlined '\n  - String:          '(cost=never)'\n  - String:          ': '\n  - Reason:          recursive\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.4.3/src/io.rs', \n                       Line: 217, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '680'\n  - String:          ', threshold='\n  - Threshold:       '525'\n  - String:          ')'\n...\n--- !Missed\nPass:            inline\nName:            TooCostly\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                   Line: 103, Column: 18 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          ''''\n  - Callee:          '_ZN6anyhow5error31_$LT$impl$u20$anyhow..Error$GT$9construct17h2cccdaf3c92e529cE'\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.44/src/error.rs', \n                       Line: 218, Column: 0 }\n  - String:          ''' not inlined into '''\n  - Caller:          _ZN15similarity_join4main17h3b296722dbf1bad4E\n    DebugLoc:        { File: 'src/main.rs', Line: 133, Column: 0 }\n  - String:          ''' because too costly to inline '\n  - String:          '(cost='\n  - Cost:            '150'\n  - String:          ', threshold='\n  - Threshold:       '45'\n  - String:          ')'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1286, Column: 29 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1286, Column: 29 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 32, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 32, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 152, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 158, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 163, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1075, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 152, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2051, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 158, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2610, Column: 55 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 163, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2610, Column: 55 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1949, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1949, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 94, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 94, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 94, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 390, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 390, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 390, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 670, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 670, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 670, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 670, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/record.rs', Line: 34, Column: 10 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: 'src/record.rs', Line: 34, Column: 10 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 34, Column: 10 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1075, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1076, Column: 16 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1076, Column: 16 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 311, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 311, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 311, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 311, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 311, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 311, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 311, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 311, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: 'src/main.rs', Line: 167, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: 'src/main.rs', Line: 167, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 311, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 311, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 311, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 311, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 311, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 311, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                   Line: 311, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/fmt/mod.rs', \n                       Line: 311, Column: 9 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1713, Column: 26 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            getelementptr\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1713, Column: 26 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1725, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 921, Column: 13 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: 'src/record.rs', Line: 30, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 170, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 48, Column: 22 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 597, Column: 13 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 240, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: 'src/main.rs', Line: 150, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 152, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 158, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2610, Column: 55 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2034, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 163, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2610, Column: 55 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2034, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 34, Column: 10 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadElim\nDebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' eliminated'\n  - String:          ' in favor of '\n  - InfavorOfValue:  phi\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1075, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 17 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1076, Column: 16 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 17 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1076, Column: 16 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 232, Column: 27 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1725, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1713, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 32, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1286, Column: 29 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<2 x i64>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1367, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1286, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 826, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Passed\nPass:            gvn\nName:            LoadPRE\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          load eliminated by PRE\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 148, Column: 22 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 152, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 158, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2610, Column: 55 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2034, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 163, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2610, Column: 55 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2034, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 34, Column: 10 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1075, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 17 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1076, Column: 16 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 17 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1076, Column: 16 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 232, Column: 27 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1725, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1713, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 32, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1286, Column: 29 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<2 x i64>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1367, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1286, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 826, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 148, Column: 22 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 152, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 158, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2610, Column: 55 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2034, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 163, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2610, Column: 55 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2034, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/fs.rs', \n                       Line: 1116, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 34, Column: 10 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1075, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 17 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1076, Column: 16 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1077, Column: 17 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                       Line: 1076, Column: 16 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 232, Column: 27 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                   Line: 1494, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 64, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 65, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 66, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 67, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 68, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 69, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 70, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 2610, Column: 55 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 57 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                       Line: 223, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 75, Column: 22 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/traits/iterator.rs', \n                   Line: 2481, Column: 21 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i16\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 165, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 51, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 49, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 71, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 78, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1725, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1713, Column: 26 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 1714, Column: 15 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 32, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i32\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1286, Column: 29 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<2 x i64>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                       Line: 2685, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 38, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 36, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1367, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 1286, Column: 29 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            '<16 x i8>'\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 826, Column: 25 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/map.rs', \n                       Line: 390, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                       Line: 646, Column: 16 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1834, Column: 13 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     load\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1828, Column: 12 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 670, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                       Line: 1829, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: 'src/main.rs', Line: 148, Column: 22 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: 'src/main.rs', Line: 172, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/string.rs', \n                       Line: 492, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i64\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            ptr\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: 'src/main.rs', Line: 171, Column: 5 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/sys/unix/locks/futex_mutex.rs', \n                       Line: 88, Column: 13 }\n...\n--- !Missed\nPass:            gvn\nName:            LoadClobbered\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'load of type '\n  - Type:            i8\n  - String:          ' not eliminated'\n  - String:          ' in favor of '\n  - OtherAccess:     store\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                       Line: 94, Column: 9 }\n  - String:          ' because it is clobbered by '\n  - ClobberedBy:     atomicrmw\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/sync/atomic.rs', \n                       Line: 3202, Column: 24 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1286, Column: 29 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 32, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 152, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 158, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2610, Column: 55 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 163, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2610, Column: 55 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 34, Column: 10 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1075, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1725, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            inline\nName:            Inlined\nFunction:        main\nArgs:\n  - String:          ''''\n  - Callee:          _ZN3std2rt10lang_start17h553b022b5decff43E\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/rt.rs', \n                       Line: 159, Column: 0 }\n  - String:          ''' inlined into '''\n  - Caller:          main\n  - String:          ''''\n  - String:          ' with '\n  - String:          '(cost='\n  - Cost:            '15'\n  - String:          ', threshold='\n  - Threshold:       '375'\n  - String:          ')'\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NoCFGForSelect\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 114, Column: 13 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          control flow cannot be substituted for a select\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantVectorizeLibcall\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                   Line: 26, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          call instruction cannot be vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          loop not vectorized\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/error/repr_bitpacked.rs', \n                   Line: 251, Column: 5 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 341, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 86 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 76 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Passed\nPass:            slp-vectorizer\nName:            StoresVectorized\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 117, Column: 13 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'Stores SLP vectorized with cost '\n  - Cost:            '-1'\n  - String:          ' and with tree size '\n  - TreeSize:        '2'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1942, Column: 5 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 12 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 105, Column: 24 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 108, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 909, Column: 26 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 29 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 74, Column: 45 }\nFunction:        _ZN3std2io16append_to_string17hdb4e79fcd6362ebbE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            LoopContainsSwitch\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', \n                   Line: 811, Column: 9 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          loop contains a switch statement\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/mod.rs', \n                   Line: 0, Column: 0 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 39, Column: 8 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 39, Column: 8 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            LoopContainsSwitch\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/char/methods.rs', \n                   Line: 811, Column: 9 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          loop contains a switch statement\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 85, Column: 22 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 85, Column: 22 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 85, Column: 22 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          loop not vectorized\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 18, Column: 5 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 18, Column: 5 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/str/validations.rs', \n                   Line: 18, Column: 5 }\nFunction:        '_ZN4core3str21_$LT$impl$u20$str$GT$12trim_matches17h56ed093d6efe416bE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 690, Column: 22 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 689, Column: 22 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 710, Column: 16 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 690, Column: 22 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 689, Column: 22 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 879, Column: 36 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 690, Column: 17 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 690, Column: 22 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 689, Column: 22 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 879, Column: 36 }\nFunction:        _ZN4core5slice4sort14break_patterns17hdd6bf0df32f14469E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 19 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Passed\nPass:            slp-vectorizer\nName:            StoresVectorized\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'Stores SLP vectorized with cost '\n  - Cost:            '-1'\n  - String:          ' and with tree size '\n  - TreeSize:        '2'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Passed\nPass:            slp-vectorizer\nName:            StoresVectorized\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'Stores SLP vectorized with cost '\n  - Cost:            '-1'\n  - String:          ' and with tree size '\n  - TreeSize:        '2'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Passed\nPass:            slp-vectorizer\nName:            StoresVectorized\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'Stores SLP vectorized with cost '\n  - Cost:            '-1'\n  - String:          ' and with tree size '\n  - TreeSize:        '2'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Passed\nPass:            slp-vectorizer\nName:            StoresVectorized\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'Stores SLP vectorized with cost '\n  - Cost:            '-1'\n  - String:          ' and with tree size '\n  - TreeSize:        '2'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Passed\nPass:            slp-vectorizer\nName:            StoresVectorized\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2772, Column: 9 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'Stores SLP vectorized with cost '\n  - Cost:            '-1'\n  - String:          ' and with tree size '\n  - TreeSize:        '2'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 215, Column: 31 }\nFunction:        _ZN4core5slice4sort22partial_insertion_sort17h8fefea3e765abac5E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 73, Column: 20 }\nFunction:        _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 73, Column: 20 }\nFunction:        _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 52, Column: 12 }\nFunction:        _ZN4core5slice4sort25insertion_sort_shift_left17h8431732579a06c40E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 621, Column: 12 }\nFunction:        _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 621, Column: 12 }\nFunction:        _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 96, Column: 12 }\nFunction:        _ZN4core5slice4sort26insertion_sort_shift_right17h9bade86ae4ae4d70E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantIdentifyArrayBounds\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                   Line: 1022, Column: 18 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          cannot identify array bounds\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 515, Column: 15 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantIdentifyArrayBounds\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                   Line: 481, Column: 18 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          cannot identify array bounds\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 538, Column: 15 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 470, Column: 55 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantIdentifyArrayBounds\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                   Line: 481, Column: 18 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          cannot identify array bounds\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 621, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 621, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 621, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 621, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 621, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 593, Column: 13 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 593, Column: 13 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 588, Column: 19 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 588, Column: 19 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 646, Column: 13 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 646, Column: 13 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 641, Column: 19 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 641, Column: 19 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Passed\nPass:            loop-vectorize\nName:            Vectorized\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 977, Column: 19 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'vectorized loop (vectorization width: '\n  - VectorizationFactor: '4'\n  - String:          ', interleaved count: '\n  - InterleaveCount: '2'\n  - String:          ')'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 873, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                   Line: 215, Column: 18 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 482, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/num/mod.rs', \n                   Line: 456, Column: 5 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                   Line: 215, Column: 18 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                   Line: 215, Column: 18 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 356, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                   Line: 215, Column: 18 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 1363, Column: 52 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 1363, Column: 52 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 1363, Column: 52 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 768, Column: 47 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 0, Column: 0 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/cmp.rs', \n                   Line: 1363, Column: 52 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 768, Column: 47 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 751, Column: 16 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 813, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Passed\nPass:            loop-unroll\nName:            PartialUnrolled\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 621, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'unrolled loop by a factor of '\n  - UnrollCount:     '4'\n  - String:          ' with run-time trip count'\n...\n--- !Passed\nPass:            loop-unroll\nName:            PartialUnrolled\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 621, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'unrolled loop by a factor of '\n  - UnrollCount:     '4'\n  - String:          ' with run-time trip count'\n...\n--- !Passed\nPass:            loop-unroll\nName:            PartialUnrolled\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/range.rs', \n                   Line: 621, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'unrolled loop by a factor of '\n  - UnrollCount:     '2'\n  - String:          ' with run-time trip count'\n...\n--- !Passed\nPass:            loop-unroll\nName:            PartialUnrolled\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 538, Column: 15 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'unrolled loop by a factor of '\n  - UnrollCount:     '2'\n  - String:          ' with run-time trip count'\n...\n--- !Passed\nPass:            loop-unroll\nName:            PartialUnrolled\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 515, Column: 15 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'unrolled loop by a factor of '\n  - UnrollCount:     '4'\n  - String:          ' with run-time trip count'\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 813, Column: 12 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                       Line: 830, Column: 13 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 851, Column: 17 }\nFunction:        _ZN4core5slice4sort7recurse17h4f6627290dcc6858E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 263, Column: 16 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 263, Column: 16 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 263, Column: 16 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 263, Column: 16 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 263, Column: 16 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 263, Column: 16 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          loop not vectorized\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 271, Column: 17 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 267, Column: 26 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 271, Column: 17 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/sort.rs', \n                   Line: 267, Column: 26 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/intrinsics.rs', \n                   Line: 2685, Column: 9 }\nFunction:        _ZN4core5slice4sort8heapsort17h7bdf709c6622293cE\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 481, Column: 32 }\nFunction:        _ZN5alloc7raw_vec11finish_grow17hc6d73ea91c80c25cE\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 240, Column: 25 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h4e598a0c90b44c08E'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 240, Column: 25 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h70c31b5f0455954eE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 240, Column: 25 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17hdaa1dafcc2ad177dE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 240, Column: 25 }\nFunction:        '_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17hb69c872cde1f101bE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NoCFGForSelect\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 114, Column: 13 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          control flow cannot be substituted for a select\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 466, Column: 11 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 466, Column: 11 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 466, Column: 11 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 86 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 76 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Passed\nPass:            slp-vectorizer\nName:            StoresVectorized\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 117, Column: 13 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'Stores SLP vectorized with cost '\n  - Cost:            '-1'\n  - String:          ' and with tree size '\n  - TreeSize:        '2'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 86 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 466, Column: 11 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/impls.rs', \n                       Line: 26, Column: 9 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 57, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 52, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader.rs', \n                   Line: 268, Column: 12 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 42, Column: 53 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/buffered/bufreader/buffer.rs', \n                   Line: 111, Column: 30 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/readbuf.rs', \n                   Line: 86, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 15 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 473, Column: 27 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 467, Column: 9 }\nFunction:        _ZN9byteorder2io12ReadBytesExt8read_u3217h964c8784a377f9a4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantVectorizeInstructionReturnType\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          instruction return type cannot be vectorized\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1249, Column: 18 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1216, Column: 24 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1216, Column: 24 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1216, Column: 24 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1216, Column: 24 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1216, Column: 24 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1216, Column: 24 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantVectorizeInstructionReturnType\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          instruction return type cannot be vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1811, Column: 20 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1811, Column: 20 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          loop not vectorized\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1382, Column: 9 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/num/mod.rs', \n                   Line: 1267, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/step_by.rs', \n                   Line: 561, Column: 1 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 222, Column: 8 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Passed\nPass:            loop-unroll\nName:            PartialUnrolled\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1249, Column: 18 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          'unrolled loop by a factor of '\n  - UnrollCount:     '2'\n  - String:          ' with run-time trip count'\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 737, Column: 32 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        '_ZN9hashbrown3raw21RawTable$LT$T$C$A$GT$14reserve_rehash17hb8099bbb1df2c55dE'\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NoCFGForSelect\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/alloc.rs', \n                   Line: 251, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          control flow cannot be substituted for a select\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantVectorizeLibcall\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                   Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          call instruction cannot be vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantVectorizeInstruction\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 240, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          instruction cannot be vectorized\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 240, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantVectorizeInstructionReturnType\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs', \n                   Line: 1188, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          instruction return type cannot be vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1811, Column: 20 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1811, Column: 20 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Passed\nPass:            loop-vectorize\nName:            Vectorized\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 270, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'vectorized loop (vectorization width: '\n  - VectorizationFactor: '2'\n  - String:          ', interleaved count: '\n  - InterleaveCount: '2'\n  - String:          ')'\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantIdentifyArrayBounds\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                   Line: 1022, Column: 18 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          cannot identify array bounds\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/iter/macros.rs', \n                   Line: 162, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantIdentifyArrayBounds\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mut_ptr.rs', \n                   Line: 1022, Column: 18 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          cannot identify array bounds\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: 'src/main.rs', Line: 46, Column: 37 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 2780, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 2780, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 2780, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CFGNotUnderstood\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', \n                   Line: 118, Column: 19 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          loop control flow is not understood by vectorizer\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', \n                   Line: 118, Column: 19 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', \n                   Line: 118, Column: 19 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1216, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1216, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1216, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            NonReductionValueUsedOutsideLoop\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1216, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          value that could not be identified as reduction is used outside the loop\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1216, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1216, Column: 24 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CFGNotUnderstood\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', \n                   Line: 118, Column: 19 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          loop control flow is not understood by vectorizer\n...\n--- !Analysis\nPass:            loop-vectorize\nName:            CantComputeNumberOfIterations\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', \n                   Line: 118, Column: 19 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'loop not vectorized: '\n  - String:          could not determine number of loop iterations\n...\n--- !Missed\nPass:            loop-vectorize\nName:            MissedDetails\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/bitmask.rs', \n                   Line: 118, Column: 19 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          loop not vectorized\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 921, Column: 27 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1309, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 921, Column: 27 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: 'src/main.rs', Line: 49, Column: 29 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: 'src/main.rs', Line: 56, Column: 38 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/slice/mod.rs', \n                   Line: 2792, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 921, Column: 27 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 921, Column: 27 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/enumerate.rs', \n                   Line: 113, Column: 0 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotBeneficial\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'List vectorization was possible but not beneficial with cost '\n  - Cost:            '0'\n  - String:          ' >= '\n  - Treshold:        '0'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: 'src/main.rs', Line: 153, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 921, Column: 13 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: 'src/record.rs', Line: 30, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 170, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 48, Column: 22 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 597, Column: 13 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 240, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimallocator-0.1.3/src/lib.rs', \n                       Line: 59, Column: 9 }\n...\n--- !Passed\nPass:            TTI\nName:            DontUnroll\nDebugLoc:        { File: 'src/main.rs', Line: 150, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'advising against unrolling the loop because it contains a '\n  - Call:            call\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                       Line: 2239, Column: 18 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 40, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1286, Column: 29 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1367, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 826, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 828, Column: 25 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1308, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/home/kobzol/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.11.2/src/raw/mod.rs', \n                   Line: 1310, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 31, Column: 26 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 32, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1828, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 231, Column: 44 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 1832, Column: 45 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 270, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            insertelement\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 270, Column: 12 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 270, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            shufflevector\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 270, Column: 12 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 270, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            insertelement\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 270, Column: 12 }\n...\n--- !Passed\nPass:            licm\nName:            Hoisted\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                   Line: 270, Column: 12 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          'hoisting '\n  - Inst:            shufflevector\n    DebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/iter/adapters/zip.rs', \n                       Line: 270, Column: 12 }\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 152, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2051, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 158, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2610, Column: 55 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/main.rs', Line: 163, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/raw_vec.rs', \n                   Line: 223, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/alloc/src/vec/mod.rs', \n                   Line: 2610, Column: 55 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1949, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 34, Column: 10 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 57, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 58, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: 'src/record.rs', Line: 59, Column: 9 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/mod.rs', \n                   Line: 497, Column: 1 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1075, Column: 15 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/result.rs', \n                   Line: 1076, Column: 16 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            licm\nName:            LoadWithLoopInvariantAddressInvalidated\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/std/src/io/mod.rs', \n                   Line: 1725, Column: 5 }\nFunction:        _ZN15similarity_join4main17h3b296722dbf1bad4E\nArgs:\n  - String:          failed to move load with loop-invariant address because the loop may invalidate its value\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/alignment.rs', \n                   Line: 88, Column: 18 }\nFunction:        __rust_alloc\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/alignment.rs', \n                   Line: 88, Column: 18 }\nFunction:        __rust_realloc\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n--- !Missed\nPass:            slp-vectorizer\nName:            NotPossible\nDebugLoc:        { File: '/rustc/08d00b40aef2017fe6dba3ff7d6476efa0c10888/library/core/src/ptr/alignment.rs', \n                   Line: 88, Column: 18 }\nFunction:        __rust_alloc_zeroed\nArgs:\n  - String:          'Cannot SLP vectorize list: vectorization was impossible'\n  - String:          ' with available vectorization factors'\n...\n"
  },
  {
    "path": "tests/integration/analyze.rs",
    "content": "use crate::utils::{analyze_remarks, get_test_data_path, HTMLDir, OutputExt};\n\n#[test]\nfn analyze_directory() -> anyhow::Result<()> {\n    let dir = tempfile::TempDir::new()?;\n    analyze_remarks(\n        dir.path(),\n        &[\n            \"--source-dir\",\n            dir.path().to_str().unwrap(),\n            \"--output-dir\",\n            \"foo\",\n            get_test_data_path(\"remarks-1\").to_str().unwrap(),\n        ],\n    )?\n    .assert_ok();\n    let dir = HTMLDir::new(&dir.path().join(\"foo\"));\n    dir.check_index();\n\n    Ok(())\n}\n\n#[test]\nfn create_source_file() -> anyhow::Result<()> {\n    let data_dir = get_test_data_path(\"remarks-similarity-join\");\n    let dir = tempfile::TempDir::new()?;\n    let output_dir = \"output\";\n\n    analyze_remarks(\n        dir.path(),\n        &[\n            \"--source-dir\",\n            data_dir.to_str().unwrap(),\n            \"--output-dir\",\n            output_dir,\n            data_dir.join(\"yaml\").to_str().unwrap(),\n        ],\n    )?\n    .assert_ok();\n    let dir = HTMLDir::new(&dir.path().join(output_dir));\n    dir.check_source(\"src_main.rs.html\");\n    dir.check_source(\"src_record.rs.html\");\n\n    Ok(())\n}\n"
  },
  {
    "path": "tests/integration/build.rs",
    "content": "use crate::utils::{cargo_remark, init_cargo_project, OutputExt};\nuse cargo_remark::remark::{load_remarks_from_dir, Location, Remark, RemarkLoadOptions};\nuse std::path::Path;\n\nconst INLINE_NEVER_SOURCE: &str = r#\"\n#[inline(never)]\nfn foo() {}\n\nfn main() {\n    foo();\n}\n\"#;\n\n#[test]\nfn test_build_filter() -> anyhow::Result<()> {\n    let mut project = init_cargo_project()?;\n    project.file(\"src/main.rs\", INLINE_NEVER_SOURCE);\n    cargo_remark(&project.dir, &[\"build\", \"--filter\", \"NeverInline\"])?.assert_ok();\n    assert!(load_remarks(&project.remark_dir(), vec![]).is_empty());\n    Ok(())\n}\n\n#[test]\nfn test_generate_remarks() -> anyhow::Result<()> {\n    let mut project = init_cargo_project()?;\n    project.file(\"src/main.rs\", INLINE_NEVER_SOURCE);\n    cargo_remark(&project.dir, &[\"build\", \"--filter\", \"\"])?.assert_ok();\n\n    project.default_out_dir().check_index();\n\n    let remark_dir = project.remark_dir();\n    assert!(remark_dir.is_dir());\n    let remarks = load_remarks_from_dir(\n        &remark_dir,\n        RemarkLoadOptions {\n            external: false,\n            source_dir: project.dir.clone(),\n            filter_kind: vec![],\n            rustc_source_root: None,\n        },\n        None,\n    )?;\n\n    let remark = remarks\n        .iter()\n        .find(|remark| remark.name == \"NeverInline\")\n        .unwrap();\n    assert_eq!(remark.pass, \"inline\");\n    assert_eq!(remark.function.name, \"foo::main\");\n\n    // Windows doesn't seem to load the debug location correctly\n    #[cfg(unix)]\n    {\n        assert_eq!(\n            normalize_location(remark.function.location.as_ref()),\n            Some(Location {\n                file: \"src/main.rs\".to_string(),\n                line: 6,\n                column: 5\n            })\n        );\n    }\n\n    Ok(())\n}\n\nfn normalize_location(location: Option<&Location>) -> Option<Location> {\n    location.map(|l| Location {\n        file: l.file.replace('\\\\', \"/\"),\n        line: l.line,\n        column: l.column,\n    })\n}\n\nfn load_remarks(path: &Path, filter: Vec<String>) -> Vec<Remark> {\n    load_remarks_from_dir(\n        path,\n        RemarkLoadOptions {\n            external: false,\n            source_dir: path.to_path_buf(),\n            filter_kind: filter,\n            rustc_source_root: None,\n        },\n        None,\n    )\n    .expect(\"Cannot load remarks\")\n}\n"
  },
  {
    "path": "tests/integration/main.rs",
    "content": "mod analyze;\nmod build;\nmod utils;\n"
  },
  {
    "path": "tests/integration/utils/mod.rs",
    "content": "use std::path::{Path, PathBuf};\nuse std::process::{Command, Output, Stdio};\nuse tempfile::TempDir;\n\npub fn cargo_remark(dir: &Path, args: &[&str]) -> anyhow::Result<Output> {\n    let mut command = Command::new(\"cargo\");\n    command.arg(\"remark\");\n    for arg in args {\n        command.arg(arg);\n    }\n    command.current_dir(dir);\n    command.stdin(Stdio::null());\n    command.stdout(Stdio::piped());\n\n    let path = std::env::var(\"PATH\").unwrap_or_default();\n    let path = format!(\"{}:{}\", get_target_dir().display(), path);\n\n    command.env(\"PATH\", path);\n\n    let child = command.spawn()?;\n    Ok(child.wait_with_output()?)\n}\n\npub fn analyze_remarks(dir: &Path, args: &[&str]) -> anyhow::Result<Output> {\n    let mut command = Command::new(\"analyze-remarks\");\n    for arg in args {\n        command.arg(arg);\n    }\n    command.current_dir(dir);\n    command.stdin(Stdio::null());\n    command.stdout(Stdio::piped());\n\n    let path = std::env::var(\"PATH\").unwrap_or_default();\n    let path = format!(\"{}:{}\", get_target_dir().display(), path);\n\n    command.env(\"PATH\", path);\n\n    let child = command.spawn()?;\n    Ok(child.wait_with_output()?)\n}\n\npub trait OutputExt {\n    fn assert_ok(self) -> Self;\n    fn assert_error(self) -> Self;\n\n    fn stdout(&self) -> String;\n    fn stderr(&self) -> String;\n}\n\nimpl OutputExt for Output {\n    fn assert_ok(self) -> Self {\n        if !self.status.success() {\n            eprintln!(\"Stdout: {}\", self.stdout());\n            eprintln!(\"Stderr: {}\", self.stderr());\n            panic!(\"Output was not successful\");\n        }\n        self\n    }\n\n    fn assert_error(self) -> Self {\n        if self.status.success() {\n            eprintln!(\"Stdout: {}\", self.stdout());\n            eprintln!(\"Stderr: {}\", self.stderr());\n            panic!(\"Output was successful\");\n        }\n        self\n    }\n\n    fn stdout(&self) -> String {\n        String::from_utf8_lossy(&self.stdout).to_string()\n    }\n\n    fn stderr(&self) -> String {\n        String::from_utf8_lossy(&self.stderr).to_string()\n    }\n}\n\nfn get_target_dir() -> PathBuf {\n    let mut target_dir = PathBuf::from(env!(\"CARGO_MANIFEST_DIR\"));\n    target_dir.push(\"target\");\n    target_dir.push(\"debug\");\n    target_dir\n}\n\npub fn get_test_data_path<P: AsRef<Path>>(path: P) -> PathBuf {\n    PathBuf::from(env!(\"CARGO_MANIFEST_DIR\"))\n        .join(\"tests\")\n        .join(\"data\")\n        .join(path.as_ref())\n}\n\npub struct HTMLDir {\n    dir: PathBuf,\n}\n\nimpl HTMLDir {\n    pub fn new(dir: &Path) -> Self {\n        Self {\n            dir: dir.to_path_buf(),\n        }\n    }\n\n    pub fn check_index(&self) {\n        self.check_exists(\"index.html\");\n    }\n\n    pub fn check_source(&self, file: &str) {\n        self.check_exists(Path::new(\"src\").join(file));\n    }\n\n    fn check_exists<P: AsRef<Path>>(&self, path: P) {\n        let path = self.dir.join(path.as_ref());\n        assert!(path.is_file());\n        assert!(path.metadata().unwrap().len() > 0);\n    }\n}\n\npub struct CargoProject {\n    pub dir: PathBuf,\n    _tempdir: TempDir,\n}\n\nimpl CargoProject {\n    pub fn path<P: Into<PathBuf>>(&self, path: P) -> PathBuf {\n        let path = path.into();\n        self.dir.join(path)\n    }\n\n    pub fn file<P: AsRef<Path>>(&mut self, path: P, code: &str) -> &mut Self {\n        let path = self.path(path.as_ref());\n        std::fs::write(path, code).expect(\"Could not write project file\");\n        self\n    }\n\n    pub fn remark_dir(&self) -> PathBuf {\n        self.path(\"target/remarks/yaml\")\n    }\n\n    pub fn default_out_dir(&self) -> HTMLDir {\n        self.out_dir(&self.path(\"target/remarks/web\"))\n    }\n\n    fn out_dir(&self, path: &Path) -> HTMLDir {\n        HTMLDir::new(path)\n    }\n}\n\nimpl Drop for CargoProject {\n    fn drop(&mut self) {\n        if std::thread::panicking() {\n            // Do not delete the directory if an error has occurred\n            let path = std::mem::replace(&mut self._tempdir, TempDir::new().unwrap()).into_path();\n            eprintln!(\"Directory of failed test located at: {}\", path.display());\n        }\n    }\n}\n\npub fn init_cargo_project() -> anyhow::Result<CargoProject> {\n    let dir = tempfile::tempdir()?;\n\n    let name = \"foo\";\n    let status = Command::new(\"cargo\")\n        .args([\"new\", \"--bin\", name])\n        .current_dir(dir.path())\n        .status()?;\n    assert!(status.success());\n\n    let path = dir.path().join(name);\n\n    println!(\"Created Cargo project {} at {}\", name, path.display());\n\n    Ok(CargoProject {\n        dir: path,\n        _tempdir: dir,\n    })\n}\n"
  }
]