From 1fc9ba4885f5a16e263bcc5e58bef68e3aa32cea Mon Sep 17 00:00:00 2001 From: Kane York Date: Thu, 13 Aug 2020 16:40:27 -0700 Subject: refactor(tvix): always pass Bindings by ptr, use shared/unique_ptr Value now carries a shared_ptr, and all Bindings constructors return a unique_ptr. The test that wanted to compare two Bindings by putting them into Values has been modified to use the new Equal() method on Bindings (extracted from EvalState). Change-Id: I8dfb60e65fdabb717e3b3e5d56d5b3fc82f70883 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1744 Tested-by: BuildkiteCI Reviewed-by: glittershark Reviewed-by: tazjin --- third_party/nix/src/libexpr/eval.cc | 27 ++++++--------------------- 1 file changed, 6 insertions(+), 21 deletions(-) (limited to 'third_party/nix/src/libexpr/eval.cc') diff --git a/third_party/nix/src/libexpr/eval.cc b/third_party/nix/src/libexpr/eval.cc index 4ae3661b0b15..569e04e3a712 100644 --- a/third_party/nix/src/libexpr/eval.cc +++ b/third_party/nix/src/libexpr/eval.cc @@ -1096,7 +1096,7 @@ void EvalState::callFunction(Value& fun, Value& arg, Value& v, const Pos& pos) { // prevents tail-call optimisation. void EvalState::incrFunctionCall(ExprLambda* fun) { functionCalls[fun]++; } -void EvalState::autoCallFunction(Bindings& args, Value& fun, Value& res) { +void EvalState::autoCallFunction(Bindings* args, Value& fun, Value& res) { forceValue(fun); if (fun.type == tAttrs) { @@ -1118,8 +1118,8 @@ void EvalState::autoCallFunction(Bindings& args, Value& fun, Value& res) { mkAttrs(*actualArgs, fun.lambda.fun->formals->formals.size()); for (auto& i : fun.lambda.fun->formals->formals) { - Bindings::iterator j = args.find(i.name); - if (j != args.end()) { + Bindings::iterator j = args->find(i.name); + if (j != args->end()) { actualArgs->attrs->push_back(j->second); } else if (i.def == nullptr) { throwTypeError( @@ -1615,22 +1615,7 @@ bool EvalState::eqValues(Value& v1, Value& v2) { } } - if (v1.attrs->size() != v2.attrs->size()) { - return false; - } - - /* Otherwise, compare the attributes one by one. */ - Bindings::iterator i; - Bindings::iterator j; - for (i = v1.attrs->begin(), j = v2.attrs->begin(); i != v1.attrs->end(); - ++i, ++j) { - if (i->second.name != j->second.name || - !eqValues(*i->second.value, *j->second.value)) { - return false; - } - } - - return true; + return v1.attrs->Equal(v2.attrs.get(), *this); } /* Functions are incomparable. */ @@ -1811,8 +1796,8 @@ size_t valueSize(const Value& v) { sz += doString(v.path); break; case tAttrs: - if (seenBindings.find(v.attrs) == seenBindings.end()) { - seenBindings.insert(v.attrs); + if (seenBindings.find(v.attrs.get()) == seenBindings.end()) { + seenBindings.insert(v.attrs.get()); sz += sizeof(Bindings); for (const auto& i : *v.attrs) { sz += doValue(*i.second.value); -- cgit 1.4.1