llvm / llvm-project

The LLVM Project is a collection of modular and reusable compiler and toolchain technologies.
http://llvm.org
Other
27.81k stars 11.45k forks source link

Unrelated errors introduce additional runtime diagnostics by skipping CFG construction #58276

Open rnk opened 1 year ago

rnk commented 1 year ago

Consider: https://gcc.godbolt.org/z/dq6q8xxhY

#include <string.h>
struct Foo {
    virtual ~Foo();
    int x;
};
#error
constexpr bool alwaysFalse = false;
void maywarn(Foo *p) {
    if constexpr (alwaysFalse) {
        memset(p, 0, sizeof(*p));
    }
    if (alwaysFalse) {
        memset(p, 0, sizeof(*p)); // warns
    }
}

This produces this -Wdynamic-class-memaccess warning:

<source>:15:16: warning: destination for this 'memset' call is a pointer to dynamic class 'Foo'; vtable pointer will be overwritten [-Wdynamic-class-memaccess]
        memset(p, 0, sizeof(*p));
        ~~~~~~ ^
<source>:15:16: note: explicitly cast the pointer to silence this warning
        memset(p, 0, sizeof(*p));
               ^
               (void*)

This goes away if you remove the #error.

This causes issues because this latent warning can be present in header files in a warning-clean codebase, and it only appears when developers later introduce an error. The extra warning can obscure the actual problem because, with -Werror, developers end up seeing two errors.

These two conditionals prevent Clang from doing CFG-based warnings in the presence of errors:

To fix the bug, we need to modify those conditionals to either:

I've prototyped both changes, and they break a lot of Clang tests, and I'm filing this issue to track followup.

llvmbot commented 1 year ago

@llvm/issue-subscribers-good-first-issue

aaronpuchert commented 1 year ago

Why does -Wdynamic-class-memaccess even do a reachability analysis? This seems like a regular type-based warning, for which we typically don't check reachability. But there are lots of users of DiagRuntimeBehavior/DiagIfReachable, and potentially all of them are affected by this.

Always construct a CFG for analysis even in the presence of errors

Might be difficult. Especially if the error is in the same function, or affects the function in some way.

Don't issue any diagnostics about possibly unreachable code in the presence of other errors

That seems like the right approach to me. We do the same for -Wthread-safety-analysis, and probably other CFG-based warning.

chaitanyav commented 1 year ago

@rnk @aaronpuchert is this still open to work?

xgupta commented 1 year ago

@rnk @aaronpuchert is this still open to work?

Yes, it seems.

youngsun4786 commented 3 months ago

@rnk @aaronpuchert Hello, is this issue open to work? It's my first time contributing to llvm!

aaronpuchert commented 3 months ago

I'm not aware of anyone working on this.