author | Jason Orendorff <jorendorff@mozilla.com> |
Mon, 12 Feb 2018 15:05:18 -0600 | |
changeset 403643 | 609eb4880073d3b1ff1a198ec68737dce50bcb3f |
parent 403642 | 212a88df0f3d598edf04df824d568667c20c5fec |
child 403644 | 0054d892b106cfc60874dc1662a7278c74108b03 |
push id | 99851 |
push user | jorendorff@mozilla.com |
push date | Wed, 14 Feb 2018 17:19:50 +0000 |
treeherder | mozilla-inbound@0054d892b106 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | jandem |
bugs | 1429206 |
milestone | 60.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/js/src/builtin/DataViewObject.cpp +++ b/js/src/builtin/DataViewObject.cpp @@ -8,28 +8,28 @@ #include "mozilla/Alignment.h" #include "mozilla/Casting.h" #include <string.h> #include "jsapi.h" #include "jsarray.h" -#include "jscntxt.h" #include "jsnum.h" #ifdef XP_WIN # include "jswin.h" #endif #include "jswrapper.h" #include "jit/AtomicOperations.h" #include "js/Conversions.h" #include "vm/ArrayBufferObject.h" #include "vm/GlobalObject.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/SharedMem.h" #include "vm/WrapperObject.h" #include "gc/Nursery-inl.h" #include "gc/StoreBuffer-inl.h" #include "vm/ArrayBufferObject-inl.h" #include "vm/NativeObject-inl.h"
--- a/js/src/builtin/Eval.cpp +++ b/js/src/builtin/Eval.cpp @@ -4,22 +4,22 @@ * 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 "builtin/Eval.h" #include "mozilla/HashFunctions.h" #include "mozilla/Range.h" -#include "jscntxt.h" #include "jshashutil.h" #include "frontend/BytecodeCompiler.h" #include "vm/Debugger.h" #include "vm/GlobalObject.h" +#include "vm/JSContext.h" #include "vm/JSONParser.h" #include "vm/Interpreter-inl.h" using namespace js; using mozilla::AddToHash; using mozilla::HashString;
--- a/js/src/builtin/MapObject.cpp +++ b/js/src/builtin/MapObject.cpp @@ -1,24 +1,24 @@ /* -*- 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 "builtin/MapObject.h" -#include "jscntxt.h" #include "jsiter.h" #include "ds/OrderedHashTable.h" #include "gc/FreeOp.h" #include "js/Utility.h" #include "vm/GlobalObject.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/SelfHosting.h" #include "vm/Symbol.h" #include "gc/Marking-inl.h" #include "vm/Interpreter-inl.h" #include "vm/NativeObject-inl.h"
--- a/js/src/builtin/Object.cpp +++ b/js/src/builtin/Object.cpp @@ -4,25 +4,25 @@ * 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 "builtin/Object.h" #include "mozilla/ArrayUtils.h" #include "mozilla/MaybeOneOf.h" -#include "jscntxt.h" #include "jsstr.h" #include "builtin/Eval.h" #include "builtin/SelfHostingDefines.h" #include "frontend/BytecodeCompiler.h" #include "jit/InlinableNatives.h" #include "js/UniquePtr.h" #include "vm/AsyncFunction.h" +#include "vm/JSContext.h" #include "vm/RegExpObject.h" #include "vm/StringBuffer.h" #include "vm/JSObject-inl.h" #include "vm/NativeObject-inl.h" #include "vm/Shape-inl.h" #include "vm/UnboxedObject-inl.h"
--- a/js/src/builtin/Profilers.cpp +++ b/js/src/builtin/Profilers.cpp @@ -24,17 +24,17 @@ #ifdef XP_WIN # include <process.h> # define getpid _getpid #endif #include "vm/Probes.h" -#include "jscntxtinlines.h" +#include "vm/JSContext-inl.h" using namespace js; using mozilla::ArrayLength; /* Thread-unsafe error management */ static char gLastError[2000];
--- a/js/src/builtin/Promise.cpp +++ b/js/src/builtin/Promise.cpp @@ -5,26 +5,26 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "builtin/Promise.h" #include "mozilla/Atomics.h" #include "mozilla/TimeStamp.h" -#include "jscntxt.h" #include "jsexn.h" #include "jsfriendapi.h" #include "jsiter.h" #include "gc/Heap.h" #include "js/Debug.h" #include "vm/AsyncFunction.h" #include "vm/AsyncIteration.h" #include "vm/Debugger.h" +#include "vm/JSContext.h" #include "vm/Debugger-inl.h" #include "vm/JSObject-inl.h" #include "vm/NativeObject-inl.h" using namespace js; static double
--- a/js/src/builtin/Reflect.cpp +++ b/js/src/builtin/Reflect.cpp @@ -2,20 +2,20 @@ * 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 "builtin/Reflect.h" #include "jsarray.h" -#include "jscntxt.h" #include "jit/InlinableNatives.h" #include "vm/ArgumentsObject.h" +#include "vm/JSContext.h" #include "vm/Stack.h" #include "vm/Interpreter-inl.h" using namespace js; /*** Reflect methods *****************************************************************************/
--- a/js/src/builtin/RegExp.cpp +++ b/js/src/builtin/RegExp.cpp @@ -4,21 +4,20 @@ * 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 "builtin/RegExp.h" #include "mozilla/CheckedInt.h" #include "mozilla/TypeTraits.h" -#include "jscntxt.h" - #include "frontend/TokenStream.h" #include "irregexp/RegExpParser.h" #include "jit/InlinableNatives.h" +#include "vm/JSContext.h" #include "vm/RegExpStatics.h" #include "vm/SelfHosting.h" #include "vm/StringBuffer.h" #include "vm/Unicode.h" #include "vm/JSObject-inl.h" #include "vm/NativeObject-inl.h" #include "vm/UnboxedObject-inl.h"
--- a/js/src/builtin/Stream.cpp +++ b/js/src/builtin/Stream.cpp @@ -3,19 +3,18 @@ * 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 "builtin/Stream.h" #include "js/Stream.h" -#include "jscntxt.h" - #include "gc/Heap.h" +#include "vm/JSContext.h" #include "vm/SelfHosting.h" #include "vm/List-inl.h" #include "vm/NativeObject-inl.h" using namespace js; enum StreamSlots {
--- a/js/src/builtin/TestingFunctions.cpp +++ b/js/src/builtin/TestingFunctions.cpp @@ -12,17 +12,16 @@ #include "mozilla/Sprintf.h" #include "mozilla/Unused.h" #include <cmath> #include <cstdlib> #include <ctime> #include "jsapi.h" -#include "jscntxt.h" #include "jsfriendapi.h" #include "jsiter.h" #include "jsprf.h" #include "jswrapper.h" #include "builtin/Promise.h" #include "builtin/SelfHostingDefines.h" #ifdef DEBUG @@ -38,34 +37,34 @@ #include "js/UbiNode.h" #include "js/UbiNodeBreadthFirst.h" #include "js/UbiNodeShortestPaths.h" #include "js/UniquePtr.h" #include "js/Vector.h" #include "vm/Debugger.h" #include "vm/GlobalObject.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/ProxyObject.h" #include "vm/SavedStacks.h" #include "vm/Stack.h" #include "vm/StringBuffer.h" #include "vm/TraceLogging.h" #include "wasm/AsmJS.h" #include "wasm/WasmBinaryToText.h" #include "wasm/WasmJS.h" #include "wasm/WasmModule.h" #include "wasm/WasmSignalHandlers.h" #include "wasm/WasmTextToBinary.h" #include "wasm/WasmTypes.h" -#include "jscntxtinlines.h" - #include "vm/Debugger-inl.h" #include "vm/EnvironmentObject-inl.h" +#include "vm/JSContext-inl.h" #include "vm/JSObject-inl.h" #include "vm/NativeObject-inl.h" using namespace js; using mozilla::ArrayLength; using mozilla::Move;
--- a/js/src/builtin/WeakMapObject.cpp +++ b/js/src/builtin/WeakMapObject.cpp @@ -2,20 +2,20 @@ * 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 "builtin/WeakMapObject-inl.h" #include "jsapi.h" -#include "jscntxt.h" #include "builtin/WeakSetObject.h" #include "gc/FreeOp.h" +#include "vm/JSContext.h" #include "vm/SelfHosting.h" #include "vm/Interpreter-inl.h" using namespace js; using namespace js::gc; MOZ_ALWAYS_INLINE bool
--- a/js/src/builtin/WeakSetObject.cpp +++ b/js/src/builtin/WeakSetObject.cpp @@ -2,21 +2,21 @@ * 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 "builtin/WeakSetObject.h" #include "jsapi.h" -#include "jscntxt.h" #include "jsiter.h" #include "builtin/MapObject.h" #include "vm/GlobalObject.h" +#include "vm/JSContext.h" #include "vm/SelfHosting.h" #include "builtin/WeakMapObject-inl.h" #include "vm/Interpreter-inl.h" #include "vm/JSObject-inl.h" #include "vm/NativeObject-inl.h" using namespace js;
--- a/js/src/builtin/intl/Collator.cpp +++ b/js/src/builtin/intl/Collator.cpp @@ -6,25 +6,25 @@ /* Intl.Collator implementation. */ #include "builtin/intl/Collator.h" #include "mozilla/Assertions.h" #include "jsapi.h" -#include "jscntxt.h" #include "builtin/intl/CommonFunctions.h" #include "builtin/intl/ICUStubs.h" #include "builtin/intl/ScopedICUObject.h" #include "builtin/intl/SharedIntlData.h" #include "gc/FreeOp.h" #include "js/TypeDecls.h" #include "vm/GlobalObject.h" +#include "vm/JSContext.h" #include "vm/Runtime.h" #include "vm/String.h" #include "vm/JSObject-inl.h" using namespace js; using js::intl::GetAvailableLocales;
--- a/js/src/builtin/intl/CommonFunctions.cpp +++ b/js/src/builtin/intl/CommonFunctions.cpp @@ -5,20 +5,20 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /* Operations used to implement multiple Intl.* classes. */ #include "builtin/intl/CommonFunctions.h" #include "mozilla/Assertions.h" -#include "jscntxt.h" #include "jsfriendapi.h" // for GetErrorMessage, JSMSG_INTERNAL_INTL_ERROR #include "js/Value.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/SelfHosting.h" #include "vm/Stack.h" #include "vm/JSObject-inl.h" bool js::intl::InitializeObject(JSContext* cx, JS::Handle<JSObject*> obj,
--- a/js/src/builtin/intl/DateTimeFormat.cpp +++ b/js/src/builtin/intl/DateTimeFormat.cpp @@ -6,26 +6,26 @@ /* Intl.DateTimeFormat implementation. */ #include "builtin/intl/DateTimeFormat.h" #include "mozilla/Assertions.h" #include "mozilla/Range.h" -#include "jscntxt.h" #include "jsfriendapi.h" #include "builtin/intl/CommonFunctions.h" #include "builtin/intl/ICUStubs.h" #include "builtin/intl/ScopedICUObject.h" #include "builtin/intl/SharedIntlData.h" #include "builtin/intl/TimeZoneDataGenerated.h" #include "gc/FreeOp.h" #include "vm/GlobalObject.h" +#include "vm/JSContext.h" #include "vm/Runtime.h" #include "vm/JSObject-inl.h" #include "vm/NativeObject-inl.h" using namespace js; using JS::ClippedTime;
--- a/js/src/builtin/intl/IntlObject.cpp +++ b/js/src/builtin/intl/IntlObject.cpp @@ -8,27 +8,27 @@ #include "builtin/intl/IntlObject.h" #include "mozilla/Assertions.h" #include "mozilla/Likely.h" #include "mozilla/Range.h" #include "jsapi.h" -#include "jscntxt.h" #include "builtin/intl/Collator.h" #include "builtin/intl/CommonFunctions.h" #include "builtin/intl/DateTimeFormat.h" #include "builtin/intl/ICUStubs.h" #include "builtin/intl/NumberFormat.h" #include "builtin/intl/PluralRules.h" #include "builtin/intl/ScopedICUObject.h" #include "js/Class.h" #include "vm/GlobalObject.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/String.h" #include "vm/JSObject-inl.h" using namespace js; using mozilla::Range;
--- a/js/src/builtin/intl/NumberFormat.cpp +++ b/js/src/builtin/intl/NumberFormat.cpp @@ -10,25 +10,24 @@ #include "mozilla/Assertions.h" #include "mozilla/FloatingPoint.h" #include <algorithm> #include <stddef.h> #include <stdint.h> -#include "jscntxt.h" - #include "builtin/intl/CommonFunctions.h" #include "builtin/intl/ICUStubs.h" #include "builtin/intl/ScopedICUObject.h" #include "ds/Sort.h" #include "gc/FreeOp.h" #include "js/RootingAPI.h" #include "js/TypeDecls.h" +#include "vm/JSContext.h" #include "vm/SelfHosting.h" #include "vm/Stack.h" #include "vm/JSObject-inl.h" using namespace js; using mozilla::AssertedCast;
--- a/js/src/builtin/intl/PluralRules.cpp +++ b/js/src/builtin/intl/PluralRules.cpp @@ -6,23 +6,22 @@ /* Implementation of the Intl.PluralRules proposal. */ #include "builtin/intl/PluralRules.h" #include "mozilla/Assertions.h" #include "mozilla/Casting.h" -#include "jscntxt.h" - #include "builtin/intl/CommonFunctions.h" #include "builtin/intl/ICUStubs.h" #include "builtin/intl/ScopedICUObject.h" #include "gc/FreeOp.h" #include "vm/GlobalObject.h" +#include "vm/JSContext.h" #include "vm/String.h" #include "vm/JSObject-inl.h" #include "vm/NativeObject-inl.h" using namespace js; using mozilla::AssertedCast;
--- a/js/src/builtin/intl/RelativeTimeFormat.cpp +++ b/js/src/builtin/intl/RelativeTimeFormat.cpp @@ -6,23 +6,22 @@ /* Implementation of the Intl.RelativeTimeFormat proposal. */ #include "builtin/intl/RelativeTimeFormat.h" #include "mozilla/Assertions.h" #include "mozilla/Casting.h" -#include "jscntxt.h" - #include "builtin/intl/CommonFunctions.h" #include "builtin/intl/ICUStubs.h" #include "builtin/intl/ScopedICUObject.h" #include "gc/FreeOp.h" #include "vm/GlobalObject.h" +#include "vm/JSContext.h" #include "vm/NativeObject-inl.h" using namespace js; using mozilla::IsNegativeZero; using mozilla::Range; using mozilla::RangedPtr;
--- a/js/src/ctypes/CTypes.cpp +++ b/js/src/ctypes/CTypes.cpp @@ -26,29 +26,29 @@ #ifdef HAVE_SSIZE_T #include <sys/types.h> #endif #if defined(XP_UNIX) #include <errno.h> #endif -#include "jscntxt.h" #include "jsexn.h" #include "jsnum.h" #include "jsprf.h" #include "jswin.h" #include "builtin/TypedObject.h" #include "ctypes/Library.h" #include "gc/FreeOp.h" #include "gc/Policy.h" #include "gc/Zone.h" #include "jit/AtomicOperations.h" #include "js/Vector.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" #include "vm/JSObject-inl.h" using namespace std; using JS::AutoCheckCannotGC;
--- a/js/src/frontend/BytecodeCompiler.cpp +++ b/js/src/frontend/BytecodeCompiler.cpp @@ -4,25 +4,24 @@ * 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 "frontend/BytecodeCompiler.h" #include "mozilla/IntegerPrintfMacros.h" #include "mozilla/Maybe.h" -#include "jscntxt.h" - #include "builtin/ModuleObject.h" #include "frontend/BytecodeEmitter.h" #include "frontend/ErrorReporter.h" #include "frontend/FoldConstants.h" #include "frontend/NameFunctions.h" #include "frontend/Parser.h" #include "vm/GlobalObject.h" +#include "vm/JSContext.h" #include "vm/JSScript.h" #include "vm/TraceLogging.h" #include "wasm/AsmJS.h" #include "vm/EnvironmentObject-inl.h" #include "vm/JSObject-inl.h" #include "vm/JSScript-inl.h"
--- a/js/src/frontend/BytecodeEmitter.cpp +++ b/js/src/frontend/BytecodeEmitter.cpp @@ -14,27 +14,27 @@ #include "mozilla/DebugOnly.h" #include "mozilla/FloatingPoint.h" #include "mozilla/Maybe.h" #include "mozilla/PodOperations.h" #include <string.h> #include "jsapi.h" -#include "jscntxt.h" #include "jsnum.h" #include "jsopcode.h" #include "jstypes.h" #include "jsutil.h" #include "ds/Nestable.h" #include "frontend/Parser.h" #include "frontend/TokenStream.h" #include "vm/Debugger.h" #include "vm/GeneratorObject.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" #include "vm/JSScript.h" #include "vm/Stack.h" #include "wasm/AsmJS.h" #include "frontend/ParseNode-inl.h" #include "vm/EnvironmentObject-inl.h" #include "vm/JSScript-inl.h"
--- a/js/src/frontend/BytecodeEmitter.h +++ b/js/src/frontend/BytecodeEmitter.h @@ -6,25 +6,25 @@ /* JS bytecode generation. */ #ifndef frontend_BytecodeEmitter_h #define frontend_BytecodeEmitter_h #include "mozilla/Attributes.h" -#include "jscntxt.h" #include "jsiter.h" #include "jsopcode.h" #include "ds/InlineTable.h" #include "frontend/EitherParser.h" #include "frontend/SharedContext.h" #include "frontend/SourceNotes.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSScript.h" namespace js { namespace frontend { class CGConstList { Vector<Value> list; public:
--- a/js/src/frontend/FoldConstants.cpp +++ b/js/src/frontend/FoldConstants.cpp @@ -9,18 +9,17 @@ #include "mozilla/FloatingPoint.h" #include "jslibmath.h" #include "frontend/ParseNode.h" #include "frontend/Parser.h" #include "js/Conversions.h" -#include "jscntxtinlines.h" - +#include "vm/JSContext-inl.h" #include "vm/JSObject-inl.h" using namespace js; using namespace js::frontend; using mozilla::IsNaN; using mozilla::IsNegative; using mozilla::NegativeInfinity;
--- a/js/src/frontend/ParseNode.cpp +++ b/js/src/frontend/ParseNode.cpp @@ -3,17 +3,17 @@ * 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 "frontend/ParseNode-inl.h" #include "frontend/Parser.h" -#include "jscntxtinlines.h" +#include "vm/JSContext-inl.h" using namespace js; using namespace js::frontend; using mozilla::ArrayLength; using mozilla::IsFinite; #ifdef DEBUG
--- a/js/src/frontend/Parser.cpp +++ b/js/src/frontend/Parser.cpp @@ -19,26 +19,26 @@ #include "frontend/Parser.h" #include "mozilla/Range.h" #include "mozilla/Sprintf.h" #include "mozilla/TypeTraits.h" #include "jsapi.h" -#include "jscntxt.h" #include "jsopcode.h" #include "jstypes.h" #include "builtin/ModuleObject.h" #include "builtin/SelfHostingDefines.h" #include "frontend/BytecodeCompiler.h" #include "frontend/FoldConstants.h" #include "frontend/TokenStream.h" #include "irregexp/RegExpParser.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" #include "vm/JSScript.h" #include "vm/RegExpObject.h" #include "wasm/AsmJS.h" #include "frontend/ParseContext-inl.h" #include "frontend/ParseNode-inl.h" #include "vm/EnvironmentObject-inl.h"
--- a/js/src/frontend/SyntaxParseHandler.h +++ b/js/src/frontend/SyntaxParseHandler.h @@ -7,20 +7,19 @@ #ifndef frontend_SyntaxParseHandler_h #define frontend_SyntaxParseHandler_h #include "mozilla/Assertions.h" #include "mozilla/Attributes.h" #include <string.h> -#include "jscntxt.h" - #include "frontend/ParseNode.h" #include "js/GCAnnotations.h" +#include "vm/JSContext.h" namespace js { namespace frontend { // Parse handler used when processing the syntax in a block of code, to generate // the minimal information which is required to detect syntax errors and allow // bytecode to be emitted for outer functions.
--- a/js/src/frontend/TokenStream.cpp +++ b/js/src/frontend/TokenStream.cpp @@ -13,27 +13,27 @@ #include "mozilla/PodOperations.h" #include "mozilla/ScopeExit.h" #include <ctype.h> #include <stdarg.h> #include <stdio.h> #include <string.h> -#include "jscntxt.h" #include "jsexn.h" #include "jsnum.h" #include "frontend/BytecodeCompiler.h" #include "frontend/Parser.h" #include "frontend/ReservedWords.h" #include "js/CharacterEncoding.h" #include "js/UniquePtr.h" #include "vm/HelperThreads.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/StringBuffer.h" #include "vm/Unicode.h" using mozilla::ArrayLength; using mozilla::MakeScopeExit; using mozilla::Maybe; using mozilla::PodArrayZero; using mozilla::PodAssign;
--- a/js/src/frontend/TokenStream.h +++ b/js/src/frontend/TokenStream.h @@ -167,24 +167,24 @@ #include "mozilla/PodOperations.h" #include "mozilla/TypeTraits.h" #include "mozilla/Unused.h" #include <stdarg.h> #include <stddef.h> #include <stdio.h> -#include "jscntxt.h" #include "jspubtd.h" #include "frontend/ErrorReporter.h" #include "frontend/TokenKind.h" #include "js/UniquePtr.h" #include "js/Vector.h" #include "vm/ErrorReporting.h" +#include "vm/JSContext.h" #include "vm/RegExpShared.h" #include "vm/String.h" #include "vm/Unicode.h" struct KeywordInfo; namespace js { namespace frontend {
--- a/js/src/fuzz-tests/testExample.cpp +++ b/js/src/fuzz-tests/testExample.cpp @@ -2,20 +2,23 @@ * 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 "mozilla/ScopeExit.h" + #include "jsapi.h" + #include "fuzz-tests/tests.h" #include "vm/Interpreter.h" -#include "jscntxtinlines.h" + +#include "vm/JSContext-inl.h" using namespace JS; using namespace js; extern JS::PersistentRootedObject gGlobal; extern JSContext* gCx; static int
--- a/js/src/fuzz-tests/tests.cpp +++ b/js/src/fuzz-tests/tests.cpp @@ -4,19 +4,20 @@ * 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 "fuzz-tests/tests.h" #include <stdio.h> #include "jsalloc.h" -#include "jscntxt.h" + #include "js/Initialization.h" #include "js/RootingAPI.h" +#include "vm/JSContext.h" #ifdef LIBFUZZER #include "FuzzerDefs.h" #endif using namespace mozilla; JS::PersistentRootedObject gGlobal;
--- a/js/src/fuzz-tests/tests.h +++ b/js/src/fuzz-tests/tests.h @@ -9,11 +9,11 @@ #include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "FuzzingInterface.h" -#include "jscntxt.h" +#include "vm/JSContext.h" #endif /* fuzz_tests_tests_h */
--- a/js/src/gc/Allocator.cpp +++ b/js/src/gc/Allocator.cpp @@ -1,23 +1,22 @@ /* -*- 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 "gc/Allocator.h" -#include "jscntxt.h" - #include "gc/GCInternals.h" #include "gc/GCTrace.h" #include "gc/Nursery.h" #include "jit/JitCompartment.h" #include "threading/CpuCount.h" +#include "vm/JSContext.h" #include "vm/Runtime.h" #include "vm/String.h" #include "gc/ArenaList-inl.h" #include "gc/Heap-inl.h" #include "vm/JSObject-inl.h" using namespace js;
--- a/js/src/gc/Iteration.cpp +++ b/js/src/gc/Iteration.cpp @@ -8,19 +8,20 @@ #include "mozilla/DebugOnly.h" #include "gc/GCInternals.h" #include "js/HashTable.h" #include "vm/JSCompartment.h" #include "vm/Runtime.h" -#include "jscntxtinlines.h" #include "jsgcinlines.h" +#include "vm/JSContext-inl.h" + using namespace js; using namespace js::gc; static void IterateCompartmentsArenasCellsUnbarriered(JSContext* cx, Zone* zone, void* data, JSIterateCompartmentCallback compartmentCallback, IterateArenaCallback arenaCallback, IterateCellCallback cellCallback)
--- a/js/src/gc/Nursery-inl.h +++ b/js/src/gc/Nursery-inl.h @@ -5,22 +5,21 @@ * 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 gc_Nursery_inl_h #define gc_Nursery_inl_h #include "gc/Nursery.h" -#include "jscntxt.h" - #include "gc/Heap.h" #include "gc/RelocationOverlay.h" #include "gc/Zone.h" #include "js/TracingAPI.h" +#include "vm/JSContext.h" #include "vm/Runtime.h" #include "vm/SharedMem.h" template<typename T> bool js::Nursery::isInside(const SharedMem<T>& p) const { return isInside(p.unwrap(/*safe - used for value in comparison above*/));
--- a/js/src/gc/RootMarking.cpp +++ b/js/src/gc/RootMarking.cpp @@ -4,27 +4,28 @@ * 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 "mozilla/ArrayUtils.h" #ifdef MOZ_VALGRIND # include <valgrind/memcheck.h> #endif -#include "jscntxt.h" + #include "jsprf.h" #include "jstypes.h" #include "builtin/MapObject.h" #include "frontend/BytecodeCompiler.h" #include "gc/GCInternals.h" #include "gc/Marking.h" #include "jit/MacroAssembler.h" #include "js/HashTable.h" #include "vm/Debugger.h" +#include "vm/JSContext.h" #include "vm/JSONParser.h" #include "jsgcinlines.h" #include "gc/Iteration-inl.h" #include "gc/Nursery-inl.h" #include "vm/JSObject-inl.h"
--- a/js/src/gc/Verifier.cpp +++ b/js/src/gc/Verifier.cpp @@ -7,27 +7,27 @@ #ifdef MOZ_VALGRIND # include <valgrind/memcheck.h> #endif #include "mozilla/DebugOnly.h" #include "mozilla/IntegerPrintfMacros.h" #include "mozilla/Sprintf.h" -#include "jscntxt.h" #include "jsprf.h" #include "gc/GCInternals.h" #include "gc/Zone.h" #include "js/HashTable.h" +#include "vm/JSContext.h" -#include "jscntxtinlines.h" #include "jsgcinlines.h" #include "gc/Marking-inl.h" +#include "vm/JSContext-inl.h" using namespace js; using namespace js::gc; #ifdef JS_GC_ZEAL /* * Write barrier verification
--- a/js/src/gc/ZoneGroup.cpp +++ b/js/src/gc/ZoneGroup.cpp @@ -1,20 +1,19 @@ /* -*- 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 "gc/ZoneGroup.h" -#include "jscntxt.h" - #include "jit/IonBuilder.h" #include "jit/JitCompartment.h" +#include "vm/JSContext.h" using namespace js; namespace js { ZoneGroup::ZoneGroup(JSRuntime* runtime) : runtime(runtime), ownerContext_(TlsContext.get()),
--- a/js/src/gdb/tests/test-ExecutableAllocator.cpp +++ b/js/src/gdb/tests/test-ExecutableAllocator.cpp @@ -1,14 +1,13 @@ #include "gdb-tests.h" #include "jsapi.h" -#include "jscntxt.h" - #include "jit/ExecutableAllocator.h" +#include "vm/JSContext.h" FRAGMENT(ExecutableAllocator, empty) { using namespace js::jit; ExecutableAllocator execAlloc(cx->runtime()); breakpoint(); (void) execAlloc;
--- a/js/src/gdb/tests/test-JSString.cpp +++ b/js/src/gdb/tests/test-JSString.cpp @@ -1,11 +1,11 @@ #include "gdb-tests.h" -#include "jscntxt.h" +#include "vm/JSContext.h" // When JSGC_ANALYSIS is #defined, Rooted<JSFlatString*> needs the definition // of JSFlatString in order to figure out its ThingRootKind #include "vm/String.h" FRAGMENT(JSString, simple) { JS::Rooted<JSString*> empty(cx, JS_NewStringCopyN(cx, nullptr, 0)); JS::Rooted<JSString*> x(cx, JS_NewStringCopyN(cx, "x", 1)); JS::Rooted<JSString*> z(cx, JS_NewStringCopyZ(cx, "z"));
--- a/js/src/irregexp/RegExpEngine.h +++ b/js/src/irregexp/RegExpEngine.h @@ -26,20 +26,19 @@ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #ifndef V8_JSREGEXP_H_ #define V8_JSREGEXP_H_ -#include "jscntxt.h" - #include "ds/SplayTree.h" #include "jit/Label.h" +#include "vm/JSContext.h" #include "vm/RegExpObject.h" namespace js { class MatchPairs; class RegExpShared; namespace jit {
--- a/js/src/irregexp/RegExpInterpreter.cpp +++ b/js/src/irregexp/RegExpInterpreter.cpp @@ -29,17 +29,17 @@ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // A simple interpreter for the Irregexp byte code. #include "irregexp/RegExpBytecode.h" #include "irregexp/RegExpMacroAssembler.h" #include "vm/MatchPairs.h" -#include "jscntxtinlines.h" +#include "vm/JSContext-inl.h" using namespace js; using namespace js::irregexp; static const size_t kBitsPerByte = 8; static const size_t kBitsPerByteLog2 = 3; class MOZ_STACK_CLASS RegExpStackCursor
--- a/js/src/irregexp/RegExpStack.cpp +++ b/js/src/irregexp/RegExpStack.cpp @@ -25,17 +25,17 @@ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "irregexp/RegExpStack.h" -#include "jscntxt.h" +#include "vm/JSContext.h" using namespace js; using namespace js::irregexp; RegExpStackScope::RegExpStackScope(JSContext* cx) : regexp_stack(&cx->regexpStack.ref()) {}
--- a/js/src/jit/Bailouts.cpp +++ b/js/src/jit/Bailouts.cpp @@ -3,23 +3,22 @@ * 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 "jit/Bailouts.h" #include "mozilla/ScopeExit.h" -#include "jscntxt.h" - #include "jit/BaselineJIT.h" #include "jit/Ion.h" #include "jit/JitCompartment.h" #include "jit/JitSpewer.h" #include "jit/Snapshots.h" +#include "vm/JSContext.h" #include "vm/TraceLogging.h" #include "jit/JSJitFrameIter-inl.h" #include "vm/Probes-inl.h" #include "vm/Stack-inl.h" using namespace js; using namespace js::jit;
--- a/js/src/jit/BaselineCacheIRCompiler.cpp +++ b/js/src/jit/BaselineCacheIRCompiler.cpp @@ -6,21 +6,20 @@ #include "jit/BaselineCacheIRCompiler.h" #include "jit/CacheIR.h" #include "jit/Linker.h" #include "jit/SharedICHelpers.h" #include "proxy/Proxy.h" -#include "jscntxtinlines.h" - #include "jit/MacroAssembler-inl.h" #include "jit/SharedICHelpers-inl.h" #include "vm/JSCompartment-inl.h" +#include "vm/JSContext-inl.h" using namespace js; using namespace js::jit; using mozilla::Maybe; class AutoStubFrame;
--- a/js/src/jit/BaselineFrame-inl.h +++ b/js/src/jit/BaselineFrame-inl.h @@ -4,20 +4,19 @@ * 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 jit_BaselineFrame_inl_h #define jit_BaselineFrame_inl_h #include "jit/BaselineFrame.h" -#include "jscntxt.h" - #include "vm/EnvironmentObject.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/EnvironmentObject-inl.h" #include "vm/JSScript-inl.h" namespace js { namespace jit { template <typename SpecificEnvironment>
--- a/js/src/jit/BaselineIC.h +++ b/js/src/jit/BaselineIC.h @@ -4,28 +4,28 @@ * 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 jit_BaselineIC_h #define jit_BaselineIC_h #include "mozilla/Assertions.h" -#include "jscntxt.h" #include "jsopcode.h" #include "builtin/TypedObject.h" #include "gc/Barrier.h" #include "jit/BaselineICList.h" #include "jit/BaselineJIT.h" #include "jit/SharedIC.h" #include "jit/SharedICRegisters.h" #include "js/GCVector.h" #include "vm/ArrayObject.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/UnboxedObject.h" namespace js { namespace jit { // WarmUpCounter_Fallback // A WarmUpCounter IC chain has only the fallback stub.
--- a/js/src/jit/BaselineJIT.h +++ b/js/src/jit/BaselineJIT.h @@ -4,23 +4,22 @@ * 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 jit_BaselineJIT_h #define jit_BaselineJIT_h #include "mozilla/MemoryReporting.h" -#include "jscntxt.h" - #include "ds/LifoAlloc.h" #include "jit/Bailouts.h" #include "jit/IonCode.h" #include "jit/MacroAssembler.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/TraceLogging.h" namespace js { namespace jit { class StackValue; class BaselineICEntry; class ICStub;
--- a/js/src/jit/CompileWrappers.h +++ b/js/src/jit/CompileWrappers.h @@ -2,17 +2,17 @@ * 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/. */ #ifndef jit_CompileWrappers_h #define jit_CompileWrappers_h -#include "jscntxt.h" +#include "vm/JSContext.h" namespace js { namespace jit { class JitRuntime; // During Ion compilation we need access to various bits of the current // compartment, runtime and so forth. However, since compilation can run off
--- a/js/src/jit/Ion.h +++ b/js/src/jit/Ion.h @@ -5,21 +5,20 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef jit_Ion_h #define jit_Ion_h #include "mozilla/MemoryReporting.h" #include "mozilla/Result.h" -#include "jscntxt.h" - #include "jit/CompileWrappers.h" #include "jit/JitOptions.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" namespace js { namespace jit { class TempAllocator; enum MethodStatus {
--- a/js/src/jit/Jit.h +++ b/js/src/jit/Jit.h @@ -2,17 +2,17 @@ * 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/. */ #ifndef jit_Jit_h #define jit_Jit_h -#include "jscntxt.h" +#include "vm/JSContext.h" namespace js { class RunState; namespace jit { enum class EnterJitStatus
--- a/js/src/jit/JitAllocPolicy.h +++ b/js/src/jit/JitAllocPolicy.h @@ -7,21 +7,20 @@ #ifndef jit_JitAllocPolicy_h #define jit_JitAllocPolicy_h #include "mozilla/Attributes.h" #include "mozilla/GuardObjects.h" #include "mozilla/OperatorNewExtensions.h" #include "mozilla/TypeTraits.h" -#include "jscntxt.h" - #include "ds/LifoAlloc.h" #include "jit/InlineList.h" #include "jit/Ion.h" +#include "vm/JSContext.h" namespace js { namespace jit { class TempAllocator { LifoAllocScope lifoScope_;
--- a/js/src/jit/JitFrames.h +++ b/js/src/jit/JitFrames.h @@ -4,20 +4,19 @@ * 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 jit_JitFrames_h #define jit_JitFrames_h #include <stdint.h> -#include "jscntxt.h" - #include "jit/JSJitFrameIter.h" #include "jit/Safepoints.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" namespace js { namespace jit { enum CalleeTokenTag { CalleeToken_Function = 0x0, // untagged
--- a/js/src/jit/Linker.h +++ b/js/src/jit/Linker.h @@ -2,23 +2,22 @@ * 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/. */ #ifndef jit_Linker_h #define jit_Linker_h -#include "jscntxt.h" - #include "jit/ExecutableAllocator.h" #include "jit/IonCode.h" #include "jit/JitCompartment.h" #include "jit/MacroAssembler.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" namespace js { namespace jit { class Linker { MacroAssembler& masm; mozilla::Maybe<AutoWritableJitCode> awjc;
--- a/js/src/jit/MIRGenerator.h +++ b/js/src/jit/MIRGenerator.h @@ -9,27 +9,26 @@ // This file declares the data structures used to build a control-flow graph // containing MIR. #include "mozilla/Atomics.h" #include <stdarg.h> -#include "jscntxt.h" - #include "jit/CompileInfo.h" #include "jit/JitAllocPolicy.h" #include "jit/JitCompartment.h" #include "jit/MIR.h" #ifdef JS_ION_PERF # include "jit/PerfSpewer.h" #endif #include "jit/RegisterSets.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" namespace js { namespace jit { class MIRGraph; class OptimizationInfo; class MIRGenerator
--- a/js/src/jit/Recover.cpp +++ b/js/src/jit/Recover.cpp @@ -2,31 +2,31 @@ * 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 "jit/Recover.h" #include "jsapi.h" -#include "jscntxt.h" #include "jsiter.h" #include "jsmath.h" #include "jsstr.h" #include "builtin/RegExp.h" #include "builtin/SIMD.h" #include "builtin/TypedObject.h" #include "gc/Heap.h" #include "jit/JitSpewer.h" #include "jit/JSJitFrameIter.h" #include "jit/MIR.h" #include "jit/MIRGraph.h" #include "jit/VMFunctions.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/String.h" #include "vm/Interpreter-inl.h" #include "vm/NativeObject-inl.h" using namespace js; using namespace js::jit;
--- a/js/src/jit/SharedIC.h +++ b/js/src/jit/SharedIC.h @@ -2,26 +2,26 @@ * 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/. */ #ifndef jit_SharedIC_h #define jit_SharedIC_h -#include "jscntxt.h" #include "jsgc.h" #include "jit/BaselineICList.h" #include "jit/BaselineJIT.h" #include "jit/ICState.h" #include "jit/MacroAssembler.h" #include "jit/SharedICList.h" #include "jit/SharedICRegisters.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/ReceiverGuard.h" #include "vm/TypedArrayObject.h" namespace js { namespace jit { // // Baseline Inline Caches are polymorphic caches that aggressively
--- a/js/src/jit/arm/Bailouts-arm.cpp +++ b/js/src/jit/arm/Bailouts-arm.cpp @@ -1,20 +1,19 @@ /* -*- 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 "jscntxt.h" - #include "jit/arm/Assembler-arm.h" #include "jit/Bailouts.h" #include "jit/JitCompartment.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" using namespace js; using namespace js::jit; namespace js { namespace jit { class BailoutStack
--- a/js/src/jit/arm/CodeGenerator-arm.cpp +++ b/js/src/jit/arm/CodeGenerator-arm.cpp @@ -5,26 +5,26 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "jit/arm/CodeGenerator-arm.h" #include "mozilla/ArrayUtils.h" #include "mozilla/MathAlgorithms.h" #include "mozilla/Maybe.h" -#include "jscntxt.h" #include "jsnum.h" #include "jit/CodeGenerator.h" #include "jit/JitCompartment.h" #include "jit/JitFrames.h" #include "jit/MIR.h" #include "jit/MIRGraph.h" #include "js/Conversions.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/Shape.h" #include "vm/TraceLogging.h" #include "jit/MacroAssembler-inl.h" #include "jit/shared/CodeGenerator-shared-inl.h" #include "vm/JSScript-inl.h" using namespace js;
--- a/js/src/jit/arm64/CodeGenerator-arm64.cpp +++ b/js/src/jit/arm64/CodeGenerator-arm64.cpp @@ -3,25 +3,25 @@ * 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 "jit/arm64/CodeGenerator-arm64.h" #include "mozilla/MathAlgorithms.h" -#include "jscntxt.h" #include "jsnum.h" #include "jit/CodeGenerator.h" #include "jit/JitCompartment.h" #include "jit/JitFrames.h" #include "jit/MIR.h" #include "jit/MIRGraph.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/Shape.h" #include "vm/TraceLogging.h" #include "jit/shared/CodeGenerator-shared-inl.h" #include "vm/JSScript-inl.h" using namespace js; using namespace js::jit;
--- a/js/src/jit/mips-shared/CodeGenerator-mips-shared.cpp +++ b/js/src/jit/mips-shared/CodeGenerator-mips-shared.cpp @@ -4,26 +4,26 @@ * 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 "jit/mips-shared/CodeGenerator-mips-shared.h" #include "mozilla/DebugOnly.h" #include "mozilla/MathAlgorithms.h" -#include "jscntxt.h" #include "jsnum.h" #include "jit/CodeGenerator.h" #include "jit/JitCompartment.h" #include "jit/JitFrames.h" #include "jit/MIR.h" #include "jit/MIRGraph.h" #include "js/Conversions.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/Shape.h" #include "vm/TraceLogging.h" #include "jit/MacroAssembler-inl.h" #include "jit/shared/CodeGenerator-shared-inl.h" #include "vm/JSScript-inl.h" using namespace js;
--- a/js/src/jit/mips32/Bailouts-mips32.cpp +++ b/js/src/jit/mips32/Bailouts-mips32.cpp @@ -1,19 +1,18 @@ /* -*- 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 "jit/mips32/Bailouts-mips32.h" -#include "jscntxt.h" - #include "vm/JSCompartment.h" +#include "vm/JSContext.h" using namespace js; using namespace js::jit; BailoutFrameInfo::BailoutFrameInfo(const JitActivationIterator& activations, BailoutStack* bailout) : machine_(bailout->machine()) {
--- a/js/src/jit/mips64/Bailouts-mips64.cpp +++ b/js/src/jit/mips64/Bailouts-mips64.cpp @@ -1,19 +1,18 @@ /* -*- 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 "jit/mips64/Bailouts-mips64.h" -#include "jscntxt.h" - #include "vm/JSCompartment.h" +#include "vm/JSContext.h" using namespace js; using namespace js::jit; BailoutFrameInfo::BailoutFrameInfo(const JitActivationIterator& activations, BailoutStack* bailout) : machine_(bailout->machineState()) {
--- a/js/src/jit/x86/Bailouts-x86.cpp +++ b/js/src/jit/x86/Bailouts-x86.cpp @@ -1,19 +1,18 @@ /* -*- 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 "jscntxt.h" - #include "jit/Bailouts.h" #include "jit/JitCompartment.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" using namespace js; using namespace js::jit; #if defined(_WIN32) # pragma pack(push, 1) #endif
--- a/js/src/jsalloc.cpp +++ b/js/src/jsalloc.cpp @@ -1,17 +1,17 @@ /* -*- 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 "jsalloc.h" -#include "jscntxt.h" +#include "vm/JSContext.h" using namespace js; void* TempAllocPolicy::onOutOfMemory(AllocFunction allocFunc, size_t nbytes, void* reallocPtr) { return cx_->onOutOfMemory(allocFunc, nbytes, reallocPtr); }
--- a/js/src/jsapi-tests/testDebugger.cpp +++ b/js/src/jsapi-tests/testDebugger.cpp @@ -1,18 +1,17 @@ /* -*- 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 "jscntxt.h" - #include "jsapi-tests/tests.h" +#include "vm/JSContext.h" using namespace js; BEGIN_TEST(testDebugger_newScriptHook) { // Test that top-level indirect eval fires the newScript hook. CHECK(JS_DefineDebuggerObject(cx, global)); JS::CompartmentOptions options;
--- a/js/src/jsapi-tests/testGCHeapPostBarriers.cpp +++ b/js/src/jsapi-tests/testGCHeapPostBarriers.cpp @@ -7,17 +7,17 @@ #include "mozilla/TypeTraits.h" #include "mozilla/UniquePtr.h" #include "js/RootingAPI.h" #include "jsapi-tests/tests.h" #include "vm/Runtime.h" -#include "jscntxtinlines.h" +#include "vm/JSContext-inl.h" // A heap-allocated structure containing one of our barriered pointer wrappers // to test. template <typename W> struct TestStruct { W wrapper; };
--- a/js/src/jsapi-tests/testIndexToString.cpp +++ b/js/src/jsapi-tests/testIndexToString.cpp @@ -1,21 +1,21 @@ /* -*- 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 "jscntxt.h" #include "jsnum.h" #include "jsstr.h" #include "jsapi-tests/tests.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/String-inl.h" using mozilla::ArrayLength; static const struct TestPair { uint32_t num; const char* expected;
--- a/js/src/jsapi-tests/testIsInsideNursery.cpp +++ b/js/src/jsapi-tests/testIsInsideNursery.cpp @@ -3,17 +3,17 @@ */ /* 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 "gc/Zone.h" #include "jsapi-tests/tests.h" -#include "jscntxtinlines.h" +#include "vm/JSContext-inl.h" BEGIN_TEST(testIsInsideNursery) { /* Non-GC things are never inside the nursery. */ CHECK(!cx->nursery().isInside(cx)); CHECK(!cx->nursery().isInside((void*)nullptr)); JS_GC(cx);
--- a/js/src/jsapi-tests/testProfileStrings.cpp +++ b/js/src/jsapi-tests/testProfileStrings.cpp @@ -4,19 +4,18 @@ * Tests the stack-based instrumentation profiler on a JSRuntime */ /* 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 "mozilla/Atomics.h" -#include "jscntxt.h" - #include "jsapi-tests/tests.h" +#include "vm/JSContext.h" static PseudoStack pseudoStack; static uint32_t peakStackPointer = 0; static void reset(JSContext* cx) { pseudoStack.stackPointer = 0;
--- a/js/src/jsapi-tests/tests.h +++ b/js/src/jsapi-tests/tests.h @@ -11,20 +11,20 @@ #include "mozilla/TypeTraits.h" #include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "jsalloc.h" -#include "jscntxt.h" #include "jsgc.h" #include "js/Vector.h" +#include "vm/JSContext.h" /* Note: Aborts on OOM. */ class JSAPITestString { js::Vector<char, 0, js::SystemAllocPolicy> chars; public: JSAPITestString() {} explicit JSAPITestString(const char* s) { *this += s; }
--- a/js/src/jsapi.cpp +++ b/js/src/jsapi.cpp @@ -20,17 +20,16 @@ # include <dlfcn.h> #endif #include <stdarg.h> #include <string.h> #include <sys/stat.h> #include "jsarray.h" #include "jsbool.h" -#include "jscntxt.h" #include "jsdate.h" #include "jsexn.h" #include "jsfriendapi.h" #include "jsiter.h" #include "jsmath.h" #include "jsnum.h" #include "json.h" #include "jsprf.h" @@ -71,16 +70,17 @@ #include "vm/AsyncFunction.h" #include "vm/AsyncIteration.h" #include "vm/DateObject.h" #include "vm/Debugger.h" #include "vm/EnvironmentObject.h" #include "vm/ErrorObject.h" #include "vm/HelperThreads.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" #include "vm/JSObject.h" #include "vm/JSScript.h" #include "vm/RegExpStatics.h" #include "vm/Runtime.h" #include "vm/SavedStacks.h" #include "vm/SelfHosting.h" #include "vm/Shape.h"
--- a/js/src/jsarray.cpp +++ b/js/src/jsarray.cpp @@ -10,30 +10,30 @@ #include "mozilla/CheckedInt.h" #include "mozilla/DebugOnly.h" #include "mozilla/FloatingPoint.h" #include "mozilla/MathAlgorithms.h" #include <algorithm> #include "jsapi.h" -#include "jscntxt.h" #include "jsfriendapi.h" #include "jsiter.h" #include "jsnum.h" #include "jstypes.h" #include "jsutil.h" #include "ds/Sort.h" #include "gc/Heap.h" #include "jit/InlinableNatives.h" #include "js/Class.h" #include "js/Conversions.h" #include "vm/ArgumentsObject.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" #include "vm/JSObject.h" #include "vm/SelfHosting.h" #include "vm/Shape.h" #include "vm/StringBuffer.h" #include "vm/TypedArrayObject.h" #include "vm/WrapperObject.h"
--- a/js/src/jsatom.cpp +++ b/js/src/jsatom.cpp @@ -11,28 +11,27 @@ #include "jsatominlines.h" #include "mozilla/ArrayUtils.h" #include "mozilla/RangedPtr.h" #include "mozilla/Unused.h" #include <string.h> -#include "jscntxt.h" #include "jsstr.h" #include "jstypes.h" #include "gc/Marking.h" +#include "vm/JSContext.h" #include "vm/Symbol.h" #include "vm/Xdr.h" -#include "jscntxtinlines.h" - #include "gc/AtomMarking-inl.h" #include "vm/JSCompartment-inl.h" +#include "vm/JSContext-inl.h" #include "vm/JSObject-inl.h" #include "vm/String-inl.h" using namespace js; using namespace js::gc; using mozilla::ArrayEnd; using mozilla::ArrayLength;
--- a/js/src/jsbool.cpp +++ b/js/src/jsbool.cpp @@ -6,21 +6,21 @@ /* * JS boolean implementation. */ #include "jsboolinlines.h" #include "jsapi.h" -#include "jscntxt.h" #include "jstypes.h" #include "jit/InlinableNatives.h" #include "vm/GlobalObject.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/ProxyObject.h" #include "vm/StringBuffer.h" #include "vm/BooleanObject-inl.h" using namespace js;
--- a/js/src/jsboolinlines.h +++ b/js/src/jsboolinlines.h @@ -4,19 +4,18 @@ * 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 jsboolinlines_h #define jsboolinlines_h #include "jsbool.h" -#include "jscntxt.h" - #include "vm/BooleanObject.h" +#include "vm/JSContext.h" #include "vm/WrapperObject.h" namespace js { inline bool EmulatesUndefined(JSObject* obj) { // This may be called off the main thread. It's OK not to expose the object
--- a/js/src/jsdate.cpp +++ b/js/src/jsdate.cpp @@ -22,29 +22,29 @@ #include "mozilla/FloatingPoint.h" #include "mozilla/Sprintf.h" #include <ctype.h> #include <math.h> #include <string.h> #include "jsapi.h" -#include "jscntxt.h" #include "jsnum.h" #include "jsprf.h" #include "jsstr.h" #include "jstypes.h" #include "jsutil.h" #include "jswrapper.h" #include "js/Conversions.h" #include "js/Date.h" #include "vm/DateTime.h" #include "vm/GlobalObject.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/String.h" #include "vm/StringBuffer.h" #include "vm/Time.h" #include "vm/JSObject-inl.h" using namespace js;
--- a/js/src/jsexn.cpp +++ b/js/src/jsexn.cpp @@ -12,28 +12,28 @@ #include "mozilla/ArrayUtils.h" #include "mozilla/PodOperations.h" #include "mozilla/Sprintf.h" #include <string.h> #include "jsapi.h" -#include "jscntxt.h" #include "jsnum.h" #include "jsprf.h" #include "jstypes.h" #include "jsutil.h" #include "jswrapper.h" #include "gc/FreeOp.h" #include "gc/Marking.h" #include "js/CharacterEncoding.h" #include "vm/ErrorObject.h" #include "vm/GlobalObject.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" #include "vm/JSObject.h" #include "vm/JSScript.h" #include "vm/SavedStacks.h" #include "vm/SelfHosting.h" #include "vm/StringBuffer.h" #include "vm/ErrorObject-inl.h"
--- a/js/src/jsexn.h +++ b/js/src/jsexn.h @@ -7,19 +7,20 @@ /* * JS runtime exception classes. */ #ifndef jsexn_h #define jsexn_h #include "jsapi.h" -#include "jscntxt.h" #include "NamespaceImports.h" +#include "vm/JSContext.h" + namespace js { class ErrorObject; JSErrorNotes::Note* CopyErrorNote(JSContext* cx, JSErrorNotes::Note* note); JSErrorReport* CopyErrorReport(JSContext* cx, JSErrorReport* report);
--- a/js/src/jsfriendapi.cpp +++ b/js/src/jsfriendapi.cpp @@ -5,28 +5,28 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "jsfriendapi.h" #include "mozilla/PodOperations.h" #include <stdint.h> -#include "jscntxt.h" #include "jsprf.h" #include "jsweakmap.h" #include "jswrapper.h" #include "builtin/Promise.h" #include "builtin/TestingFunctions.h" #include "gc/GCInternals.h" #include "js/Proxy.h" #include "proxy/DeadObjectProxy.h" #include "vm/ArgumentsObject.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/Time.h" #include "vm/WrapperObject.h" #include "gc/Nursery-inl.h" #include "vm/EnvironmentObject-inl.h" #include "vm/JSObject-inl.h" #include "vm/JSScript-inl.h"
--- a/js/src/jsgc.cpp +++ b/js/src/jsgc.cpp @@ -201,17 +201,16 @@ #include <initializer_list> #include <string.h> #ifndef XP_WIN # include <sys/mman.h> # include <unistd.h> #endif #include "jsapi.h" -#include "jscntxt.h" #include "jsfriendapi.h" #include "jsprf.h" #include "jstypes.h" #include "jsutil.h" #include "jsweakmap.h" #ifdef XP_WIN # include "jswin.h" #endif @@ -225,16 +224,17 @@ #include "jit/BaselineJIT.h" #include "jit/IonCode.h" #include "jit/JitcodeMap.h" #include "js/SliceBudget.h" #include "proxy/DeadObjectProxy.h" #include "vm/Debugger.h" #include "vm/GeckoProfiler.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/JSScript.h" #include "vm/Printer.h" #include "vm/ProxyObject.h" #include "vm/Shape.h" #include "vm/String.h" #include "vm/Symbol.h" #include "vm/Time.h"
--- a/js/src/jshashutil.h +++ b/js/src/jshashutil.h @@ -2,19 +2,18 @@ * 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/. */ #ifndef jshashutil_h #define jshashutil_h -#include "jscntxt.h" - #include "gc/Zone.h" +#include "vm/JSContext.h" namespace js { /* * Used to add entries to a js::HashMap or HashSet where the key depends on a GC * thing that may be moved by generational or compacting GC between the call to * lookupForAdd() and relookupOrAdd(). */
--- a/js/src/jsiter.cpp +++ b/js/src/jsiter.cpp @@ -11,28 +11,28 @@ #include "mozilla/ArrayUtils.h" #include "mozilla/DebugOnly.h" #include "mozilla/Maybe.h" #include "mozilla/MemoryReporting.h" #include "mozilla/PodOperations.h" #include "mozilla/Unused.h" #include "jsarray.h" -#include "jscntxt.h" #include "jsopcode.h" #include "jstypes.h" #include "jsutil.h" #include "ds/Sort.h" #include "gc/FreeOp.h" #include "gc/Marking.h" #include "js/Proxy.h" #include "vm/GeneratorObject.h" #include "vm/GlobalObject.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/JSScript.h" #include "vm/Shape.h" #include "vm/TypedArrayObject.h" #include "vm/JSScript-inl.h" #include "vm/NativeObject-inl.h" #include "vm/ReceiverGuard-inl.h"
--- a/js/src/jsiter.h +++ b/js/src/jsiter.h @@ -8,19 +8,18 @@ #define jsiter_h /* * JavaScript iterators. */ #include "mozilla/MemoryReporting.h" -#include "jscntxt.h" - #include "gc/Barrier.h" +#include "vm/JSContext.h" #include "vm/ReceiverGuard.h" #include "vm/Stack.h" /* * For cacheable native iterators, whether the iterator is currently active. * Not serialized by XDR. */ #define JSITER_ACTIVE 0x1000
--- a/js/src/jslibmath.h +++ b/js/src/jslibmath.h @@ -6,19 +6,20 @@ #ifndef jslibmath_h #define jslibmath_h #include "mozilla/FloatingPoint.h" #include <math.h> -#include "jscntxt.h" #include "jsnum.h" +#include "vm/JSContext.h" + /* * Use system provided math routines. */ /* The right copysign function is not always named the same thing. */ #ifdef __GNUC__ #define js_copysign __builtin_copysign #elif defined _WIN32
--- a/js/src/jsmath.cpp +++ b/js/src/jsmath.cpp @@ -18,26 +18,26 @@ #include <algorithm> // for std::max #include <fcntl.h> #ifdef XP_UNIX # include <unistd.h> #endif #include "fdlibm.h" #include "jsapi.h" -#include "jscntxt.h" #include "jslibmath.h" #include "jstypes.h" #ifdef XP_WIN # include "jswin.h" #endif #include "jit/InlinableNatives.h" #include "js/Class.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/Time.h" #include "vm/JSObject-inl.h" #if defined(XP_WIN) // #define needed to link in RtlGenRandom(), a.k.a. SystemFunction036. See the // "Community Additions" comment on MSDN here: // https://msdn.microsoft.com/en-us/library/windows/desktop/aa387694.aspx
--- a/js/src/jsnum.cpp +++ b/js/src/jsnum.cpp @@ -16,23 +16,23 @@ #include "mozilla/RangedPtr.h" #ifdef HAVE_LOCALECONV #include <locale.h> #endif #include <math.h> #include <string.h> -#include "jscntxt.h" #include "jsdtoa.h" #include "jsstr.h" #include "jstypes.h" #include "js/Conversions.h" #include "vm/GlobalObject.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/StringBuffer.h" #include "vm/NativeObject-inl.h" #include "vm/NumberObject-inl.h" #include "vm/String-inl.h" using namespace js;
--- a/js/src/json.cpp +++ b/js/src/json.cpp @@ -6,23 +6,23 @@ #include "json.h" #include "mozilla/FloatingPoint.h" #include "mozilla/Range.h" #include "mozilla/ScopeExit.h" #include "jsarray.h" -#include "jscntxt.h" #include "jsnum.h" #include "jsstr.h" #include "jstypes.h" #include "jsutil.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/JSONParser.h" #include "vm/StringBuffer.h" #include "jsarrayinlines.h" #include "jsboolinlines.h" #include "vm/NativeObject-inl.h"
--- a/js/src/jsopcode.cpp +++ b/js/src/jsopcode.cpp @@ -19,42 +19,41 @@ #include <algorithm> #include <ctype.h> #include <inttypes.h> #include <stdio.h> #include <string.h> #include "jsapi.h" -#include "jscntxt.h" #include "jsnum.h" #include "jsprf.h" #include "jsstr.h" #include "jstypes.h" #include "jsutil.h" #include "frontend/BytecodeCompiler.h" #include "frontend/SourceNotes.h" #include "gc/FreeOp.h" #include "gc/GCInternals.h" #include "js/CharacterEncoding.h" #include "vm/CodeCoverage.h" #include "vm/EnvironmentObject.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" #include "vm/JSObject.h" #include "vm/JSScript.h" #include "vm/Opcodes.h" #include "vm/Shape.h" #include "vm/StringBuffer.h" -#include "jscntxtinlines.h" - #include "gc/Iteration-inl.h" #include "vm/JSCompartment-inl.h" +#include "vm/JSContext-inl.h" #include "vm/JSObject-inl.h" #include "vm/JSScript-inl.h" using namespace js; using namespace js::gc; using JS::AutoCheckCannotGC;
--- a/js/src/jsstr.cpp +++ b/js/src/jsstr.cpp @@ -18,17 +18,16 @@ #include <ctype.h> #include <limits> #include <string.h> #include "jsapi.h" #include "jsarray.h" #include "jsbool.h" -#include "jscntxt.h" #include "jsnum.h" #include "jsopcode.h" #include "jstypes.h" #include "jsutil.h" #include "builtin/intl/CommonFunctions.h" #include "builtin/intl/ICUStubs.h" #include "builtin/RegExp.h" @@ -36,16 +35,17 @@ #include "js/Conversions.h" #include "js/UniquePtr.h" #if ENABLE_INTL_API #include "unicode/uchar.h" #include "unicode/unorm2.h" #endif #include "vm/GlobalObject.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/Opcodes.h" #include "vm/Printer.h" #include "vm/RegExpObject.h" #include "vm/RegExpStatics.h" #include "vm/SelfHosting.h" #include "vm/StringBuffer.h" #include "vm/Unicode.h"
--- a/js/src/jsweakmap.cpp +++ b/js/src/jsweakmap.cpp @@ -4,21 +4,21 @@ * 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 "jsweakmap.h" #include <string.h> #include "jsapi.h" -#include "jscntxt.h" #include "jsfriendapi.h" #include "jswrapper.h" #include "vm/GlobalObject.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/JSObject-inl.h" using namespace js; using namespace js::gc; WeakMapBase::WeakMapBase(JSObject* memOf, Zone* zone)
--- a/js/src/moz.build +++ b/js/src/moz.build @@ -286,17 +286,16 @@ UNIFIED_SOURCES += [ 'jit/TypedObjectPrediction.cpp', 'jit/TypePolicy.cpp', 'jit/ValueNumbering.cpp', 'jit/VMFunctions.cpp', 'jit/WasmBCE.cpp', 'jsalloc.cpp', 'jsapi.cpp', 'jsbool.cpp', - 'jscntxt.cpp', 'jsdate.cpp', 'jsexn.cpp', 'jsfriendapi.cpp', 'jsgc.cpp', 'jsiter.cpp', 'jsnativestack.cpp', 'jsnum.cpp', 'json.cpp', @@ -333,16 +332,17 @@ UNIFIED_SOURCES += [ 'vm/ForOfIterator.cpp', 'vm/GeckoProfiler.cpp', 'vm/GeneratorObject.cpp', 'vm/GlobalObject.cpp', 'vm/HelperThreads.cpp', 'vm/Id.cpp', 'vm/Initialization.cpp', 'vm/JSCompartment.cpp', + 'vm/JSContext.cpp', 'vm/JSFunction.cpp', 'vm/JSObject.cpp', 'vm/JSONParser.cpp', 'vm/JSONPrinter.cpp', 'vm/JSScript.cpp', 'vm/MemoryMetrics.cpp', 'vm/NativeObject.cpp', 'vm/ObjectGroup.cpp',
--- a/js/src/perf/jsperf.cpp +++ b/js/src/perf/jsperf.cpp @@ -1,18 +1,17 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* 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 "perf/jsperf.h" -#include "jscntxt.h" /* for error messages */ - #include "gc/FreeOp.h" +#include "vm/JSContext.h" /* for error messages */ #include "vm/JSObject.h" /* for unwrapping without a context */ using namespace js; using JS::PerfMeasurement; // You cannot forward-declare a static object in C++, so instead // we have to forward-declare the helper function that refers to it. static PerfMeasurement* GetPM(JSContext* cx, JS::HandleValue value, const char* fname);
--- a/js/src/proxy/BaseProxyHandler.cpp +++ b/js/src/proxy/BaseProxyHandler.cpp @@ -2,18 +2,17 @@ * 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/Proxy.h" #include "vm/ProxyObject.h" -#include "jscntxtinlines.h" - +#include "vm/JSContext-inl.h" #include "vm/JSObject-inl.h" using namespace js; using JS::IsArrayAnswer; bool BaseProxyHandler::enter(JSContext* cx, HandleObject wrapper, HandleId id, Action act, bool mayThrow,
--- a/js/src/proxy/Proxy.cpp +++ b/js/src/proxy/Proxy.cpp @@ -6,21 +6,21 @@ #include "js/Proxy.h" #include "mozilla/Attributes.h" #include <string.h> #include "jsapi.h" -#include "jscntxt.h" #include "jswrapper.h" #include "proxy/DeadObjectProxy.h" #include "proxy/ScriptedProxyHandler.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" #include "vm/WrapperObject.h" #include "gc/Marking-inl.h" #include "vm/JSObject-inl.h" #include "vm/NativeObject-inl.h" using namespace js;
--- a/js/src/proxy/Wrapper.cpp +++ b/js/src/proxy/Wrapper.cpp @@ -1,21 +1,21 @@ /* -*- 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 "jscntxt.h" #include "jsexn.h" #include "jswrapper.h" #include "js/Proxy.h" #include "vm/ErrorObject.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/ProxyObject.h" #include "vm/RegExpObject.h" #include "vm/WrapperObject.h" #include "gc/Marking-inl.h" #include "vm/JSObject-inl.h" #include "vm/NativeObject-inl.h"
--- a/js/src/shell/js.cpp +++ b/js/src/shell/js.cpp @@ -47,17 +47,16 @@ # include <sys/mman.h> # include <sys/stat.h> # include <sys/wait.h> # include <unistd.h> #endif #include "jsapi.h" #include "jsarray.h" -#include "jscntxt.h" #include "jsfriendapi.h" #include "jsprf.h" #include "jstypes.h" #include "jsutil.h" #ifdef XP_WIN # include "jswin.h" #endif #include "jswrapper.h" @@ -95,16 +94,17 @@ #include "threading/LockGuard.h" #include "threading/Thread.h" #include "vm/ArgumentsObject.h" #include "vm/AsyncFunction.h" #include "vm/AsyncIteration.h" #include "vm/Compression.h" #include "vm/Debugger.h" #include "vm/HelperThreads.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" #include "vm/JSObject.h" #include "vm/JSScript.h" #include "vm/Monitor.h" #include "vm/MutexIDs.h" #include "vm/Printer.h" #include "vm/Shape.h" #include "vm/SharedArrayObject.h"
--- a/js/src/threading/ProtectedData.cpp +++ b/js/src/threading/ProtectedData.cpp @@ -1,20 +1,19 @@ /* -*- 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 "threading/ProtectedData.h" -#include "jscntxt.h" - #include "gc/Heap.h" #include "vm/HelperThreads.h" +#include "vm/JSContext.h" namespace js { #ifdef JS_HAS_PROTECTED_DATA_CHECKS /* static */ mozilla::Atomic<size_t> AutoNoteSingleThreadedRegion::count(0); template <AllowedHelperThread Helper>
--- a/js/src/vm/ArrayBufferObject.cpp +++ b/js/src/vm/ArrayBufferObject.cpp @@ -19,17 +19,16 @@ # include <sys/mman.h> #endif #ifdef MOZ_VALGRIND # include <valgrind/memcheck.h> #endif #include "jsapi.h" #include "jsarray.h" -#include "jscntxt.h" #include "jscpucfg.h" #include "jsfriendapi.h" #include "jsnum.h" #include "jstypes.h" #include "jsutil.h" #ifdef XP_WIN # include "jswin.h" #endif @@ -38,16 +37,17 @@ #include "builtin/DataViewObject.h" #include "gc/Barrier.h" #include "gc/FreeOp.h" #include "gc/Memory.h" #include "js/Conversions.h" #include "js/MemoryMetrics.h" #include "vm/GlobalObject.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/SharedArrayObject.h" #include "vm/WrapperObject.h" #include "wasm/WasmSignalHandlers.h" #include "wasm/WasmTypes.h" #include "gc/Marking-inl.h" #include "gc/Nursery-inl.h"
--- a/js/src/vm/AsyncFunction.h +++ b/js/src/vm/AsyncFunction.h @@ -2,18 +2,17 @@ * 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/. */ #ifndef vm_AsyncFunction_h #define vm_AsyncFunction_h -#include "jscntxt.h" - +#include "vm/JSContext.h" #include "vm/JSObject.h" namespace js { JSFunction* GetWrappedAsyncFunction(JSFunction* unwrapped); JSFunction*
--- a/js/src/vm/AsyncIteration.cpp +++ b/js/src/vm/AsyncIteration.cpp @@ -10,18 +10,17 @@ #include "builtin/Promise.h" #include "vm/GeneratorObject.h" #include "vm/GlobalObject.h" #include "vm/Interpreter.h" #include "vm/JSCompartment.h" #include "vm/SelfHosting.h" -#include "jscntxtinlines.h" - +#include "vm/JSContext-inl.h" #include "vm/JSObject-inl.h" #include "vm/List-inl.h" #include "vm/NativeObject-inl.h" using namespace js; using namespace js::gc; #define UNWRAPPED_ASYNC_WRAPPED_SLOT 1
--- a/js/src/vm/AsyncIteration.h +++ b/js/src/vm/AsyncIteration.h @@ -2,20 +2,19 @@ * 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/. */ #ifndef vm_AsyncIteration_h #define vm_AsyncIteration_h -#include "jscntxt.h" - #include "builtin/Promise.h" #include "vm/GeneratorObject.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" namespace js { // Async generator consists of 2 functions, |wrapped| and |unwrapped|. // |unwrapped| is a generator function compiled from async generator script, // |await| behaves just like |yield| there. |unwrapped| isn't exposed to user // script.
--- a/js/src/vm/CharacterEncoding.cpp +++ b/js/src/vm/CharacterEncoding.cpp @@ -7,19 +7,20 @@ #include "js/CharacterEncoding.h" #include "mozilla/Range.h" #include "mozilla/Sprintf.h" #include <algorithm> #include <type_traits> -#include "jscntxt.h" #include "jsprf.h" +#include "vm/JSContext.h" + using namespace js; Latin1CharsZ JS::LossyTwoByteCharsToNewLatin1CharsZ(JSContext* cx, const mozilla::Range<const char16_t> tbchars) { MOZ_ASSERT(cx); size_t len = tbchars.length();
--- a/js/src/vm/Debugger.cpp +++ b/js/src/vm/Debugger.cpp @@ -6,17 +6,16 @@ #include "vm/Debugger-inl.h" #include "mozilla/DebugOnly.h" #include "mozilla/ScopeExit.h" #include "mozilla/Sprintf.h" #include "mozilla/TypeTraits.h" -#include "jscntxt.h" #include "jsfriendapi.h" #include "jshashutil.h" #include "jsnum.h" #include "jsprf.h" #include "jswrapper.h" #include "frontend/BytecodeCompiler.h" #include "frontend/Parser.h" @@ -31,16 +30,17 @@ #include "proxy/ScriptedProxyHandler.h" #include "vm/ArgumentsObject.h" #include "vm/AsyncFunction.h" #include "vm/AsyncIteration.h" #include "vm/DebuggerMemory.h" #include "vm/GeckoProfiler.h" #include "vm/GeneratorObject.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/TraceLogging.h" #include "vm/WrapperObject.h" #include "wasm/WasmInstance.h" #include "jsgcinlines.h" #include "jsopcodeinlines.h"
--- a/js/src/vm/Debugger.h +++ b/js/src/vm/Debugger.h @@ -9,28 +9,28 @@ #include "mozilla/DoublyLinkedList.h" #include "mozilla/GuardObjects.h" #include "mozilla/LinkedList.h" #include "mozilla/Range.h" #include "mozilla/TimeStamp.h" #include "mozilla/Vector.h" -#include "jscntxt.h" #include "jsweakmap.h" #include "jswrapper.h" #include "builtin/Promise.h" #include "ds/TraceableFifo.h" #include "gc/Barrier.h" #include "js/Debug.h" #include "js/GCVariant.h" #include "js/HashTable.h" #include "vm/GlobalObject.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/SavedStacks.h" #include "wasm/WasmJS.h" enum JSTrapStatus { JSTRAP_ERROR, JSTRAP_CONTINUE, JSTRAP_RETURN, JSTRAP_THROW,
--- a/js/src/vm/DebuggerMemory.cpp +++ b/js/src/vm/DebuggerMemory.cpp @@ -8,28 +8,28 @@ #include "mozilla/Maybe.h" #include "mozilla/Move.h" #include "mozilla/Vector.h" #include <stdlib.h> #include "jsalloc.h" -#include "jscntxt.h" #include "builtin/MapObject.h" #include "gc/Marking.h" #include "js/Debug.h" #include "js/TracingAPI.h" #include "js/UbiNode.h" #include "js/UbiNodeCensus.h" #include "js/Utility.h" #include "vm/Debugger.h" #include "vm/GlobalObject.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/SavedStacks.h" #include "vm/Debugger-inl.h" #include "vm/NativeObject-inl.h" using namespace js; using JS::ubi::BreadthFirst;
--- a/js/src/vm/DebuggerMemory.h +++ b/js/src/vm/DebuggerMemory.h @@ -3,20 +3,20 @@ * 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 vm_DebuggerMemory_h #define vm_DebuggerMemory_h #include "jsapi.h" -#include "jscntxt.h" #include "js/Class.h" #include "js/Value.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" namespace js { class DebuggerMemory : public NativeObject { friend class Debugger; static DebuggerMemory* checkThis(JSContext* cx, CallArgs& args, const char* fnName);
--- a/js/src/vm/EnvironmentObject.h +++ b/js/src/vm/EnvironmentObject.h @@ -2,24 +2,24 @@ * 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/. */ #ifndef vm_EnvironmentObject_h #define vm_EnvironmentObject_h -#include "jscntxt.h" #include "jsweakmap.h" #include "builtin/ModuleObject.h" #include "frontend/NameAnalysisTypes.h" #include "gc/Barrier.h" #include "js/GCHashTable.h" #include "vm/ArgumentsObject.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/ProxyObject.h" #include "vm/Scope.h" namespace js { class ModuleObject; typedef Handle<ModuleObject*> HandleModuleObject;
--- a/js/src/vm/ErrorObject-inl.h +++ b/js/src/vm/ErrorObject-inl.h @@ -4,17 +4,17 @@ * 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 vm_ErrorObject_inl_h #define vm_ErrorObject_inl_h #include "vm/ErrorObject.h" -#include "jscntxt.h" +#include "vm/JSContext.h" inline JSString* js::ErrorObject::fileName(JSContext* cx) const { const HeapSlot& slot = getReservedSlotRef(FILENAME_SLOT); return slot.isString() ? slot.toString() : cx->names().empty; }
--- a/js/src/vm/ErrorReporting.cpp +++ b/js/src/vm/ErrorReporting.cpp @@ -5,21 +5,22 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "vm/ErrorReporting.h" #include "mozilla/Move.h" #include <stdarg.h> -#include "jscntxt.h" #include "jsexn.h" #include "jsfriendapi.h" -#include "jscntxtinlines.h" +#include "vm/JSContext.h" + +#include "vm/JSContext-inl.h" using mozilla::Move; using JS::HandleObject; using JS::HandleValue; using JS::UniqueTwoByteChars; void
--- a/js/src/vm/ForOfIterator.cpp +++ b/js/src/vm/ForOfIterator.cpp @@ -1,19 +1,19 @@ /* -*- 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 "jsapi.h" -#include "jscntxt.h" #include "vm/Interpreter.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/PIC.h" #include "vm/JSObject-inl.h" using namespace js; using JS::ForOfIterator;
--- a/js/src/vm/GeckoProfiler-inl.h +++ b/js/src/vm/GeckoProfiler-inl.h @@ -4,18 +4,17 @@ * 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 vm_GeckoProfiler_inl_h #define vm_GeckoProfiler_inl_h #include "vm/GeckoProfiler.h" -#include "jscntxt.h" - +#include "vm/JSContext.h" #include "vm/Runtime.h" namespace js { inline void GeckoProfilerThread::updatePC(JSContext* cx, JSScript* script, jsbytecode* pc) { if (!cx->runtime()->geckoProfiler().enabled())
--- a/js/src/vm/GeneratorObject.h +++ b/js/src/vm/GeneratorObject.h @@ -2,20 +2,19 @@ * 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/. */ #ifndef vm_GeneratorObject_h #define vm_GeneratorObject_h -#include "jscntxt.h" - #include "vm/ArgumentsObject.h" #include "vm/ArrayObject.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/Stack.h" namespace js { class GeneratorObject : public NativeObject { public:
--- a/js/src/vm/GlobalObject.cpp +++ b/js/src/vm/GlobalObject.cpp @@ -1,17 +1,16 @@ /* -*- 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 "vm/GlobalObject.h" -#include "jscntxt.h" #include "jsdate.h" #include "jsexn.h" #include "jsfriendapi.h" #include "jsmath.h" #include "json.h" #include "jsprototypes.h" #include "builtin/AtomicsObject.h" @@ -27,16 +26,17 @@ #include "builtin/SymbolObject.h" #include "builtin/TypedObject.h" #include "builtin/WeakMapObject.h" #include "builtin/WeakSetObject.h" #include "gc/FreeOp.h" #include "vm/Debugger.h" #include "vm/EnvironmentObject.h" #include "vm/HelperThreads.h" +#include "vm/JSContext.h" #include "vm/PIC.h" #include "vm/RegExpStatics.h" #include "vm/RegExpStaticsObject.h" #include "wasm/WasmJS.h" #include "vm/JSCompartment-inl.h" #include "vm/JSObject-inl.h" #include "vm/JSScript-inl.h"
--- a/js/src/vm/HelperThreads.cpp +++ b/js/src/vm/HelperThreads.cpp @@ -20,20 +20,19 @@ #include "threading/CpuCount.h" #include "vm/Debugger.h" #include "vm/ErrorReporting.h" #include "vm/SharedImmutableStringsCache.h" #include "vm/Time.h" #include "vm/TraceLogging.h" #include "vm/Xdr.h" -#include "jscntxtinlines.h" - #include "gc/Iteration-inl.h" #include "vm/JSCompartment-inl.h" +#include "vm/JSContext-inl.h" #include "vm/JSObject-inl.h" #include "vm/JSScript-inl.h" #include "vm/NativeObject-inl.h" using namespace js; using mozilla::ArrayLength; using mozilla::DebugOnly;
--- a/js/src/vm/HelperThreads.h +++ b/js/src/vm/HelperThreads.h @@ -16,22 +16,22 @@ #include "mozilla/Attributes.h" #include "mozilla/GuardObjects.h" #include "mozilla/PodOperations.h" #include "mozilla/TimeStamp.h" #include "mozilla/TypeTraits.h" #include "mozilla/Variant.h" #include "jsapi.h" -#include "jscntxt.h" #include "ds/Fifo.h" #include "jit/Ion.h" #include "js/TypeDecls.h" #include "threading/ConditionVariable.h" +#include "vm/JSContext.h" #include "vm/MutexIDs.h" namespace js { class AutoLockHelperThreadState; class AutoUnlockHelperThreadState; class CompileError; struct HelperThread;
--- a/js/src/vm/Interpreter.cpp +++ b/js/src/vm/Interpreter.cpp @@ -15,17 +15,16 @@ #include "mozilla/FloatingPoint.h" #include "mozilla/Maybe.h" #include "mozilla/PodOperations.h" #include "mozilla/Sprintf.h" #include <string.h> #include "jsarray.h" -#include "jscntxt.h" #include "jsiter.h" #include "jslibmath.h" #include "jsnum.h" #include "jsopcode.h" #include "jsprf.h" #include "jsstr.h" #include "builtin/Eval.h" @@ -33,16 +32,17 @@ #include "jit/BaselineJIT.h" #include "jit/Ion.h" #include "jit/IonAnalysis.h" #include "jit/Jit.h" #include "vm/AsyncFunction.h" #include "vm/AsyncIteration.h" #include "vm/Debugger.h" #include "vm/GeneratorObject.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" #include "vm/JSObject.h" #include "vm/JSScript.h" #include "vm/Opcodes.h" #include "vm/Scope.h" #include "vm/Shape.h" #include "vm/Stopwatch.h" #include "vm/StringBuffer.h"
--- a/js/src/vm/JSCompartment-inl.h +++ b/js/src/vm/JSCompartment-inl.h @@ -9,17 +9,17 @@ #include "vm/JSCompartment.h" #include "jsiter.h" #include "gc/Barrier.h" #include "gc/Marking.h" -#include "jscntxtinlines.h" +#include "vm/JSContext-inl.h" inline void JSCompartment::initGlobal(js::GlobalObject& global) { MOZ_ASSERT(global.compartment() == this); MOZ_ASSERT(!global_); global_.set(&global); }
--- a/js/src/vm/JSCompartment.cpp +++ b/js/src/vm/JSCompartment.cpp @@ -6,29 +6,29 @@ #include "vm/JSCompartment-inl.h" #include "mozilla/DebugOnly.h" #include "mozilla/MemoryReporting.h" #include <stddef.h> -#include "jscntxt.h" #include "jsfriendapi.h" #include "jsiter.h" #include "jswrapper.h" #include "gc/Policy.h" #include "jit/JitCompartment.h" #include "jit/JitOptions.h" #include "js/Date.h" #include "js/Proxy.h" #include "js/RootingAPI.h" #include "proxy/DeadObjectProxy.h" #include "vm/Debugger.h" +#include "vm/JSContext.h" #include "vm/WrapperObject.h" #include "jsgcinlines.h" #include "gc/Marking-inl.h" #include "vm/JSFunction-inl.h" #include "vm/JSObject-inl.h" #include "vm/JSScript-inl.h"
rename from js/src/jscntxtinlines.h rename to js/src/vm/JSContext-inl.h --- a/js/src/jscntxtinlines.h +++ b/js/src/vm/JSContext-inl.h @@ -1,18 +1,18 @@ /* -*- 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/. */ -#ifndef jscntxtinlines_h -#define jscntxtinlines_h +#ifndef vm_JSContext_inl_h +#define vm_JSContext_inl_h -#include "jscntxt.h" +#include "vm/JSContext.h" #include "jsiter.h" #include "builtin/Object.h" #include "jit/JitFrames.h" #include "proxy/Proxy.h" #include "vm/HelperThreads.h" #include "vm/Interpreter.h" @@ -617,9 +617,9 @@ JSContext::currentScript(jsbytecode** pp } inline js::RuntimeCaches& JSContext::caches() { return runtime()->caches(); } -#endif /* jscntxtinlines_h */ +#endif /* vm_JSContext_inl_h */
rename from js/src/jscntxt.cpp rename to js/src/vm/JSContext.cpp --- a/js/src/jscntxt.cpp +++ b/js/src/vm/JSContext.cpp @@ -3,17 +3,17 @@ * 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/. */ /* * JS execution context. */ -#include "jscntxtinlines.h" +#include "vm/JSContext-inl.h" #include "mozilla/ArrayUtils.h" #include "mozilla/DebugOnly.h" #include "mozilla/MemoryReporting.h" #include "mozilla/Sprintf.h" #include "mozilla/Unused.h" #include <ctype.h>
rename from js/src/jscntxt.h rename to js/src/vm/JSContext.h --- a/js/src/jscntxt.h +++ b/js/src/vm/JSContext.h @@ -1,18 +1,18 @@ /* -*- 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/. */ /* JS execution context. */ -#ifndef jscntxt_h -#define jscntxt_h +#ifndef vm_JSContext_h +#define vm_JSContext_h #include "mozilla/MemoryReporting.h" #include "js/CharacterEncoding.h" #include "js/GCVector.h" #include "js/Result.h" #include "js/Utility.h" #include "js/Vector.h" @@ -1367,9 +1367,9 @@ struct MOZ_RAII AutoSetThreadIsSweeping } // namespace gc } /* namespace js */ #ifdef _MSC_VER #pragma warning(pop) #endif -#endif /* jscntxt_h */ +#endif /* vm_JSContext_h */
--- a/js/src/vm/JSFunction.cpp +++ b/js/src/vm/JSFunction.cpp @@ -15,17 +15,16 @@ #include "mozilla/Maybe.h" #include "mozilla/PodOperations.h" #include "mozilla/Range.h" #include <string.h> #include "jsapi.h" #include "jsarray.h" -#include "jscntxt.h" #include "jsstr.h" #include "jstypes.h" #include "jswrapper.h" #include "builtin/Eval.h" #include "builtin/Object.h" #include "builtin/SelfHostingDefines.h" #include "frontend/BytecodeCompiler.h" @@ -36,16 +35,17 @@ #include "jit/Ion.h" #include "js/CallNonGenericMethod.h" #include "js/Proxy.h" #include "vm/AsyncFunction.h" #include "vm/AsyncIteration.h" #include "vm/Debugger.h" #include "vm/GlobalObject.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/JSScript.h" #include "vm/SelfHosting.h" #include "vm/Shape.h" #include "vm/SharedImmutableStringsCache.h" #include "vm/StringBuffer.h" #include "vm/WrapperObject.h" #include "vm/Xdr.h"
--- a/js/src/vm/JSObject.cpp +++ b/js/src/vm/JSObject.cpp @@ -14,17 +14,16 @@ #include "mozilla/MathAlgorithms.h" #include "mozilla/MemoryReporting.h" #include "mozilla/TemplateLib.h" #include <string.h> #include "jsapi.h" #include "jsarray.h" -#include "jscntxt.h" #include "jsexn.h" #include "jsfriendapi.h" #include "jsiter.h" #include "jsnum.h" #include "jsopcode.h" #include "jsprf.h" #include "jsstr.h" #include "jstypes.h" @@ -39,33 +38,34 @@ #include "gc/Policy.h" #include "jit/BaselineJIT.h" #include "js/MemoryMetrics.h" #include "js/Proxy.h" #include "js/UbiNode.h" #include "js/UniquePtr.h" #include "vm/ArgumentsObject.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" #include "vm/JSScript.h" #include "vm/ProxyObject.h" #include "vm/RegExpStaticsObject.h" #include "vm/Shape.h" #include "vm/TypedArrayObject.h" #include "jsboolinlines.h" -#include "jscntxtinlines.h" #include "builtin/TypedObject-inl.h" #include "gc/Marking-inl.h" #include "vm/ArrayObject-inl.h" #include "vm/BooleanObject-inl.h" #include "vm/Caches-inl.h" #include "vm/Interpreter-inl.h" #include "vm/JSCompartment-inl.h" +#include "vm/JSContext-inl.h" #include "vm/NativeObject-inl.h" #include "vm/NumberObject-inl.h" #include "vm/Shape-inl.h" #include "vm/StringObject-inl.h" #include "vm/TypedArrayObject-inl.h" #include "vm/UnboxedObject-inl.h" using namespace js;
--- a/js/src/vm/JSScript.cpp +++ b/js/src/vm/JSScript.cpp @@ -18,17 +18,16 @@ #include "mozilla/Sprintf.h" #include "mozilla/Unused.h" #include "mozilla/Vector.h" #include <algorithm> #include <string.h> #include "jsapi.h" -#include "jscntxt.h" #include "jsopcode.h" #include "jsprf.h" #include "jstypes.h" #include "jsutil.h" #include "jswrapper.h" #include "frontend/BytecodeCompiler.h" #include "frontend/BytecodeEmitter.h" @@ -37,16 +36,17 @@ #include "jit/BaselineJIT.h" #include "jit/Ion.h" #include "jit/IonCode.h" #include "js/MemoryMetrics.h" #include "js/Utility.h" #include "vm/ArgumentsObject.h" #include "vm/Compression.h" #include "vm/Debugger.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" #include "vm/JSObject.h" #include "vm/Opcodes.h" #include "vm/SelfHosting.h" #include "vm/Shape.h" #include "vm/SharedImmutableStringsCache.h" #include "vm/StringBuffer.h" #include "vm/Xdr.h"
--- a/js/src/vm/List-inl.h +++ b/js/src/vm/List-inl.h @@ -2,19 +2,18 @@ * 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/. */ #ifndef vm_List_inl_h #define vm_List_inl_h -#include "jscntxt.h" - #include "gc/Rooting.h" +#include "vm/JSContext.h" #include "vm/NativeObject.h" #include "vm/JSObject-inl.h" #include "vm/NativeObject-inl.h" namespace js { inline MOZ_MUST_USE NativeObject*
--- a/js/src/vm/NativeObject-inl.h +++ b/js/src/vm/NativeObject-inl.h @@ -4,21 +4,20 @@ * 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 vm_NativeObject_inl_h #define vm_NativeObject_inl_h #include "vm/NativeObject.h" -#include "jscntxt.h" - #include "builtin/TypedObject.h" #include "gc/GCTrace.h" #include "proxy/Proxy.h" +#include "vm/JSContext.h" #include "vm/ProxyObject.h" #include "vm/TypedArrayObject.h" #include "gc/Heap-inl.h" #include "gc/Marking-inl.h" #include "gc/ObjectKind-inl.h" #include "vm/JSObject-inl.h"
--- a/js/src/vm/PIC.cpp +++ b/js/src/vm/PIC.cpp @@ -1,22 +1,21 @@ /* -*- 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 "vm/PIC.h" -#include "jscntxt.h" - #include "gc/FreeOp.h" #include "gc/Marking.h" #include "vm/GlobalObject.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/SelfHosting.h" #include "vm/JSObject-inl.h" #include "vm/NativeObject-inl.h" using namespace js; using namespace js::gc;
--- a/js/src/vm/Printer.cpp +++ b/js/src/vm/Printer.cpp @@ -8,20 +8,20 @@ #include "mozilla/PodOperations.h" #include "mozilla/Printf.h" #include <ctype.h> #include <stdarg.h> #include <stdio.h> -#include "jscntxt.h" #include "jsutil.h" #include "ds/LifoAlloc.h" +#include "vm/JSContext.h" #ifdef XP_WIN32 #include "jswin.h" #endif using mozilla::PodCopy; namespace
--- a/js/src/vm/Probes-inl.h +++ b/js/src/vm/Probes-inl.h @@ -4,17 +4,17 @@ * 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 vm_Probes_inl_h #define vm_Probes_inl_h #include "vm/Probes.h" -#include "jscntxt.h" +#include "vm/JSContext.h" namespace js { /* * Many probe handlers are implemented inline for minimal performance impact, * especially important when no backends are enabled. */
--- a/js/src/vm/Probes.cpp +++ b/js/src/vm/Probes.cpp @@ -1,17 +1,17 @@ /* -*- 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 "vm/Probes-inl.h" -#include "jscntxt.h" +#include "vm/JSContext.h" #ifdef INCLUDE_MOZILLA_DTRACE #include "vm/JSScript-inl.h" #endif #define TYPEOF(cx,v) (v.isNull() ? JSTYPE_NULL : JS_TypeOfValue(cx,v)) using namespace js;
--- a/js/src/vm/Realm.cpp +++ b/js/src/vm/Realm.cpp @@ -1,20 +1,19 @@ /* -*- 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/Realm.h" -#include "jscntxt.h" - #include "vm/GlobalObject.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/JSCompartment-inl.h" using namespace js; JS_PUBLIC_API(void) gc::TraceRealm(JSTracer* trc, JS::Realm* realm, const char* name) {
--- a/js/src/vm/RegExpObject.h +++ b/js/src/vm/RegExpObject.h @@ -7,23 +7,22 @@ /* JavaScript RegExp objects. */ #ifndef vm_RegExpObject_h #define vm_RegExpObject_h #include "mozilla/Attributes.h" #include "mozilla/MemoryReporting.h" -#include "jscntxt.h" - #include "builtin/SelfHostingDefines.h" #include "gc/Marking.h" #include "js/GCHashTable.h" #include "proxy/Proxy.h" #include "vm/ArrayObject.h" +#include "vm/JSContext.h" #include "vm/RegExpShared.h" #include "vm/Shape.h" namespace JS { struct Zone; } /* * JavaScript Regular Expressions *
--- a/js/src/vm/RegExpStatics.h +++ b/js/src/vm/RegExpStatics.h @@ -2,19 +2,18 @@ * 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/. */ #ifndef vm_RegExpStatics_h #define vm_RegExpStatics_h -#include "jscntxt.h" - #include "gc/Marking.h" +#include "vm/JSContext.h" #include "vm/MatchPairs.h" #include "vm/RegExpShared.h" #include "vm/Runtime.h" namespace js { class GlobalObject; class RegExpStaticsObject;
--- a/js/src/vm/Runtime.cpp +++ b/js/src/vm/Runtime.cpp @@ -41,19 +41,20 @@ #include "js/SliceBudget.h" #include "vm/Debugger.h" #include "vm/JSObject.h" #include "vm/JSScript.h" #include "vm/TraceLogging.h" #include "vm/TraceLoggingGraph.h" #include "wasm/WasmSignalHandlers.h" -#include "jscntxtinlines.h" #include "jsgcinlines.h" +#include "vm/JSContext-inl.h" + using namespace js; using namespace js::gc; using mozilla::Atomic; using mozilla::DebugOnly; using mozilla::NegativeInfinity; using mozilla::PodZero; using mozilla::PodArrayZero;
--- a/js/src/vm/SavedStacks.cpp +++ b/js/src/vm/SavedStacks.cpp @@ -30,19 +30,18 @@ #include "vm/GeckoProfiler.h" #include "vm/JSCompartment.h" #include "vm/JSScript.h" #include "vm/SavedFrame.h" #include "vm/StringBuffer.h" #include "vm/Time.h" #include "vm/WrapperObject.h" -#include "jscntxtinlines.h" - #include "vm/GeckoProfiler-inl.h" +#include "vm/JSContext-inl.h" #include "vm/NativeObject-inl.h" #include "vm/Stack-inl.h" using mozilla::AddToHash; using mozilla::DebugOnly; using mozilla::HashString; using mozilla::Maybe; using mozilla::Move;
--- a/js/src/vm/SavedStacks.h +++ b/js/src/vm/SavedStacks.h @@ -5,20 +5,21 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef vm_SavedStacks_h #define vm_SavedStacks_h #include "mozilla/Attributes.h" #include "mozilla/FastBernoulliTrial.h" -#include "jscntxt.h" #include "jsmath.h" #include "jswrapper.h" + #include "js/HashTable.h" +#include "vm/JSContext.h" #include "vm/SavedFrame.h" #include "vm/Stack.h" namespace js { // # Saved Stacks // // The `SavedStacks` class provides a compact way to capture and save JS stacks
--- a/js/src/vm/SelfHosting.cpp +++ b/js/src/vm/SelfHosting.cpp @@ -7,17 +7,16 @@ #include "vm/SelfHosting.h" #include "mozilla/ArrayUtils.h" #include "mozilla/Casting.h" #include "mozilla/DebugOnly.h" #include "mozilla/Maybe.h" #include "jsarray.h" -#include "jscntxt.h" #include "jsdate.h" #include "jsfriendapi.h" #include "jshashutil.h" #include "jsiter.h" #include "jsstr.h" #include "jswrapper.h" #include "selfhosted.out.h" @@ -43,16 +42,17 @@ #include "jit/AtomicOperations.h" #include "jit/InlinableNatives.h" #include "js/CharacterEncoding.h" #include "js/Date.h" #include "vm/Compression.h" #include "vm/GeneratorObject.h" #include "vm/Interpreter.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/JSFunction.h" #include "vm/Printer.h" #include "vm/RegExpObject.h" #include "vm/String.h" #include "vm/StringBuffer.h" #include "vm/TypedArrayObject.h" #include "vm/WrapperObject.h"
--- a/js/src/vm/Shape-inl.h +++ b/js/src/vm/Shape-inl.h @@ -11,19 +11,18 @@ #include "mozilla/TypeTraits.h" #include "gc/Allocator.h" #include "vm/Interpreter.h" #include "vm/JSObject.h" #include "vm/TypedArrayObject.h" -#include "jscntxtinlines.h" - #include "gc/Marking-inl.h" +#include "vm/JSContext-inl.h" namespace js { inline AutoKeepShapeTables::AutoKeepShapeTables(JSContext* cx) : cx_(cx), prev_(cx->zone()->keepShapeTables()) {
--- a/js/src/vm/Shape.cpp +++ b/js/src/vm/Shape.cpp @@ -7,28 +7,27 @@ /* JS symbol tables. */ #include "vm/Shape-inl.h" #include "mozilla/DebugOnly.h" #include "mozilla/MathAlgorithms.h" #include "mozilla/PodOperations.h" -#include "jscntxt.h" #include "jshashutil.h" #include "gc/FreeOp.h" #include "gc/Policy.h" #include "js/HashTable.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" -#include "jscntxtinlines.h" - #include "vm/Caches-inl.h" #include "vm/JSCompartment-inl.h" +#include "vm/JSContext-inl.h" #include "vm/JSObject-inl.h" #include "vm/NativeObject-inl.h" using namespace js; using namespace js::gc; using mozilla::CeilingLog2Size; using mozilla::DebugOnly;
--- a/js/src/vm/Stack-inl.h +++ b/js/src/vm/Stack-inl.h @@ -6,23 +6,22 @@ #ifndef vm_Stack_inl_h #define vm_Stack_inl_h #include "vm/Stack.h" #include "mozilla/PodOperations.h" -#include "jscntxt.h" - #include "jit/BaselineFrame.h" #include "jit/RematerializedFrame.h" #include "js/Debug.h" #include "vm/EnvironmentObject.h" #include "vm/GeneratorObject.h" +#include "vm/JSContext.h" #include "vm/JSScript.h" #include "wasm/WasmInstance.h" #include "jit/BaselineFrame-inl.h" #include "vm/JSObject-inl.h" #include "vm/JSScript-inl.h" namespace js {
--- a/js/src/vm/Stack.cpp +++ b/js/src/vm/Stack.cpp @@ -3,23 +3,22 @@ * 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 "vm/Stack-inl.h" #include "mozilla/PodOperations.h" -#include "jscntxt.h" - #include "gc/Marking.h" #include "jit/BaselineFrame.h" #include "jit/JitcodeMap.h" #include "jit/JitCompartment.h" #include "vm/Debugger.h" +#include "vm/JSContext.h" #include "vm/Opcodes.h" #include "jit/JSJitFrameIter-inl.h" #include "vm/EnvironmentObject-inl.h" #include "vm/Interpreter-inl.h" #include "vm/Probes-inl.h" using namespace js;
--- a/js/src/vm/String-inl.h +++ b/js/src/vm/String-inl.h @@ -7,22 +7,21 @@ #ifndef vm_String_inl_h #define vm_String_inl_h #include "vm/String.h" #include "mozilla/PodOperations.h" #include "mozilla/Range.h" -#include "jscntxt.h" - #include "gc/Allocator.h" #include "gc/FreeOp.h" #include "gc/Marking.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" namespace js { // Allocate a thin inline string if possible, and a fat inline string if not. template <AllowGC allowGC, typename CharT> static MOZ_ALWAYS_INLINE JSInlineString* AllocateInlineString(JSContext* cx, size_t len, CharT** chars) {
--- a/js/src/vm/String.cpp +++ b/js/src/vm/String.cpp @@ -12,20 +12,19 @@ #include "mozilla/RangedPtr.h" #include "mozilla/TypeTraits.h" #include "mozilla/Unused.h" #include "gc/Marking.h" #include "js/UbiNode.h" #include "vm/GeckoProfiler.h" -#include "jscntxtinlines.h" - #include "vm/GeckoProfiler-inl.h" #include "vm/JSCompartment-inl.h" +#include "vm/JSContext-inl.h" using namespace js; using mozilla::IsSame; using mozilla::PodCopy; using mozilla::PodEqual; using mozilla::RangedPtr; using mozilla::RoundUpPow2;
--- a/js/src/vm/StringBuffer.h +++ b/js/src/vm/StringBuffer.h @@ -5,19 +5,18 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef vm_StringBuffer_h #define vm_StringBuffer_h #include "mozilla/DebugOnly.h" #include "mozilla/MaybeOneOf.h" -#include "jscntxt.h" - #include "js/Vector.h" +#include "vm/JSContext.h" namespace js { /* * String builder that eagerly checks for over-allocation past the maximum * string length. * * Any operation which would exceed the maximum string length causes an
--- a/js/src/vm/StructuredClone.cpp +++ b/js/src/vm/StructuredClone.cpp @@ -31,33 +31,32 @@ #include "mozilla/CheckedInt.h" #include "mozilla/EndianUtils.h" #include "mozilla/FloatingPoint.h" #include <algorithm> #include "jsapi.h" -#include "jscntxt.h" #include "jsdate.h" #include "jswrapper.h" #include "builtin/DataViewObject.h" #include "builtin/MapObject.h" #include "js/Date.h" #include "js/GCHashTable.h" +#include "vm/JSContext.h" #include "vm/RegExpObject.h" #include "vm/SavedFrame.h" #include "vm/SharedArrayObject.h" #include "vm/TypedArrayObject.h" #include "vm/WrapperObject.h" #include "wasm/WasmJS.h" -#include "jscntxtinlines.h" - +#include "vm/JSContext-inl.h" #include "vm/JSObject-inl.h" using namespace js; using mozilla::BitwiseCast; using mozilla::IsNaN; using mozilla::LittleEndian; using mozilla::NativeEndian;
--- a/js/src/vm/Symbol.cpp +++ b/js/src/vm/Symbol.cpp @@ -1,22 +1,21 @@ /* -*- 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 "vm/Symbol.h" -#include "jscntxt.h" - #include "builtin/SymbolObject.h" #include "gc/Allocator.h" #include "gc/Rooting.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/StringBuffer.h" #include "vm/JSCompartment-inl.h" using JS::Symbol; using namespace js; Symbol*
--- a/js/src/vm/TypeInference-inl.h +++ b/js/src/vm/TypeInference-inl.h @@ -22,18 +22,17 @@ #include "vm/ArrayObject.h" #include "vm/BooleanObject.h" #include "vm/NumberObject.h" #include "vm/SharedArrayObject.h" #include "vm/StringObject.h" #include "vm/TypedArrayObject.h" #include "vm/UnboxedObject.h" -#include "jscntxtinlines.h" - +#include "vm/JSContext-inl.h" #include "vm/ObjectGroup-inl.h" namespace js { ///////////////////////////////////////////////////////////////////// // CompilerOutput & RecompileInfo /////////////////////////////////////////////////////////////////////
--- a/js/src/vm/TypeInference.cpp +++ b/js/src/vm/TypeInference.cpp @@ -8,29 +8,29 @@ #include "mozilla/DebugOnly.h" #include "mozilla/IntegerPrintfMacros.h" #include "mozilla/MemoryReporting.h" #include "mozilla/PodOperations.h" #include "mozilla/Sprintf.h" #include "jsapi.h" -#include "jscntxt.h" #include "jshashutil.h" #include "jsprf.h" #include "jsstr.h" #include "jit/BaselineJIT.h" #include "jit/CompileInfo.h" #include "jit/Ion.h" #include "jit/IonAnalysis.h" #include "jit/JitCompartment.h" #include "jit/OptimizationTracking.h" #include "js/MemoryMetrics.h" #include "vm/HelperThreads.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/JSScript.h" #include "vm/Opcodes.h" #include "vm/Printer.h" #include "vm/Shape.h" #include "vm/Time.h" #include "vm/UnboxedObject.h"
--- a/js/src/vm/TypedArrayObject-inl.h +++ b/js/src/vm/TypedArrayObject-inl.h @@ -11,26 +11,23 @@ #include "vm/TypedArrayObject.h" #include "mozilla/Assertions.h" #include "mozilla/FloatingPoint.h" #include "mozilla/PodOperations.h" #include "jsarray.h" -#include "jscntxt.h" #include "jsnum.h" #include "gc/Zone.h" - #include "jit/AtomicOperations.h" - #include "js/Conversions.h" #include "js/Value.h" - +#include "vm/JSContext.h" #include "vm/NativeObject.h" #include "gc/ObjectKind-inl.h" namespace js { template<typename To, typename From> inline To
--- a/js/src/vm/TypedArrayObject.cpp +++ b/js/src/vm/TypedArrayObject.cpp @@ -14,17 +14,16 @@ #include <string.h> #ifndef XP_WIN # include <sys/mman.h> #endif #include "jsapi.h" #include "jsarray.h" -#include "jscntxt.h" #include "jscpucfg.h" #include "jsnum.h" #include "jstypes.h" #include "jsutil.h" #ifdef XP_WIN # include "jswin.h" #endif #include "jswrapper.h" @@ -33,16 +32,17 @@ #include "builtin/TypedObjectConstants.h" #include "gc/Barrier.h" #include "gc/Marking.h" #include "jit/InlinableNatives.h" #include "js/Conversions.h" #include "vm/ArrayBufferObject.h" #include "vm/GlobalObject.h" #include "vm/Interpreter.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/PIC.h" #include "vm/SelfHosting.h" #include "vm/SharedMem.h" #include "vm/WrapperObject.h" #include "gc/Nursery-inl.h" #include "gc/StoreBuffer-inl.h"
--- a/js/src/vm/UbiNode.cpp +++ b/js/src/vm/UbiNode.cpp @@ -8,28 +8,28 @@ #include "mozilla/Assertions.h" #include "mozilla/Attributes.h" #include "mozilla/Range.h" #include "mozilla/Scoped.h" #include <algorithm> -#include "jscntxt.h" #include "jsstr.h" #include "jit/IonCode.h" #include "js/Debug.h" #include "js/TracingAPI.h" #include "js/TypeDecls.h" #include "js/Utility.h" #include "js/Vector.h" #include "vm/Debugger.h" #include "vm/EnvironmentObject.h" #include "vm/GlobalObject.h" +#include "vm/JSContext.h" #include "vm/JSObject.h" #include "vm/JSScript.h" #include "vm/Scope.h" #include "vm/Shape.h" #include "vm/String.h" #include "vm/Symbol.h" #include "vm/Debugger-inl.h"
--- a/js/src/vm/UbiNodeCensus.cpp +++ b/js/src/vm/UbiNodeCensus.cpp @@ -1,19 +1,18 @@ /* -*- 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/UbiNodeCensus.h" -#include "jscntxt.h" - #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/JSObject-inl.h" #include "vm/NativeObject-inl.h" using namespace js; namespace JS { namespace ubi {
--- a/js/src/vm/Xdr.cpp +++ b/js/src/vm/Xdr.cpp @@ -6,20 +6,20 @@ #include "vm/Xdr.h" #include "mozilla/PodOperations.h" #include <string.h> #include "jsapi.h" -#include "jscntxt.h" #include "vm/Debugger.h" #include "vm/EnvironmentObject.h" +#include "vm/JSContext.h" #include "vm/JSScript.h" #include "vm/TraceLogging.h" using namespace js; using mozilla::PodEqual; template<XDRMode mode> LifoAlloc&
--- a/js/src/vtune/VTuneWrapper.cpp +++ b/js/src/vtune/VTuneWrapper.cpp @@ -3,21 +3,20 @@ * 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 "vtune/VTuneWrapper.h" #include "mozilla/Sprintf.h" -#include "jscntxt.h" - #include "threading/LockGuard.h" #include "threading/Mutex.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "vm/MutexIDs.h" #include "vm/Shape.h" #ifdef MOZ_VTUNE namespace js { namespace vtune {
--- a/js/src/wasm/WasmBinaryToAST.cpp +++ b/js/src/wasm/WasmBinaryToAST.cpp @@ -17,19 +17,18 @@ */ #include "wasm/WasmBinaryToAST.h" #include "mozilla/CheckedInt.h" #include "mozilla/MathAlgorithms.h" #include "mozilla/Sprintf.h" -#include "jscntxt.h" - #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "wasm/WasmBinaryIterator.h" #include "wasm/WasmValidate.h" using namespace js; using namespace js::wasm; using mozilla::CheckedInt; using mozilla::FloorLog2;
--- a/js/src/wasm/WasmTable.cpp +++ b/js/src/wasm/WasmTable.cpp @@ -15,19 +15,18 @@ * See the License for the specific language governing permissions and * limitations under the License. */ #include "wasm/WasmTable.h" #include "mozilla/CheckedInt.h" -#include "jscntxt.h" - #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "wasm/WasmInstance.h" #include "wasm/WasmJS.h" using namespace js; using namespace js::wasm; using mozilla::CheckedInt; Table::Table(JSContext* cx, const TableDesc& desc, HandleWasmTableObject maybeObject,
--- a/js/src/wasm/WasmValidate.cpp +++ b/js/src/wasm/WasmValidate.cpp @@ -15,21 +15,21 @@ * See the License for the specific language governing permissions and * limitations under the License. */ #include "wasm/WasmValidate.h" #include "mozilla/CheckedInt.h" -#include "jscntxt.h" #include "jsprf.h" #include "jit/JitOptions.h" #include "vm/JSCompartment.h" +#include "vm/JSContext.h" #include "wasm/WasmBinaryIterator.h" using namespace js; using namespace js::jit; using namespace js::wasm; using mozilla::CheckedInt;