mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 05:37:11 +00:00
994061d746
- Bug 1196631 - Make JS::ubi::Node::size return 1 by default. r=sfink (9b34eb8a6b) - Bug 1191236 - Remove extract() methods used by operation forwarding on rooting types r=terrence (fb73375f55) - Bug 1191236 - Fix UCS canonicalization, r=jonco (fb5f57c838) - Bug 1196498 - Include objects' [[class]] names in heap snapshots; r=sfink (563e562e95) - Bug 1194418 - Use only JS::ubi::* interfaces in census analyses; r=sfink (a1374c3a49) - Bug 1194422 - Expose census traversals to SpiderMonkey embedders; r=sfink (7cd731fffc) - Bug 1139476 - Part 0: Add a takeCensus method to HeapSnapshot instances; r=sfink,bholley (6aac2ae0dd) - Bug 1139476 - Part 1: Port live heap census tests to offline heap snapshots; r=sfink (2cd8e13492) - Bug 1139476 - Part 2: Add test comparing live and offline census results; r=sfink (0db23ac1a0) - Bg 1198980 - Make JS::ubi::*::identifier be uint64_t instead of uintptr_t. r=sfink (902c041cb0) - Bug 1196634 - Part 0: Define a JS::ubi::CoarseType enum; r=sfink (4606fc2845) - Bug 1196634 - Part 1: Extend the protobuf format for coarseType; r=sfink (4110d46a2f) - Bug 1196634 - Part 2: Serialize and deserialize coarseType; r=sfink (530e023b48) - Bug 1196634 - Part 3: Use coarseType() instead of is<T> in census; r=sfink (d077980d77) - Bug 1196634 - Part 4: Remove JS::ubi::Node::getCanonicalTypeName; r=sfink (4bd7131e4b) - Bug 1202048 - Root JSONParser explicitly; r=sfink (41a9034849) - Bug 1175523 - Update most (but not all) tests to use elem.srcObject over .mozSrcObject. r=pehrsons (22a6502d6d) - Bug 1201190 - Part 3: Mark every consumer of GUARD_OBJECT as MOZ_RAII, r=ehsan (f6c6381a15) - Bug 1204594 - Use MOZ_RAII to replace GUARD_OBJECT where possible in the GC; r=sfink (cec9b7f607) - Bug 1205054 - Remove isNullLike and other imprecise null checks; r=sfink (c12a6ed1d4) - Bug 1205454 - Consolidate the tagged pointer marking methods; r=sfink (7e8a823712) - js: more shared-build fixes (fdd3b957)
136 lines
3.4 KiB
C++
136 lines
3.4 KiB
C++
/* -*- 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/. */
|
|
|
|
/* RAII class for executing arbitrary actions at scope end. */
|
|
|
|
#ifndef mozilla_ScopeExit_h
|
|
#define mozilla_ScopeExit_h
|
|
|
|
/*
|
|
* See http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4189.pdf for a
|
|
* standards-track version of this.
|
|
*
|
|
* Error handling can be complex when various actions need to be performed that
|
|
* need to be undone if an error occurs midway. This can be handled with a
|
|
* collection of boolean state variables and gotos, which can get clunky and
|
|
* error-prone:
|
|
*
|
|
* {
|
|
* if (!a.setup())
|
|
* goto fail;
|
|
* isASetup = true;
|
|
*
|
|
* if (!b.setup())
|
|
* goto fail;
|
|
* isBSetup = true;
|
|
*
|
|
* ...
|
|
* return true;
|
|
*
|
|
* fail:
|
|
* if (isASetup)
|
|
* a.teardown();
|
|
* if (isBSetup)
|
|
* b.teardown();
|
|
* return false;
|
|
* }
|
|
*
|
|
* ScopeExit is a mechanism to simplify this pattern by keeping an RAII guard
|
|
* class that will perform the teardown on destruction, unless released. So the
|
|
* above would become:
|
|
*
|
|
* {
|
|
* if (!a.setup()) {
|
|
* return false;
|
|
* }
|
|
* auto guardA = MakeScopeExit([&] {
|
|
* a.teardown();
|
|
* });
|
|
*
|
|
* if (!b.setup()) {
|
|
* return false;
|
|
* }
|
|
* auto guardB = MakeScopeExit([&] {
|
|
* b.teardown();
|
|
* });
|
|
*
|
|
* ...
|
|
* guardA.release();
|
|
* guardB.release();
|
|
* return true;
|
|
* }
|
|
*
|
|
* This header provides:
|
|
*
|
|
* - |ScopeExit| - a container for a cleanup call, automically called at the
|
|
* end of the scope;
|
|
* - |MakeScopeExit| - a convenience function for constructing a |ScopeExit|
|
|
* with a given cleanup routine, commonly used with a lambda function.
|
|
*
|
|
* Note that the RAII classes defined in this header do _not_ perform any form
|
|
* of reference-counting or garbage-collection. These classes have exactly two
|
|
* behaviors:
|
|
*
|
|
* - if |release()| has not been called, the cleanup is always performed at
|
|
* the end of the scope;
|
|
* - if |release()| has been called, nothing will happen at the end of the
|
|
* scope.
|
|
*/
|
|
|
|
#include "mozilla/GuardObjects.h"
|
|
#include "mozilla/Move.h"
|
|
|
|
namespace mozilla {
|
|
|
|
template <typename ExitFunction>
|
|
class MOZ_STACK_CLASS ScopeExit {
|
|
ExitFunction mExitFunction;
|
|
bool mExecuteOnDestruction;
|
|
MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER
|
|
|
|
public:
|
|
explicit ScopeExit(ExitFunction&& cleanup
|
|
MOZ_GUARD_OBJECT_NOTIFIER_PARAM)
|
|
: mExitFunction(cleanup)
|
|
, mExecuteOnDestruction(true)
|
|
{
|
|
MOZ_GUARD_OBJECT_NOTIFIER_INIT;
|
|
}
|
|
|
|
ScopeExit(ScopeExit&& rhs)
|
|
: mExitFunction(mozilla::Move(rhs.mExitFunction))
|
|
, mExecuteOnDestruction(rhs.mExecuteOnDestruction)
|
|
{
|
|
rhs.release();
|
|
}
|
|
|
|
~ScopeExit() {
|
|
if (mExecuteOnDestruction) {
|
|
mExitFunction();
|
|
}
|
|
}
|
|
|
|
void release() {
|
|
mExecuteOnDestruction = false;
|
|
}
|
|
|
|
private:
|
|
explicit ScopeExit(const ScopeExit&) = delete;
|
|
ScopeExit& operator=(const ScopeExit&) = delete;
|
|
ScopeExit& operator=(ScopeExit&&) = delete;
|
|
};
|
|
|
|
template <typename ExitFunction>
|
|
ScopeExit<ExitFunction>
|
|
MakeScopeExit(ExitFunction&& exitFunction)
|
|
{
|
|
return ScopeExit<ExitFunction>(mozilla::Move(exitFunction));
|
|
}
|
|
|
|
} /* namespace mozilla */
|
|
|
|
#endif /* mozilla_ScopeExit_h */
|