-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Fix VS4Mac crash report and core dump generation perf problems #60205
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
Changes from 1 commit
a14b23c
e8bd4c0
8eea698
96ee054
f93a60e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
by createdump itself for heap dumps, then the sometimes slow (4 minutes for VS4Mac) heap enum memory region is changed to the faster normal one. It adds necessary DAC globals, etc. without the costly assembly, module, class, type runtime data structure enumeration.
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -122,8 +122,10 @@ ClrDataAccess::ServerGCHeapDetails(CLRDATA_ADDRESS heapAddr, DacpGcHeapDetails * | |
|
|
||
| detailsData->lowest_address = PTR_CDADDR(g_lowest_address); | ||
| detailsData->highest_address = PTR_CDADDR(g_highest_address); | ||
| detailsData->current_c_gc_state = (CLRDATA_ADDRESS)*g_gcDacGlobals->current_c_gc_state; | ||
|
|
||
| if (g_gcDacGlobals->current_c_gc_state != NULL) | ||
| { | ||
| detailsData->current_c_gc_state = (CLRDATA_ADDRESS)*g_gcDacGlobals->current_c_gc_state; | ||
|
||
| } | ||
| // now get information specific to this heap (server mode gives us several heaps; we're getting | ||
| // information about only one of them. | ||
| detailsData->alloc_allocated = (CLRDATA_ADDRESS)pHeap->alloc_allocated; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.