From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- devtools/shared/heapsnapshot/DominatorTree.h | 66 ++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 devtools/shared/heapsnapshot/DominatorTree.h (limited to 'devtools/shared/heapsnapshot/DominatorTree.h') diff --git a/devtools/shared/heapsnapshot/DominatorTree.h b/devtools/shared/heapsnapshot/DominatorTree.h new file mode 100644 index 0000000000..fb3275cf23 --- /dev/null +++ b/devtools/shared/heapsnapshot/DominatorTree.h @@ -0,0 +1,66 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */ +/* 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/. */ + +#ifndef mozilla_devtools_DominatorTree__ +#define mozilla_devtools_DominatorTree__ + +#include "mozilla/devtools/HeapSnapshot.h" +#include "mozilla/dom/BindingDeclarations.h" +#include "mozilla/RefCounted.h" +#include "js/UbiNodeDominatorTree.h" +#include "nsWrapperCache.h" + +namespace mozilla { +class ErrorResult; + +namespace devtools { + +class DominatorTree final : public nsISupports, public nsWrapperCache { + protected: + nsCOMPtr mParent; + + virtual ~DominatorTree() {} + + private: + JS::ubi::DominatorTree mDominatorTree; + RefPtr mHeapSnapshot; + + public: + explicit DominatorTree(JS::ubi::DominatorTree&& aDominatorTree, + HeapSnapshot* aHeapSnapshot, nsISupports* aParent) + : mParent(aParent), + mDominatorTree(std::move(aDominatorTree)), + mHeapSnapshot(aHeapSnapshot) { + MOZ_ASSERT(aParent); + MOZ_ASSERT(aHeapSnapshot); + }; + + NS_DECL_CYCLE_COLLECTING_ISUPPORTS; + NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS(DominatorTree); + + nsISupports* GetParentObject() const { return mParent; } + + virtual JSObject* WrapObject(JSContext* aCx, + JS::Handle aGivenProto) override; + + // readonly attribute NodeId root + uint64_t Root() const { return mDominatorTree.root().identifier(); } + + // [Throws] NodeSize getRetainedSize(NodeId node) + dom::Nullable GetRetainedSize(uint64_t aNodeId, ErrorResult& aRv); + + // [Throws] sequence? getImmediatelyDominated(NodeId node); + void GetImmediatelyDominated(uint64_t aNodeId, + dom::Nullable>& aOutDominated, + ErrorResult& aRv); + + // NodeId? getImmediateDominator(NodeId node); + dom::Nullable GetImmediateDominator(uint64_t aNodeId) const; +}; + +} // namespace devtools +} // namespace mozilla + +#endif // mozilla_devtools_DominatorTree__ -- cgit v1.2.3