reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cpp
   46       if (prev_reported_rss * 11 / 10 < current_rss_mb) {
   47         Printf("%s: RSS: %zdMb\n", SanitizerToolName, current_rss_mb);
   48         prev_reported_rss = current_rss_mb;
   64     if (hard_rss_limit_mb && hard_rss_limit_mb < current_rss_mb) {
   66              SanitizerToolName, hard_rss_limit_mb, current_rss_mb);
   71       if (soft_rss_limit_mb < current_rss_mb && !reached_soft_rss_limit) {
   74                SanitizerToolName, soft_rss_limit_mb, current_rss_mb);
   77       } else if (soft_rss_limit_mb >= current_rss_mb &&
   85         current_rss_mb > rss_during_last_reported_profile * 1.1) {
   86       Printf("\n\nHEAP PROFILE at RSS %zdMb\n", current_rss_mb);
   88       rss_during_last_reported_profile = current_rss_mb;