Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
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

Open
Jaders77 wants to merge1 commit intomono:main
base:main
Choose a base branch
Loading
fromJaders77:master
Open

Fixing a memory leak#1099

Jaders77 wants to merge1 commit intomono:mainfromJaders77:master

Conversation

Jaders77
Copy link

@Jaders77Jaders77 commentedMay 23, 2018
edited by tritao
Loading

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:

publicglobal::Lldb.SBSymbolContextGetSymbolContext(uintresolve_scope){var__ret=newglobal::Lldb.SBSymbolContext.__Internal();__Internal.GetSymbolContext((__Instance+__PointerAdjustment),newIntPtr(&__ret),resolve_scope);// here __ret is initialized like a constructorreturnglobal::Lldb.SBSymbolContext.__CreateInstance(__ret);}internalstaticglobal::Lldb.SBSymbolContext__CreateInstance(global::Lldb.SBSymbolContext.__Internalnative,boolskipVTables=false){returnnewglobal::Lldb.SBSymbolContext(native,skipVTables);}privateSBSymbolContext(global::Lldb.SBSymbolContext.__Internal native,bool skipVTables= false):this(__CopyValue(native),skipVTables){__ownsNativeInstance=true;NativeToManagedMap[__Instance]=this;}privatestaticvoid*__CopyValue(global::Lldb.SBSymbolContext.__Internalnative){varret=Marshal.AllocHGlobal(sizeof(global::Lldb.SBSymbolContext.__Internal));global::Lldb.SBSymbolContext.__Internal.cctor(ret,newglobal::System.IntPtr(&native));returnret.ToPointer();}

After the fix:

privatestaticvoid*__CopyValue(global::Lldb.SBSymbolContext.__Internalnative){varret=Marshal.AllocHGlobal(sizeof(global::Lldb.SBSymbolContext.__Internal));*(global::Lldb.SBSymbolContext.__Internal*)ret=native;returnret.ToPointer();}

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();}
@dnfclas
Copy link

dnfclas commentedMay 23, 2018
edited
Loading

CLA assistant check
Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you sign ourContributor License Agreement before we can accept your contribution.

❌ Jaders77sign now
You have signed the CLA already but the status is still pending? Let usrecheck it.

@tritaotritao requested a review fromddobrevMay 24, 2018 14:51
@ddobrevddobrevforce-pushed themaster branch 12 times, most recently from0464938 to637018fCompareOctober 15, 2018 05:15
Copy link
Contributor

@ddobrevddobrev left a 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.

@ddobrevddobrevforce-pushed themaster branch 5 times, most recently from1610aa5 to64b1efdCompareApril 15, 2020 22:32
@ddobrevddobrevforce-pushed themaster branch 2 times, most recently fromc930b78 toc38556aCompareJanuary 2, 2021 20:41
Base automatically changed frommaster tomainMarch 12, 2021 10:52
@ddobrevddobrevforce-pushed themain branch 7 times, most recently from4c1e9b8 to2fdd082CompareAugust 30, 2021 11:25
@ddobrevddobrevforce-pushed themain branch 3 times, most recently frombcf41e4 to851ec5eCompareOctober 2, 2021 15:17
@ddobrevddobrevforce-pushed themain branch 5 times, most recently from97610ec toa2aeaedCompareOctober 29, 2021 19:56
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@ddobrevddobrevddobrev requested changes

Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

3 participants
@Jaders77@dnfclas@ddobrev

[8]ページ先頭

©2009-2025 Movatter.jp