Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

-Clink-dead-code and -Cinstrument-coverage causes symbol already defined compiler error in nightly #137009

Closed
xd009642 opened this issue Feb 14, 2025 · 12 comments · Fixed by #137035
Assignees
Labels
A-code-coverage Area: Source-based code coverage (-Cinstrument-coverage) A-monomorphization Area: Monomorphization A-name-mangling Area: name mangling / decoration C-bug Category: This is a bug. E-needs-mcve Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example regression-untriaged Untriaged performance or correctness regression. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@xd009642
Copy link
Contributor

Code

With just the following cargo.toml

[package]
name = "debug-tarp-issue"
version = "0.1.0"
edition = "2018"

[dependencies]
reqwest = { version = "0.12", features = ["blocking"] }

and a main.rs with the default contents. Running

RUSTFLAGS="-Clink-dead-code -Cinstrument-coverage" cargo test

Results in:

error: symbol `_RNCNvNtNtNtNtCs6KohR1qTMkp_10hyper_util6client6legacy7connect4http7connect0Bb_` is already defined
   --> /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.10/src/client/legacy/connect/http.rs:795:8
    |
795 |     Ok(async move {
    |        ^^^^^^^^^^

error: could not compile `hyper-util` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
Error: Process completed with exit code 101.

I've done a bit of work to narrow this down. So either of the flags on their own is fine, it's just the combination that causes the issue.,

I also have a MRE reproduction repo here: https://github.com/xd009642/debug-tarp-issue

Version with regression

So because this happened in a CI job for tarpaulin and we have some flaky tests and I don't use a mac myself I don't have an exact version. But this first occurred in our CI January 13th 2025. This is evident because the mac nightly builds have failed from that date until now. Mac stable and beta still work fine.

@xd009642 xd009642 added C-bug Category: This is a bug. regression-untriaged Untriaged performance or correctness regression. labels Feb 14, 2025
@rustbot rustbot added I-prioritize Issue: Indicates that prioritization has been requested for this issue. needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. labels Feb 14, 2025
@xd009642
Copy link
Contributor Author

My end I'm also sorry I haven't investigated this sooner, I don't have a mac and there's an ever growing pile of issues so getting through things takes some concentrated effort my end

@Noratrieb
Copy link
Member

Note that -Clink-dead-code is no longer useful for coverage and you can just remove it.

@Noratrieb Noratrieb added the E-needs-bisection Call for participation: This issue needs bisection: https://github.com/rust-lang/cargo-bisect-rustc label Feb 14, 2025
@xd009642
Copy link
Contributor Author

xd009642 commented Feb 14, 2025

hmm I've tried removing it in tarpaulin but then I get no coverage data in public modules with no tested code. But I can see cargo-llvm-cov gets me results without adding link-dead-code on the same files so I'll look into that 🤔

EDIT: silly me was doing overly constrained filtering of results

@apiraino
Copy link
Contributor

I could compile the MRE reduction on x86_64 just to exclude it from the affected platforms

@rustbot label +O-macos

@rustbot rustbot added the O-macos Operating system: macOS label Feb 14, 2025
@jieyouxu jieyouxu added A-code-coverage Area: Source-based code coverage (-Cinstrument-coverage) A-linkage Area: linking into static, shared libraries and binaries E-needs-mcve Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example and removed needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. labels Feb 14, 2025
@saethlin saethlin self-assigned this Feb 14, 2025
@saethlin
Copy link
Member

Minimized further:

[package]
name = "scratch"
version = "0.1.0"
edition = "2024"

[dependencies]
tokio = { version = "1.43.0", features = ["net"] }
use std::future::Future;
use std::net::{Ipv4Addr, SocketAddr};
use tokio::net::{TcpStream};

async fn connect() {
    connect2().await;
}   

fn connect2() -> impl Future<Output = TcpStream> {
    let addr = SocketAddr::from(("127.0.0.1".parse::<Ipv4Addr>().unwrap(), 80));
    let connect = TcpStream::connect(addr);
    async move {
        connect.await.unwrap()
    }   
}

@saethlin
Copy link
Member

The above reproducer is now portable. Still not minimal.

@saethlin saethlin added A-monomorphization Area: Monomorphization and removed O-macos Operating system: macOS A-linkage Area: linking into static, shared libraries and binaries labels Feb 14, 2025
@saethlin
Copy link
Member

This is also not a linkage issue, this is an issue in how eager monomorphization works

@saethlin
Copy link
Member

Regression points to #135149 cc @compiler-errors
I was expecting this to bisect to your PR that made eager collection collect more things.

@saethlin saethlin added A-name-mangling Area: name mangling / decoration and removed E-needs-bisection Call for participation: This issue needs bisection: https://github.com/rust-lang/cargo-bisect-rustc labels Feb 14, 2025
@compiler-errors
Copy link
Member

lamo what

@saethlin saethlin changed the title -Clink-dead-code and -Cinstrument-coverage causes symbol already defined compiler error on Mac nightly -Clink-dead-code and -Cinstrument-coverage causes symbol already defined compiler error in nightly Feb 14, 2025
@saethlin
Copy link
Member

We still get an error if you use -Zprint-mono-items=eager instead of -Clink-dead-code. Still haven't the foggiest idea why -Cinstrument-coverage matters, and I've tried using the trivial futures we provide in std::futures and those don't seem to trip this.

@compiler-errors
Copy link
Member

Minimal, reproducible with -Zprint-mono-items=eager -Csymbol-mangling-version=v0.

fn opaque() -> impl Sized {}

fn test() -> impl FnOnce() {
    let opaque = opaque();
    move || {
        let opaque = opaque;
    }
}

fn main() {
    test()();
}

I'll put up a fix soon. Doesn't have to do with async/await (un)luckily.

Sorry for sniping the issue.

@jieyouxu jieyouxu added the T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. label Feb 14, 2025
@bors bors closed this as completed in baa5a76 Feb 15, 2025
rust-timer added a commit to rust-lang-ci/rust that referenced this issue Feb 15, 2025
Rollup merge of rust-lang#137035 - compiler-errors:eagerly-mono-closures-after-norm, r=saethlin

Normalize closure instance before eagerly monomorphizing it

We were monomorphizing two versions of the closure (or in the original issue, coroutine) -- one with normalized captures and one with unnormalized captures. This led to a symbol collision.

Fixes rust-lang#137009

r? `@saethlin` or reassign
@apiraino
Copy link
Contributor

thanks @saethlin and @compiler-errors ! :)

@apiraino apiraino removed the I-prioritize Issue: Indicates that prioritization has been requested for this issue. label Feb 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-code-coverage Area: Source-based code coverage (-Cinstrument-coverage) A-monomorphization Area: Monomorphization A-name-mangling Area: name mangling / decoration C-bug Category: This is a bug. E-needs-mcve Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example regression-untriaged Untriaged performance or correctness regression. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

7 participants