Bug 1865597 - Add error checking when initializing parallel marking and disable on...
[gecko.git] / js / src / jit / Label.cpp
blobe1c9db76c4e2425a9102ee73ad3aaf1d38211622
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim: set ts=8 sts=2 et sw=2 tw=80:
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "jit/Label.h"
9 #include "mozilla/Assertions.h"
11 #include "jit/CompileWrappers.h"
12 #include "jit/JitContext.h"
13 #include "js/Utility.h"
15 namespace js::jit {
17 #ifdef DEBUG
18 Label::~Label() {
19 // The assertion below doesn't hold if an error occurred.
20 JitContext* context = MaybeGetJitContext();
21 bool hadError =
22 js::oom::HadSimulatedOOM() ||
23 (context && context->runtime && context->runtime->hadOutOfMemory()) ||
24 (context && !context->runtime && context->hasOOM());
25 MOZ_ASSERT_IF(!hadError, !used());
27 #endif
29 } // namespace js::jit