Searched refs:current_rss_mb (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_libcdep.cpp43 const uptr current_rss_mb = GetRSS() >> 20; local
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_profil
[all...]

Completed in 98 milliseconds