-
Notifications
You must be signed in to change notification settings - Fork 10.4k
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
[SR-426] Memory leak with enum containing class, downcast to Any.Type #43043
Comments
Is this with optimization or not? |
Comment by Austin Zheng (JIRA) This appears to happen with or without optimization; I tried -Onone, -O, and -Ounchecked. |
Thanks! |
Comment by Jesse Rusak (JIRA) Looks to me like the problem is that |
Comment by Jesse Rusak (JIRA) I've put up a PR for this: #857 |
Comment by Jesse Rusak (JIRA) Fix merged in f91dd6f |
Comment by Austin Zheng (JIRA) I'm running Swift off revision 19b4be7, and still seeing the 'deinit not called' behavior with my code example. I'm re-opening this ticket; would someone be willing to attempt to reproduce on their build? (The code snippet can be run from 'swift' verbatim.) Interestingly enough, the new unit test doesn't seem to trigger a test failure when the test suite is run. However, when I run the code in the test case manually, the test class also does not run its deinit properly. Let me know if you have any questions. |
Comment by Jesse Rusak (JIRA) I just tried with the latest master (0d96017) and the revision you mentioned and the code snippet above produces for me:
The exact steps I took (for the latest master) were:
Where test.swift has your example content above. Not sure what the reason for the discrepancy is; how exactly are you reproducing the issue? |
Comment by Austin Zheng (JIRA) Hi Jesse, Apologies for the delayed response. I updated my dependencies manually and built Swift from source. I'm going to use the update script, which is probably doing something my manual update procedure is missing, and see if I can reproduce the bad behavior tonight. |
Comment by Jesse Rusak (JIRA) Yes, do let me know if that resolves your issue. I also could have something stale I need to clean out locally. Are you testing on OS X and in debug? |
Comment by Austin Zheng (JIRA) I just rebuilt Swift using update-checkout, it works fine now. I was indeed on OS X/debug. I'm closing this ticket now. |
Environment
Building on OS X 10.11.2, revision 73872e5.
Additional Detail from JIRA
md5: 66dcf74255f01d0bc1c3c7eded17fdfe
blocks:
Issue Description:
The following code appears to produce a memory leak. When it is run, the relevant class's `deinit` is never called:
In particular, the thing that causes trouble is the conditional downcast to Any.Type (marked by the comment 'A'). If the if-let statement is removed, the init and deinit run properly. If the if-let statement is present, only the init runs properly.
A downcast to a non-metatype seems to work fine. I have not tried downcasting to other metatypes.
The text was updated successfully, but these errors were encountered: