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

Leak when binding a stack closure #2036

Closed
brson opened this issue Mar 21, 2012 · 5 comments
Closed

Leak when binding a stack closure #2036

brson opened this issue Mar 21, 2012 · 5 comments
Assignees

Comments

@brson
Copy link
Contributor

brson commented Mar 21, 2012

This example from the language reference leaks

fn main() {
    fn add(x: int, y: int) -> int {
        ret x + y;
    }

    type single_param_fn = fn(int) -> int;

    let add4: single_param_fn = bind add(4, _);
    let add5: single_param_fn = bind add(_, 5);

    assert (add(4,5) == add4(5));
    assert (add(4,5) == add5(4));
}
Unreclaimed object found at 0x678b7a0: ((), (5))
Unreclaimed object found at 0x678b730: ((), (4))
rust: fatal, 'leaked memory in rust main loop (2 objects)' failed, ../src/rt/memory_region.cpp:158 2 objects
@marijnh
Copy link
Contributor

marijnh commented Mar 21, 2012

For me (on Linux) this program doesn't leak and is Valgrind-clean.

@brson
Copy link
Contributor Author

brson commented Mar 21, 2012

I dug a little deeper and the problem is with declaring the type as a stack closure. Here's a reduced test:

fn main() {
    fn add(x: int) {
    }

    let add4: fn() = bind add(4);
}

Declaring add4 as fn@() works

@nikomatsakis
Copy link
Contributor

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.

@ghost ghost assigned nikomatsakis Apr 7, 2012
@nikomatsakis
Copy link
Contributor

Actually, the simpler fix is just to prevent fn() from being stored in a local variable---just as we do with fn&().

@catamorphism
Copy link
Contributor

Obsolete, since we no longer have bind ( #2189 ). Closing.

celinval added a commit to celinval/rust-dev that referenced this issue Jun 4, 2024
…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.
bors pushed a commit to rust-lang-ci/rust that referenced this issue Jan 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants