- Notifications
You must be signed in to change notification settings - Fork525
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Fixing a memory leak#1099
base:main
Are you sure you want to change the base?
Fixing a memory leak#1099
Conversation
This part of the code makes a copy of the original reference without calling the destructor at any time for it (original reference).Instead of using a default constructor / copy constructor and then one destructor for each, such C++ copy elision optimization, it's better to simply remove copy.Simple example of the problem:public global::Lldb.SBSymbolContext GetSymbolContext(uint resolve_scope){ var __ret = new global::Lldb.SBSymbolContext.__Internal(); __Internal.GetSymbolContext((__Instance + __PointerAdjustment), new IntPtr(&__ret), resolve_scope); // here __ret is initialized like a constructor return global::Lldb.SBSymbolContext.__CreateInstance(__ret);}internal static global::Lldb.SBSymbolContext __CreateInstance(global::Lldb.SBSymbolContext.__Internal native, bool skipVTables = false){ return new global::Lldb.SBSymbolContext(native, skipVTables);}private SBSymbolContext(global::Lldb.SBSymbolContext.__Internal native, bool skipVTables = false) : this(__CopyValue(native), skipVTables){ __ownsNativeInstance = true; NativeToManagedMap[__Instance] = this;}private static void* __CopyValue(global::Lldb.SBSymbolContext.__Internal native){ var ret = Marshal.AllocHGlobal(sizeof(global::Lldb.SBSymbolContext.__Internal)); global::Lldb.SBSymbolContext.__Internal.cctor(ret, new global::System.IntPtr(&native)); return ret.ToPointer();}After the fix:private static void* __CopyValue(global::Lldb.SBSymbolContext.__Internal native){ var ret = Marshal.AllocHGlobal(sizeof(global::Lldb.SBSymbolContext.__Internal)); *(global::Lldb.SBSymbolContext.__Internal*) ret = native; return ret.ToPointer();}
|
0464938
to637018f
CompareThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
The generated code now does not call the non-trivial constructor if any. I think this might lead to incorrect behaviours on the native side.
91e219c
to32da859
Comparea0169c2
to3ea7e97
Comparea1559de
to304d673
Comparea08e24b
to0e1fb0b
Compare1610aa5
to64b1efd
Comparec930b78
toc38556a
Compare4c1e9b8
to2fdd082
Comparebcf41e4
to851ec5e
Compare97610ec
toa2aeaed
Compare
This part of the code makes a copy of the original reference without calling the destructor at any time for it (original reference).
Instead of using a default constructor / copy constructor and then one destructor for each, such C++ copy elision optimization, it's better to simply remove copy.
Simple example of the problem:
After the fix: