From ee48e830e67ff53097f76ee2bde9ff60caf0dce7 Mon Sep 17 00:00:00 2001 From: Kane York Date: Fri, 31 Jul 2020 15:40:49 -0700 Subject: fix(3p/nix/libexpr): fix GC tracing in valueSize Change-Id: I2f6bef7b090d44f50bd27fbd19b50f9cf100b238 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1506 Tested-by: BuildkiteCI Reviewed-by: glittershark Reviewed-by: tazjin --- third_party/nix/src/libexpr/eval.cc | 53 +++++++++++++++++++----------------- third_party/nix/src/libexpr/value.hh | 2 +- 2 files changed, 29 insertions(+), 26 deletions(-) (limited to 'third_party') diff --git a/third_party/nix/src/libexpr/eval.cc b/third_party/nix/src/libexpr/eval.cc index 34c1e5046d..6195b30be7 100644 --- a/third_party/nix/src/libexpr/eval.cc +++ b/third_party/nix/src/libexpr/eval.cc @@ -1821,28 +1821,29 @@ void EvalState::printStats() { } } -size_t valueSize(Value& v) { - // Can't convert to flat_hash_set because of tExternal - // Can't set the allocator because of tExternal - // The GC is likely crying over this - std::set seen; +size_t valueSize(const Value& v) { + traceable_flat_hash_set seenBindings; + traceable_flat_hash_set seenEnvs; + traceable_flat_hash_set seenLists; + traceable_flat_hash_set seenStrings; + traceable_flat_hash_set seenValues; auto doString = [&](const char* s) -> size_t { - if (seen.find(s) != seen.end()) { + if (seenStrings.find(s) != seenStrings.end()) { return 0; } - seen.insert(s); + seenStrings.insert(s); return strlen(s) + 1; }; - std::function doValue; - std::function doEnv; + std::function doValue; + std::function doEnv; - doValue = [&](Value& v) -> size_t { - if (seen.find(&v) != seen.end()) { + doValue = [&](const Value& v) -> size_t { + if (seenValues.find(&v) != seenValues.end()) { return 0; } - seen.insert(&v); + seenValues.insert(&v); size_t sz = sizeof(Value); @@ -1859,20 +1860,20 @@ size_t valueSize(Value& v) { sz += doString(v.path); break; case tAttrs: - if (seen.find(v.attrs) == seen.end()) { - seen.insert(v.attrs); + if (seenBindings.find(v.attrs) == seenBindings.end()) { + seenBindings.insert(v.attrs); sz += sizeof(Bindings); - for (auto& i : *v.attrs) { + for (const auto& i : *v.attrs) { sz += doValue(*i.second.value); } } break; case tList: - if (seen.find(v.list) == seen.end()) { - seen.insert(v.list); + if (seenLists.find(v.list) == seenLists.end()) { + seenLists.insert(v.list); sz += v.listSize() * sizeof(Value*); - for (size_t n = 0; n < v.listSize(); ++n) { - sz += doValue(*(*v.list)[n]); + for (const Value* v : *v.list) { + sz += doValue(*v); } } break; @@ -1896,20 +1897,22 @@ size_t valueSize(Value& v) { return sz; }; - doEnv = [&](Env& env) -> size_t { - if (seen.find(&env) != seen.end()) { + doEnv = [&](const Env& env) -> size_t { + if (seenEnvs.find(&env) != seenEnvs.end()) { return 0; } - seen.insert(&env); + seenEnvs.insert(&env); size_t sz = sizeof(Env) + sizeof(Value*) * env.size; if (env.type != Env::HasWithExpr) { - for (size_t i = 0; i < env.size; ++i) { - if (env.values[i] != nullptr) { - sz += doValue(*env.values[i]); + for (const Value* v : env.values) { + if (v != nullptr) { + sz += doValue(*v); } } + } else { + // TODO(kanepyork): trace ExprWith? how important is this accounting? } if (env.up != nullptr) { diff --git a/third_party/nix/src/libexpr/value.hh b/third_party/nix/src/libexpr/value.hh index 5d5785ebeb..17bf213a31 100644 --- a/third_party/nix/src/libexpr/value.hh +++ b/third_party/nix/src/libexpr/value.hh @@ -175,7 +175,7 @@ void mkPath(Value& v, const char* s); /* Compute the size in bytes of the given value, including all values and environments reachable from it. Static expressions (Exprs) are not included. */ -size_t valueSize(Value& v); +size_t valueSize(const Value& v); typedef std::map, traceable_allocator>> -- cgit 1.4.1