@@ -562,21 +562,21 @@ void clasp_gc_room(std::ostringstream& OutputStream, RoomVerbosity verbosity) {
562
562
OutputStream << " Total object memory usage (bytes): " << std::setw (10 ) << totalSize << ' \n ' ;
563
563
}
564
564
#endif
565
- OutputStream << " Total GC_get_heap_size(): " << std::setw (12 ) << GC_get_heap_size () << ' \n ' ;
566
- OutputStream << " Total GC_get_free_bytes(): " << std::setw (12 ) << GC_get_free_bytes () << ' \n ' ;
567
- OutputStream << " Total GC_get_bytes_since_gc(): " << std::setw (12 ) << GC_get_bytes_since_gc () << ' \n ' ;
568
- OutputStream << " Total GC_get_total_bytes(): " << std::setw (12 ) << GC_get_total_bytes () << ' \n ' ;
569
- OutputStream << " Total number of JITDylibs: " << std::setw (12 ) << cl__length (_lisp->_Roots ._JITDylibs ) << ' \n ' ;
570
- OutputStream << " Total number of Libraries: " << std::setw (12 ) << cl__length (_lisp->_Roots ._AllLibraries ) << ' \n ' ;
571
- OutputStream << " Total number of ObjectFiles: " << std::setw (12 ) << cl__length (_lisp->_Roots ._AllObjectFiles ) << ' \n ' ;
572
- OutputStream << " Total number of CodeBlocks: " << std::setw (12 ) << cl__length (_lisp->_Roots ._AllCodeBlocks ) << ' \n ' ;
573
- OutputStream << " Total number of SimpleFun : " << std::setw (12 ) << gatherObjects._SimpleFunCount << ' \n ' ;
565
+ OutputStream << " Total GC_get_heap_size(): " << std::setw (12 ) << GC_get_heap_size () << ' \n ' ;
566
+ OutputStream << " Total GC_get_free_bytes(): " << std::setw (12 ) << GC_get_free_bytes () << ' \n ' ;
567
+ OutputStream << " Total GC_get_bytes_since_gc(): " << std::setw (12 ) << GC_get_bytes_since_gc () << ' \n ' ;
568
+ OutputStream << " Total GC_get_total_bytes(): " << std::setw (12 ) << GC_get_total_bytes () << ' \n ' ;
569
+ OutputStream << " Total number of JITDylibs: " << std::setw (12 ) << cl__length (_lisp->_Roots ._JITDylibs ) << ' \n ' ;
570
+ OutputStream << " Total number of Libraries: " << std::setw (12 ) << cl__length (_lisp->_Roots ._AllLibraries ) << ' \n ' ;
571
+ OutputStream << " Total number of ObjectFiles: " << std::setw (12 ) << cl__length (_lisp->_Roots ._AllObjectFiles ) << ' \n ' ;
572
+ OutputStream << " Total number of CodeBlocks: " << std::setw (12 ) << cl__length (_lisp->_Roots ._AllCodeBlocks ) << ' \n ' ;
573
+ OutputStream << " Total number of library Simple(Core)Fun : " << std::setw (12 ) << gatherObjects._SimpleFunCount << ' \n ' ;
574
574
if (gatherObjects._SimpleFunFailedDladdrCount >0 ) {
575
- OutputStream << " Total number of SimpleFun failed dladdr: " << std::setw (12 ) << gatherObjects._SimpleFunFailedDladdrCount << ' \n ' ;
575
+ OutputStream << " Total of library Simple(Core)Fun dladdr fails : " << std::setw (12 ) << gatherObjects._SimpleFunFailedDladdrCount << ' \n ' ;
576
576
}
577
- OutputStream << " Unique entry points: " << std::setw (12 ) << gatherObjects._uniqueEntryPoints .size () << ' \n ' ;
577
+ OutputStream << " Unique library Simple(Core)Fun entry points: " << std::setw (12 ) << gatherObjects._uniqueEntryPoints .size () << ' \n ' ;
578
578
if (gatherObjects._uniqueEntryPointsFailedDladdr .size ()>0 ) {
579
- OutputStream << " Unique entry points failed dladdr: " << std::setw (10 ) << gatherObjects._uniqueEntryPointsFailedDladdr .size () << ' \n ' ;
579
+ OutputStream << " Unique library Simple(Core)Fun dladdr fails: " << std::setw (10 ) << gatherObjects._uniqueEntryPointsFailedDladdr .size () << ' \n ' ;
580
580
}
581
581
delete static_ReachableClassKinds;
582
582
}
0 commit comments