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