Lines Matching defs:debug_info
462 static std::string ConvertDebugInfoSizeToString(uint64_t debug_info) {
465 if (debug_info < 1024) {
466 oss << debug_info << "B";
467 } else if (debug_info < 1024 * 1024) {
468 double kb = double(debug_info) / 1024.0;
470 } else if (debug_info < 1024 * 1024 * 1024) {
471 double mb = double(debug_info) / (1024.0 * 1024.0);
474 double gb = double(debug_info) / (1024.0 * 1024.0 * 1024.0);
495 uint64_t debug_info = GetDebugInfoSize(module);
496 if (debug_info > 0) {
497 debug_info_size = ConvertDebugInfoSizeToString(debug_info);