-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Leak when binding a stack closure #2036
Comments
For me (on Linux) this program doesn't leak and is Valgrind-clean. |
I dug a little deeper and the problem is with declaring the type as a stack closure. Here's a reduced test:
Declaring add4 as |
Interesting. I can see why this fails, yes. The problem is that we have no cleanup for fn() types (and rightly so)... we assume that an fn() variable is an alias for an fn@() somewhere else. So here the problem is when we upcast the fn@() to an fn(). This is in fact a borrowing operation (a la regions) and I can probably fix this bug at the same time as I implement borrowing more generally. |
Actually, the simpler fix is just to prevent fn() from being stored in a local variable---just as we do with fn&(). |
Obsolete, since we no longer have bind ( #2189 ). Closing. |
…ang#2246) This change allows us to pin-point exactly which build artifacts are related to a cargo build run. This is required to re-enable the build cache (rust-lang#2036) where multiple artifacts can co-exist in the same folder. The solution implemented here is rather hacky, but it's more reliable than other alternatives I've tried (see model-checking/kani#2246). Now, `kani-compiler` will generate stubs in the place of binaries, shared, and static libraries when those types are requested. Those stubs will contain a JSON representation of the new type `CompilerArtifactStub`, which basically contain the path for the `metadata.json` file where the compiler stores the metadata related to a given crate. `kani-driver` will parse `CompilerArtifact` messages to figure out which artifacts were built for the given build. For libraries, it will derive the name of the metadata file from the `rmeta` filepath. For other types of artifacts, it will parse the output file, convert it to `CompilerArtifactStub`, and extract the path for the `rmeta` filepath.
This example from the language reference leaks
The text was updated successfully, but these errors were encountered: