summaryrefslogtreecommitdiffstats
path: root/js/src/vm/UbiNodeShortestPaths.cpp
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /js/src/vm/UbiNodeShortestPaths.cpp
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'js/src/vm/UbiNodeShortestPaths.cpp')
-rw-r--r--js/src/vm/UbiNodeShortestPaths.cpp93
1 files changed, 93 insertions, 0 deletions
diff --git a/js/src/vm/UbiNodeShortestPaths.cpp b/js/src/vm/UbiNodeShortestPaths.cpp
new file mode 100644
index 000000000..a1a293997
--- /dev/null
+++ b/js/src/vm/UbiNodeShortestPaths.cpp
@@ -0,0 +1,93 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
+ * vim: set ts=8 sts=4 et sw=4 tw=99:
+ * 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 "mozilla/Move.h"
+
+#include "jsstr.h"
+
+namespace JS {
+namespace ubi {
+
+JS_PUBLIC_API(BackEdge::Ptr)
+BackEdge::clone() const
+{
+ BackEdge::Ptr clone(js_new<BackEdge>());
+ if (!clone)
+ return nullptr;
+
+ clone->predecessor_ = predecessor();
+ if (name()) {
+ clone->name_ = js::DuplicateString(name().get());
+ if (!clone->name_)
+ return nullptr;
+ }
+ return mozilla::Move(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<AutoCheckCannotGC> nogc;
+
+ JS::ubi::RootList rootList(cx, nogc, true);
+ MOZ_ASSERT(rootList.init());
+
+ NodeSet targets;
+ bool ok = targets.init() && targets.putNew(node);
+ MOZ_ASSERT(ok);
+
+ auto paths = ShortestPaths::Create(cx, nogc.ref(), maxNumPaths, &rootList, mozilla::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"<no edge name>";
+ 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