From 2aa4a82499d4becd2284cdb482213d541b8804dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 16:29:10 +0200 Subject: Adding upstream version 86.0.1. Signed-off-by: Daniel Baumann --- js/src/vm/UbiNodeShortestPaths.cpp | 95 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 js/src/vm/UbiNodeShortestPaths.cpp (limited to 'js/src/vm/UbiNodeShortestPaths.cpp') diff --git a/js/src/vm/UbiNodeShortestPaths.cpp b/js/src/vm/UbiNodeShortestPaths.cpp new file mode 100644 index 0000000000..b0f2cdb581 --- /dev/null +++ b/js/src/vm/UbiNodeShortestPaths.cpp @@ -0,0 +1,95 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * vim: set ts=8 sts=2 et sw=2 tw=80: + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "js/UbiNodeShortestPaths.h" + +#include "mozilla/Maybe.h" + +#include + +#include "util/Text.h" + +namespace JS { +namespace ubi { + +JS_PUBLIC_API BackEdge::Ptr BackEdge::clone() const { + auto clone = js::MakeUnique(); + if (!clone) { + return nullptr; + } + + clone->predecessor_ = predecessor(); + if (name()) { + clone->name_ = js::DuplicateString(name().get()); + if (!clone->name_) { + return nullptr; + } + } + return clone; +} + +#ifdef DEBUG + +static void dumpNode(const JS::ubi::Node& node) { + fprintf(stderr, " %p ", (void*)node.identifier()); + js_fputs(node.typeName(), stderr); + if (node.coarseType() == JS::ubi::CoarseType::Object) { + if (const char* clsName = node.jsObjectClassName()) { + fprintf(stderr, " [object %s]", clsName); + } + } + fputc('\n', stderr); +} + +JS_PUBLIC_API void dumpPaths(JSContext* cx, Node node, + uint32_t maxNumPaths /* = 10 */) { + mozilla::Maybe nogc; + + JS::ubi::RootList rootList(cx, nogc, true); + MOZ_ASSERT(rootList.init()); + + NodeSet targets; + bool ok = targets.putNew(node); + MOZ_ASSERT(ok); + + auto paths = ShortestPaths::Create(cx, nogc.ref(), maxNumPaths, &rootList, + std::move(targets)); + MOZ_ASSERT(paths.isSome()); + + int i = 0; + ok = paths->forEachPath(node, [&](Path& path) { + fprintf(stderr, "Path %d:\n", i++); + for (auto backEdge : path) { + dumpNode(backEdge->predecessor()); + fprintf(stderr, " |\n"); + fprintf(stderr, " |\n"); + fprintf(stderr, " '"); + + const char16_t* name = backEdge->name().get(); + if (!name) { + name = u""; + } + js_fputs(name, stderr); + fprintf(stderr, "'\n"); + + fprintf(stderr, " |\n"); + fprintf(stderr, " V\n"); + } + + dumpNode(node); + fputc('\n', stderr); + return true; + }); + MOZ_ASSERT(ok); + + if (i == 0) { + fprintf(stderr, "No retaining paths found.\n"); + } +} +#endif + +} // namespace ubi +} // namespace JS -- cgit v1.2.3