| /* -*- 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/. */ |
| |
| /* |
| * JavaScript API. |
| */ |
| |
| #include "jsapi.h" |
| |
| #include "mozilla/FloatingPoint.h" |
| #include "mozilla/PodOperations.h" |
| #include "mozilla/ThreadLocal.h" |
| |
| #include <ctype.h> |
| #include <stdarg.h> |
| #include <stdlib.h> |
| #include <string.h> |
| #include <sys/stat.h> |
| |
| #include "jstypes.h" |
| #include "jsutil.h" |
| #include "jsprf.h" |
| #include "jsarray.h" |
| #include "jsatom.h" |
| #include "jsbool.h" |
| #include "jsclone.h" |
| #include "jscntxt.h" |
| #include "jsdate.h" |
| #include "jsdtoa.h" |
| #include "jsexn.h" |
| #include "jsfun.h" |
| #include "jsgc.h" |
| #include "jsiter.h" |
| #include "jslock.h" |
| #include "jsmath.h" |
| #include "jsnativestack.h" |
| #include "jsnum.h" |
| #include "json.h" |
| #include "jsobj.h" |
| #include "jsproxy.h" |
| #include "jsscript.h" |
| #include "jsstr.h" |
| #include "prmjtime.h" |
| #include "jsweakmap.h" |
| #include "jswrapper.h" |
| #include "jstypedarray.h" |
| #ifdef JS_THREADSAFE |
| #include "jsworkers.h" |
| #endif |
| |
| #include "builtin/Eval.h" |
| #include "builtin/Intl.h" |
| #include "builtin/MapObject.h" |
| #include "builtin/RegExp.h" |
| #include "builtin/ParallelArray.h" |
| #include "frontend/BytecodeCompiler.h" |
| #include "frontend/FullParseHandler.h" // for JS_BufferIsCompileableUnit |
| #include "frontend/Parser.h" // for JS_BufferIsCompileableUnit |
| #include "gc/Marking.h" |
| #include "gc/Memory.h" |
| #include "jit/AsmJS.h" |
| #include "jit/PcScriptCache.h" |
| #include "js/CharacterEncoding.h" |
| #include "vm/Debugger.h" |
| #include "vm/Interpreter.h" |
| #include "vm/NumericConversions.h" |
| #include "vm/Shape.h" |
| #include "vm/StopIterationObject.h" |
| #include "vm/StringBuffer.h" |
| #include "vm/WeakMapObject.h" |
| #include "vm/Xdr.h" |
| #include "yarr/BumpPointerAllocator.h" |
| |
| #include "jsatominlines.h" |
| #include "jsinferinlines.h" |
| #include "jsscriptinlines.h" |
| |
| #include "vm/Interpreter-inl.h" |
| #include "vm/ObjectImpl-inl.h" |
| #include "vm/RegExpObject-inl.h" |
| #include "vm/RegExpStatics-inl.h" |
| #include "vm/Shape-inl.h" |
| #include "vm/String-inl.h" |
| |
| #if ENABLE_YARR_JIT |
| #include "assembler/jit/ExecutableAllocator.h" |
| #endif |
| |
| #ifdef JS_ION |
| #include "jit/Ion.h" |
| #endif |
| |
| #include "starboard/file.h" |
| |
| using namespace js; |
| using namespace js::gc; |
| using namespace js::types; |
| |
| using mozilla::Maybe; |
| using mozilla::PodCopy; |
| using mozilla::PodZero; |
| |
| using js::frontend::Parser; |
| |
| bool |
| JS::detail::CallMethodIfWrapped(JSContext *cx, IsAcceptableThis test, NativeImpl impl, |
| CallArgs args) |
| { |
| const Value &thisv = args.thisv(); |
| JS_ASSERT(!test(thisv)); |
| |
| if (thisv.isObject()) { |
| JSObject &thisObj = args.thisv().toObject(); |
| if (thisObj.isProxy()) |
| return Proxy::nativeCall(cx, test, impl, args); |
| } |
| |
| ReportIncompatible(cx, args); |
| return false; |
| } |
| |
| #ifdef HAVE_VA_LIST_AS_ARRAY |
| #define JS_ADDRESSOF_VA_LIST(ap) ((va_list *)(ap)) |
| #else |
| #define JS_ADDRESSOF_VA_LIST(ap) (&(ap)) |
| #endif |
| |
| #ifdef JS_USE_JSID_STRUCT_TYPES |
| const jsid JSID_VOID = { size_t(JSID_TYPE_VOID) }; |
| const jsid JSID_EMPTY = { size_t(JSID_TYPE_OBJECT) }; |
| #endif |
| |
| const jsval JSVAL_NULL = IMPL_TO_JSVAL(BUILD_JSVAL(JSVAL_TAG_NULL, 0)); |
| const jsval JSVAL_ZERO = IMPL_TO_JSVAL(BUILD_JSVAL(JSVAL_TAG_INT32, 0)); |
| const jsval JSVAL_ONE = IMPL_TO_JSVAL(BUILD_JSVAL(JSVAL_TAG_INT32, 1)); |
| const jsval JSVAL_FALSE = IMPL_TO_JSVAL(BUILD_JSVAL(JSVAL_TAG_BOOLEAN, JS_FALSE)); |
| const jsval JSVAL_TRUE = IMPL_TO_JSVAL(BUILD_JSVAL(JSVAL_TAG_BOOLEAN, JS_TRUE)); |
| const jsval JSVAL_VOID = IMPL_TO_JSVAL(BUILD_JSVAL(JSVAL_TAG_UNDEFINED, 0)); |
| const HandleValue JS::NullHandleValue = |
| HandleValue::fromMarkedLocation(&JSVAL_NULL); |
| const HandleValue JS::UndefinedHandleValue = |
| HandleValue::fromMarkedLocation(&JSVAL_VOID); |
| |
| const jsid voidIdValue = JSID_VOID; |
| const jsid emptyIdValue = JSID_EMPTY; |
| const HandleId JS::JSID_VOIDHANDLE = HandleId::fromMarkedLocation(&voidIdValue); |
| const HandleId JS::JSID_EMPTYHANDLE = HandleId::fromMarkedLocation(&emptyIdValue); |
| |
| /* Make sure that jschar is two bytes unsigned integer */ |
| JS_STATIC_ASSERT((jschar)-1 > 0); |
| JS_STATIC_ASSERT(sizeof(jschar) == 2); |
| |
| JS_PUBLIC_API(int64_t) |
| JS_Now() |
| { |
| return PRMJ_Now(); |
| } |
| |
| JS_PUBLIC_API(jsval) |
| JS_GetNaNValue(JSContext *cx) |
| { |
| return cx->runtime()->NaNValue; |
| } |
| |
| JS_PUBLIC_API(jsval) |
| JS_GetNegativeInfinityValue(JSContext *cx) |
| { |
| return cx->runtime()->negativeInfinityValue; |
| } |
| |
| JS_PUBLIC_API(jsval) |
| JS_GetPositiveInfinityValue(JSContext *cx) |
| { |
| return cx->runtime()->positiveInfinityValue; |
| } |
| |
| JS_PUBLIC_API(jsval) |
| JS_GetEmptyStringValue(JSContext *cx) |
| { |
| return STRING_TO_JSVAL(cx->runtime()->emptyString); |
| } |
| |
| JS_PUBLIC_API(JSString *) |
| JS_GetEmptyString(JSRuntime *rt) |
| { |
| JS_ASSERT(rt->hasContexts()); |
| return rt->emptyString; |
| } |
| |
| static void |
| AssertHeapIsIdle(JSRuntime *rt) |
| { |
| JS_ASSERT(rt->heapState == js::Idle); |
| } |
| |
| static void |
| AssertHeapIsIdle(JSContext *cx) |
| { |
| AssertHeapIsIdle(cx->runtime()); |
| } |
| |
| static void |
| AssertHeapIsIdleOrIterating(JSRuntime *rt) |
| { |
| JS_ASSERT(!rt->isHeapCollecting()); |
| } |
| |
| static void |
| AssertHeapIsIdleOrIterating(JSContext *cx) |
| { |
| AssertHeapIsIdleOrIterating(cx->runtime()); |
| } |
| |
| static void |
| AssertHeapIsIdleOrStringIsFlat(JSContext *cx, JSString *str) |
| { |
| /* |
| * We allow some functions to be called during a GC as long as the argument |
| * is a flat string, since that will not cause allocation. |
| */ |
| JS_ASSERT_IF(cx->runtime()->isHeapBusy(), str->isFlat()); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ConvertArguments(JSContext *cx, unsigned argc, jsval *argv, const char *format, ...) |
| { |
| va_list ap; |
| JSBool ok; |
| |
| AssertHeapIsIdle(cx); |
| |
| va_start(ap, format); |
| ok = JS_ConvertArgumentsVA(cx, argc, argv, format, ap); |
| va_end(ap); |
| return ok; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ConvertArgumentsVA(JSContext *cx, unsigned argc, jsval *argv, const char *format, va_list ap) |
| { |
| jsval *sp; |
| JSBool required; |
| char c; |
| double d; |
| JSString *str; |
| RootedObject obj(cx); |
| RootedValue val(cx); |
| |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, JSValueArray(argv - 2, argc + 2)); |
| sp = argv; |
| required = JS_TRUE; |
| while ((c = *format++) != '\0') { |
| if (isspace(c)) |
| continue; |
| if (c == '/') { |
| required = JS_FALSE; |
| continue; |
| } |
| if (sp == argv + argc) { |
| if (required) { |
| if (JSFunction *fun = ReportIfNotFunction(cx, argv[-2])) { |
| char numBuf[12]; |
| JS_snprintf(numBuf, sizeof numBuf, "%u", argc); |
| JSAutoByteString funNameBytes; |
| if (const char *name = GetFunctionNameBytes(cx, fun, &funNameBytes)) { |
| JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL, JSMSG_MORE_ARGS_NEEDED, |
| name, numBuf, (argc == 1) ? "" : "s"); |
| } |
| } |
| return JS_FALSE; |
| } |
| break; |
| } |
| switch (c) { |
| case 'b': |
| *va_arg(ap, JSBool *) = ToBoolean(*sp); |
| break; |
| case 'c': |
| if (!JS_ValueToUint16(cx, *sp, va_arg(ap, uint16_t *))) |
| return JS_FALSE; |
| break; |
| case 'i': |
| if (!JS_ValueToECMAInt32(cx, *sp, va_arg(ap, int32_t *))) |
| return JS_FALSE; |
| break; |
| case 'u': |
| if (!JS_ValueToECMAUint32(cx, *sp, va_arg(ap, uint32_t *))) |
| return JS_FALSE; |
| break; |
| case 'j': |
| if (!JS_ValueToInt32(cx, *sp, va_arg(ap, int32_t *))) |
| return JS_FALSE; |
| break; |
| case 'd': |
| if (!JS_ValueToNumber(cx, *sp, va_arg(ap, double *))) |
| return JS_FALSE; |
| break; |
| case 'I': |
| if (!JS_ValueToNumber(cx, *sp, &d)) |
| return JS_FALSE; |
| *va_arg(ap, double *) = ToInteger(d); |
| break; |
| case 'S': |
| case 'W': |
| val = *sp; |
| str = ToString<CanGC>(cx, val); |
| if (!str) |
| return JS_FALSE; |
| *sp = STRING_TO_JSVAL(str); |
| if (c == 'W') { |
| JSStableString *stable = str->ensureStable(cx); |
| if (!stable) |
| return JS_FALSE; |
| *va_arg(ap, const jschar **) = stable->chars().get(); |
| } else { |
| *va_arg(ap, JSString **) = str; |
| } |
| break; |
| case 'o': |
| if (!js_ValueToObjectOrNull(cx, *sp, &obj)) |
| return JS_FALSE; |
| *sp = OBJECT_TO_JSVAL(obj); |
| *va_arg(ap, JSObject **) = obj; |
| break; |
| case 'f': |
| obj = ReportIfNotFunction(cx, *sp); |
| if (!obj) |
| return JS_FALSE; |
| *sp = OBJECT_TO_JSVAL(obj); |
| *va_arg(ap, JSFunction **) = &obj->as<JSFunction>(); |
| break; |
| case 'v': |
| *va_arg(ap, jsval *) = *sp; |
| break; |
| case '*': |
| break; |
| default: |
| JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL, JSMSG_BAD_CHAR, format); |
| return JS_FALSE; |
| } |
| sp++; |
| } |
| return JS_TRUE; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ConvertValue(JSContext *cx, jsval valueArg, JSType type, jsval *vp) |
| { |
| RootedValue value(cx, valueArg); |
| JSBool ok; |
| RootedObject obj(cx); |
| JSString *str; |
| double d; |
| |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, value); |
| switch (type) { |
| case JSTYPE_VOID: |
| *vp = JSVAL_VOID; |
| ok = JS_TRUE; |
| break; |
| case JSTYPE_OBJECT: |
| ok = js_ValueToObjectOrNull(cx, value, &obj); |
| if (ok) |
| *vp = OBJECT_TO_JSVAL(obj); |
| break; |
| case JSTYPE_FUNCTION: |
| *vp = value; |
| obj = ReportIfNotFunction(cx, *vp); |
| ok = (obj != NULL); |
| break; |
| case JSTYPE_STRING: |
| str = ToString<CanGC>(cx, value); |
| ok = (str != NULL); |
| if (ok) |
| *vp = STRING_TO_JSVAL(str); |
| break; |
| case JSTYPE_NUMBER: |
| ok = JS_ValueToNumber(cx, value, &d); |
| if (ok) |
| *vp = DOUBLE_TO_JSVAL(d); |
| break; |
| case JSTYPE_BOOLEAN: |
| *vp = BooleanValue(ToBoolean(value)); |
| return JS_TRUE; |
| default: { |
| char numBuf[12]; |
| JS_snprintf(numBuf, sizeof numBuf, "%d", (int)type); |
| JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL, JSMSG_BAD_TYPE, numBuf); |
| ok = JS_FALSE; |
| break; |
| } |
| } |
| return ok; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ValueToObject(JSContext *cx, jsval valueArg, JSObject **objpArg) |
| { |
| RootedValue value(cx, valueArg); |
| RootedObject objp(cx, *objpArg); |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, value); |
| if (!js_ValueToObjectOrNull(cx, value, &objp)) |
| return false; |
| *objpArg = objp; |
| return true; |
| } |
| |
| JS_PUBLIC_API(JSFunction *) |
| JS_ValueToFunction(JSContext *cx, jsval valueArg) |
| { |
| RootedValue value(cx, valueArg); |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, value); |
| return ReportIfNotFunction(cx, value); |
| } |
| |
| JS_PUBLIC_API(JSFunction *) |
| JS_ValueToConstructor(JSContext *cx, jsval valueArg) |
| { |
| RootedValue value(cx, valueArg); |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, value); |
| return ReportIfNotFunction(cx, value); |
| } |
| |
| JS_PUBLIC_API(JSString *) |
| JS_ValueToString(JSContext *cx, jsval valueArg) |
| { |
| RootedValue value(cx, valueArg); |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, value); |
| return ToString<CanGC>(cx, value); |
| } |
| |
| JS_PUBLIC_API(JSString *) |
| JS_ValueToSource(JSContext *cx, jsval valueArg) |
| { |
| RootedValue value(cx, valueArg); |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, value); |
| return ValueToSource(cx, value); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ValueToNumber(JSContext *cx, jsval valueArg, double *dp) |
| { |
| RootedValue value(cx, valueArg); |
| return JS::ToNumber(cx, value, dp); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_DoubleIsInt32(double d, int32_t *ip) |
| { |
| return mozilla::DoubleIsInt32(d, ip); |
| } |
| |
| JS_PUBLIC_API(int32_t) |
| JS_DoubleToInt32(double d) |
| { |
| return ToInt32(d); |
| } |
| |
| JS_PUBLIC_API(uint32_t) |
| JS_DoubleToUint32(double d) |
| { |
| return ToUint32(d); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ValueToECMAInt32(JSContext *cx, jsval valueArg, int32_t *ip) |
| { |
| RootedValue value(cx, valueArg); |
| return JS::ToInt32(cx, value, ip); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ValueToECMAUint32(JSContext *cx, jsval valueArg, uint32_t *ip) |
| { |
| RootedValue value(cx, valueArg); |
| return JS::ToUint32(cx, value, ip); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ValueToInt64(JSContext *cx, jsval valueArg, int64_t *ip) |
| { |
| RootedValue value(cx, valueArg); |
| return JS::ToInt64(cx, value, ip); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ValueToUint64(JSContext *cx, jsval valueArg, uint64_t *ip) |
| { |
| RootedValue value(cx, valueArg); |
| return JS::ToUint64(cx, value, ip); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ValueToInt32(JSContext *cx, jsval vArg, int32_t *ip) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| |
| RootedValue v(cx, vArg); |
| assertSameCompartment(cx, v); |
| |
| if (v.isInt32()) { |
| *ip = v.toInt32(); |
| return true; |
| } |
| |
| double d; |
| if (v.isDouble()) { |
| d = v.toDouble(); |
| } else if (!ToNumberSlow(cx, v, &d)) { |
| return false; |
| } |
| |
| if (mozilla::IsNaN(d) || d <= -2147483649.0 || 2147483648.0 <= d) { |
| js_ReportValueError(cx, JSMSG_CANT_CONVERT, |
| JSDVG_SEARCH_STACK, v, NullPtr()); |
| return false; |
| } |
| |
| *ip = (int32_t) floor(d + 0.5); /* Round to nearest */ |
| return true; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ValueToUint16(JSContext *cx, jsval valueArg, uint16_t *ip) |
| { |
| RootedValue value(cx, valueArg); |
| return ToUint16(cx, value, ip); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ValueToBoolean(JSContext *cx, jsval value, JSBool *bp) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, value); |
| *bp = ToBoolean(value); |
| return JS_TRUE; |
| } |
| |
| JS_PUBLIC_API(JSType) |
| JS_TypeOfValue(JSContext *cx, jsval valueArg) |
| { |
| RootedValue value(cx, valueArg); |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, value); |
| return TypeOfValue(cx, value); |
| } |
| |
| JS_PUBLIC_API(const char *) |
| JS_GetTypeName(JSContext *cx, JSType type) |
| { |
| if ((unsigned)type >= (unsigned)JSTYPE_LIMIT) |
| return NULL; |
| return TypeStrings[type]; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_StrictlyEqual(JSContext *cx, jsval value1, jsval value2, JSBool *equal) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, value1, value2); |
| bool eq; |
| if (!StrictlyEqual(cx, value1, value2, &eq)) |
| return false; |
| *equal = eq; |
| return true; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_LooselyEqual(JSContext *cx, jsval value1Arg, jsval value2Arg, JSBool *equal) |
| { |
| RootedValue value1(cx, value1Arg); |
| RootedValue value2(cx, value2Arg); |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, value1, value2); |
| bool eq; |
| if (!LooselyEqual(cx, value1, value2, &eq)) |
| return false; |
| *equal = eq; |
| return true; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_SameValue(JSContext *cx, jsval value1, jsval value2, JSBool *same) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, value1, value2); |
| bool s; |
| if (!SameValue(cx, value1, value2, &s)) |
| return false; |
| *same = s; |
| return true; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_IsBuiltinEvalFunction(JSFunction *fun) |
| { |
| return IsAnyBuiltinEval(fun); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_IsBuiltinFunctionConstructor(JSFunction *fun) |
| { |
| return IsBuiltinFunctionConstructor(fun); |
| } |
| |
| /************************************************************************/ |
| |
| /* |
| * Has a new runtime ever been created? This flag is used to control things |
| * that should happen only once across all runtimes. |
| */ |
| static JSBool js_NewRuntimeWasCalled = JS_FALSE; |
| |
| /* |
| * Thread Local Storage slot for storing the runtime for a thread. |
| */ |
| mozilla::ThreadLocal<PerThreadData *> js::TlsPerThreadData; |
| |
| #ifdef DEBUG |
| JS_FRIEND_API(bool) |
| JS::isGCEnabled() |
| { |
| return !TlsPerThreadData.get()->suppressGC; |
| } |
| #else |
| JS_FRIEND_API(bool) JS::isGCEnabled() { return true; } |
| #endif |
| |
| static const JSSecurityCallbacks NullSecurityCallbacks = { }; |
| |
| static bool |
| JitSupportsFloatingPoint() |
| { |
| #if defined(JS_ION) |
| if (!JSC::MacroAssembler().supportsFloatingPoint()) |
| return false; |
| |
| #if defined(JS_ION) && WTF_ARM_ARCH_VERSION == 6 |
| if (!js::jit::hasVFP()) |
| return false; |
| #endif |
| |
| return true; |
| #else |
| return false; |
| #endif |
| } |
| |
| PerThreadData::PerThreadData(JSRuntime *runtime) |
| : PerThreadDataFriendFields(), |
| runtime_(runtime), |
| ionTop(NULL), |
| ionJSContext(NULL), |
| ionStackLimit(0), |
| activation_(NULL), |
| asmJSActivationStack_(NULL), |
| suppressGC(0) |
| {} |
| |
| JSRuntime::JSRuntime(JSUseHelperThreads useHelperThreads) |
| : mainThread(this), |
| interrupt(0), |
| #ifdef JS_THREADSAFE |
| operationCallbackLock(NULL), |
| #ifdef DEBUG |
| operationCallbackOwner(NULL), |
| #endif |
| #endif |
| atomsCompartment(NULL), |
| systemZone(NULL), |
| numCompartments(0), |
| localeCallbacks(NULL), |
| defaultLocale(NULL), |
| defaultVersion_(JSVERSION_DEFAULT), |
| #ifdef JS_THREADSAFE |
| ownerThread_(NULL), |
| #endif |
| tempLifoAlloc(TEMP_LIFO_ALLOC_PRIMARY_CHUNK_SIZE), |
| freeLifoAlloc(TEMP_LIFO_ALLOC_PRIMARY_CHUNK_SIZE), |
| #if ENABLE_ASSEMBLER |
| execAlloc_(NULL), |
| #endif |
| bumpAlloc_(NULL), |
| ionRuntime_(NULL), |
| selfHostingGlobal_(NULL), |
| selfHostedClasses_(NULL), |
| nativeStackBase(0), |
| nativeStackQuota(0), |
| interpreterFrames(NULL), |
| cxCallback(NULL), |
| destroyCompartmentCallback(NULL), |
| destroyZoneCallback(NULL), |
| sweepZoneCallback(NULL), |
| compartmentNameCallback(NULL), |
| activityCallback(NULL), |
| activityCallbackArg(NULL), |
| #ifdef JS_THREADSAFE |
| requestDepth(0), |
| # ifdef DEBUG |
| checkRequestDepth(0), |
| # endif |
| #endif |
| gcSystemAvailableChunkListHead(NULL), |
| gcUserAvailableChunkListHead(NULL), |
| gcKeepAtoms(0), |
| gcBytes(0), |
| gcMaxBytes(0), |
| gcMaxMallocBytes(0), |
| gcNumArenasFreeCommitted(0), |
| gcMarker(this), |
| gcVerifyPreData(NULL), |
| gcVerifyPostData(NULL), |
| gcChunkAllocationSinceLastGC(false), |
| gcNextFullGCTime(0), |
| gcLastGCTime(0), |
| gcJitReleaseTime(0), |
| gcMode(JSGC_MODE_GLOBAL), |
| gcAllocationThreshold(30 * 1024 * 1024), |
| gcHighFrequencyGC(false), |
| gcHighFrequencyTimeThreshold(1000), |
| gcHighFrequencyLowLimitBytes(100 * 1024 * 1024), |
| gcHighFrequencyHighLimitBytes(500 * 1024 * 1024), |
| gcHighFrequencyHeapGrowthMax(3.0), |
| gcHighFrequencyHeapGrowthMin(1.5), |
| gcLowFrequencyHeapGrowth(1.5), |
| gcDynamicHeapGrowth(false), |
| gcDynamicMarkSlice(false), |
| gcDecommitThreshold(32 * 1024 * 1024), |
| gcShouldCleanUpEverything(false), |
| gcGrayBitsValid(false), |
| gcIsNeeded(0), |
| gcStats(thisFromCtor()), |
| gcNumber(0), |
| gcStartNumber(0), |
| gcIsFull(false), |
| gcTriggerReason(JS::gcreason::NO_REASON), |
| gcStrictCompartmentChecking(false), |
| #ifdef DEBUG |
| gcDisableStrictProxyCheckingCount(0), |
| #endif |
| gcIncrementalState(gc::NO_INCREMENTAL), |
| gcLastMarkSlice(false), |
| gcSweepOnBackgroundThread(false), |
| gcFoundBlackGrayEdges(false), |
| gcSweepingZones(NULL), |
| gcZoneGroupIndex(0), |
| gcZoneGroups(NULL), |
| gcCurrentZoneGroup(NULL), |
| gcSweepPhase(0), |
| gcSweepZone(NULL), |
| gcSweepKindIndex(0), |
| gcAbortSweepAfterCurrentGroup(false), |
| gcArenasAllocatedDuringSweep(NULL), |
| #ifdef DEBUG |
| gcMarkingValidator(NULL), |
| #endif |
| gcInterFrameGC(0), |
| gcSliceBudget(SliceBudget::Unlimited), |
| gcIncrementalEnabled(true), |
| gcGenerationalEnabled(true), |
| gcManipulatingDeadZones(false), |
| gcObjectsMarkedInDeadZones(0), |
| gcPoke(false), |
| heapState(Idle), |
| #ifdef JSGC_GENERATIONAL |
| gcNursery(thisFromCtor()), |
| gcStoreBuffer(thisFromCtor()), |
| #endif |
| #ifdef JS_GC_ZEAL |
| gcZeal_(0), |
| gcZealFrequency(0), |
| gcNextScheduled(0), |
| gcDeterministicOnly(false), |
| gcIncrementalLimit(0), |
| #endif |
| gcValidate(true), |
| gcFullCompartmentChecks(false), |
| gcCallback(NULL), |
| gcSliceCallback(NULL), |
| gcFinalizeCallback(NULL), |
| analysisPurgeCallback(NULL), |
| analysisPurgeTriggerBytes(0), |
| gcMallocBytes(0), |
| autoGCRooters(NULL), |
| scriptAndCountsVector(NULL), |
| NaNValue(UndefinedValue()), |
| negativeInfinityValue(UndefinedValue()), |
| positiveInfinityValue(UndefinedValue()), |
| emptyString(NULL), |
| sourceHook(NULL), |
| debugMode(false), |
| spsProfiler(thisFromCtor()), |
| profilingScripts(false), |
| alwaysPreserveCode(false), |
| hadOutOfMemory(false), |
| data(NULL), |
| gcLock(NULL), |
| gcHelperThread(thisFromCtor()), |
| #ifdef JS_THREADSAFE |
| #ifdef JS_ION |
| workerThreadState(NULL), |
| #endif |
| sourceCompressorThread(), |
| #endif |
| defaultFreeOp_(thisFromCtor(), false), |
| debuggerMutations(0), |
| securityCallbacks(const_cast<JSSecurityCallbacks *>(&NullSecurityCallbacks)), |
| DOMcallbacks(NULL), |
| destroyPrincipals(NULL), |
| structuredCloneCallbacks(NULL), |
| telemetryCallback(NULL), |
| propertyRemovals(0), |
| #if !ENABLE_INTL_API |
| thousandsSeparator(0), |
| decimalSeparator(0), |
| numGrouping(0), |
| #endif |
| mathCache_(NULL), |
| dtoaState(NULL), |
| activeCompilations(0), |
| trustedPrincipals_(NULL), |
| wrapObjectCallback(TransparentObjectWrapper), |
| sameCompartmentWrapObjectCallback(NULL), |
| preWrapObjectCallback(NULL), |
| preserveWrapperCallback(NULL), |
| #ifdef DEBUG |
| noGCOrAllocationCheck(0), |
| #endif |
| jitHardening(false), |
| jitSupportsFloatingPoint(false), |
| ionPcScriptCache(NULL), |
| threadPool(this), |
| ctypesActivityCallback(NULL), |
| parallelWarmup(0), |
| ionReturnOverride_(MagicValue(JS_ARG_POISON)), |
| useHelperThreads_(useHelperThreads), |
| requestedHelperThreadCount(-1) |
| #ifdef DEBUG |
| , enteredPolicy(NULL) |
| #endif |
| { |
| /* Initialize infallibly first, so we can goto bad and JS_DestroyRuntime. */ |
| JS_INIT_CLIST(&onNewGlobalObjectWatchers); |
| |
| PodZero(&debugHooks); |
| PodZero(&atomState); |
| |
| #if JS_STACK_GROWTH_DIRECTION > 0 |
| nativeStackLimit = UINTPTR_MAX; |
| #endif |
| } |
| |
| bool |
| JSRuntime::init(uint32_t maxbytes) |
| { |
| #ifdef JS_THREADSAFE |
| ownerThread_ = PR_GetCurrentThread(); |
| |
| operationCallbackLock = PR_NewLock(); |
| if (!operationCallbackLock) |
| return false; |
| #endif |
| |
| js::TlsPerThreadData.set(&mainThread); |
| |
| if (!js_InitGC(this, maxbytes)) |
| return false; |
| |
| if (!gcMarker.init()) |
| return false; |
| |
| #if !defined(STARBOARD) |
| const char *size = getenv("JSGC_MARK_STACK_LIMIT"); |
| if (size) |
| SetMarkStackLimit(this, atoi(size)); |
| #endif |
| |
| ScopedJSDeletePtr<Zone> atomsZone(new_<Zone>(this)); |
| if (!atomsZone) |
| return false; |
| |
| JS::CompartmentOptions options; |
| ScopedJSDeletePtr<JSCompartment> atomsCompartment(new_<JSCompartment>(atomsZone.get(), options)); |
| if (!atomsCompartment || !atomsCompartment->init(NULL)) |
| return false; |
| |
| zones.append(atomsZone.get()); |
| atomsZone->compartments.append(atomsCompartment.get()); |
| |
| atomsCompartment->isSystem = true; |
| atomsZone->isSystem = true; |
| atomsZone->setGCLastBytes(8192, GC_NORMAL); |
| |
| atomsZone.forget(); |
| this->atomsCompartment = atomsCompartment.forget(); |
| |
| if (!InitAtoms(this)) |
| return false; |
| |
| if (!InitRuntimeNumberState(this)) |
| return false; |
| |
| dtoaState = js_NewDtoaState(); |
| if (!dtoaState) |
| return false; |
| |
| dateTimeInfo.updateTimeZoneAdjustment(); |
| |
| if (!scriptDataTable.init()) |
| return false; |
| |
| if (!threadPool.init()) |
| return false; |
| |
| #ifdef JS_THREADSAFE |
| if (useHelperThreads() && !sourceCompressorThread.init()) |
| return false; |
| #endif |
| |
| if (!evalCache.init()) |
| return false; |
| |
| nativeStackBase = GetNativeStackBase(); |
| |
| jitSupportsFloatingPoint = JitSupportsFloatingPoint(); |
| return true; |
| } |
| |
| JSRuntime::~JSRuntime() |
| { |
| #ifdef JS_THREADSAFE |
| clearOwnerThread(); |
| |
| JS_ASSERT(!operationCallbackOwner); |
| if (operationCallbackLock) |
| PR_DestroyLock(operationCallbackLock); |
| #endif |
| |
| /* |
| * Even though all objects in the compartment are dead, we may have keep |
| * some filenames around because of gcKeepAtoms. |
| */ |
| FreeScriptData(this); |
| |
| #ifdef JS_THREADSAFE |
| # ifdef JS_ION |
| if (workerThreadState) |
| js_delete(workerThreadState); |
| # endif |
| sourceCompressorThread.finish(); |
| #endif |
| |
| #ifdef DEBUG |
| /* Don't hurt everyone in leaky ol' Mozilla with a fatal JS_ASSERT! */ |
| if (hasContexts()) { |
| unsigned cxcount = 0; |
| for (ContextIter acx(this); !acx.done(); acx.next()) { |
| fprintf(stderr, |
| "JS API usage error: found live context at %p\n", |
| (void *) acx.get()); |
| cxcount++; |
| } |
| fprintf(stderr, |
| "JS API usage error: %u context%s left in runtime upon JS_DestroyRuntime.\n", |
| cxcount, (cxcount == 1) ? "" : "s"); |
| } |
| #endif |
| |
| #if !ENABLE_INTL_API |
| FinishRuntimeNumberState(this); |
| #endif |
| FinishAtoms(this); |
| |
| if (dtoaState) |
| js_DestroyDtoaState(dtoaState); |
| |
| js_FinishGC(this); |
| #ifdef JS_THREADSAFE |
| if (gcLock) |
| PR_DestroyLock(gcLock); |
| #endif |
| |
| js_delete(bumpAlloc_); |
| js_delete(mathCache_); |
| #ifdef JS_ION |
| js_delete(ionRuntime_); |
| #endif |
| #if ENABLE_ASSEMBLER |
| js_delete(execAlloc_); /* Delete after ionRuntime_. */ |
| #endif |
| |
| if (ionPcScriptCache) |
| js_delete(ionPcScriptCache); |
| |
| #ifdef JSGC_GENERATIONAL |
| gcStoreBuffer.disable(); |
| gcNursery.disable(); |
| #endif |
| } |
| |
| #ifdef JS_THREADSAFE |
| void |
| JSRuntime::setOwnerThread() |
| { |
| JS_ASSERT(ownerThread_ == (void *)0xc1ea12); /* "clear" */ |
| JS_ASSERT(requestDepth == 0); |
| JS_ASSERT(js_NewRuntimeWasCalled); |
| JS_ASSERT(js::TlsPerThreadData.get() == NULL); |
| ownerThread_ = PR_GetCurrentThread(); |
| js::TlsPerThreadData.set(&mainThread); |
| nativeStackBase = GetNativeStackBase(); |
| if (nativeStackQuota) |
| JS_SetNativeStackQuota(this, nativeStackQuota); |
| #ifdef XP_MACOSX |
| asmJSMachExceptionHandler.setCurrentThread(); |
| #endif |
| } |
| |
| void |
| JSRuntime::clearOwnerThread() |
| { |
| assertValidThread(); |
| JS_ASSERT(requestDepth == 0); |
| JS_ASSERT(js_NewRuntimeWasCalled); |
| ownerThread_ = (void *)0xc1ea12; /* "clear" */ |
| js::TlsPerThreadData.set(NULL); |
| nativeStackBase = 0; |
| #if JS_STACK_GROWTH_DIRECTION > 0 |
| mainThread.nativeStackLimit = UINTPTR_MAX; |
| #else |
| mainThread.nativeStackLimit = 0; |
| #endif |
| #ifdef XP_MACOSX |
| asmJSMachExceptionHandler.clearCurrentThread(); |
| #endif |
| } |
| |
| JS_FRIEND_API(void) |
| JSRuntime::abortIfWrongThread() const |
| { |
| if (ownerThread_ != PR_GetCurrentThread()) |
| MOZ_CRASH(); |
| if (!js::TlsPerThreadData.get()->associatedWith(this)) |
| MOZ_CRASH(); |
| } |
| |
| #ifdef DEBUG |
| JS_FRIEND_API(void) |
| JSRuntime::assertValidThread() const |
| { |
| JS_ASSERT(ownerThread_ == PR_GetCurrentThread()); |
| JS_ASSERT(js::TlsPerThreadData.get()->associatedWith(this)); |
| } |
| #endif /* DEBUG */ |
| #endif /* JS_THREADSAFE */ |
| |
| JS_PUBLIC_API(JSRuntime *) |
| JS_NewRuntime(uint32_t maxbytes, JSUseHelperThreads useHelperThreads) |
| { |
| if (!js_NewRuntimeWasCalled) { |
| #ifdef DEBUG |
| /* |
| * This code asserts that the numbers associated with the error names |
| * in jsmsg.def are monotonically increasing. It uses values for the |
| * error names enumerated in jscntxt.c. It's not a compile-time check |
| * but it's better than nothing. |
| */ |
| int errorNumber = 0; |
| #define MSG_DEF(name, number, count, exception, format) \ |
| JS_ASSERT(name == errorNumber++); |
| #include "js.msg" |
| #undef MSG_DEF |
| |
| #define MSG_DEF(name, number, count, exception, format) \ |
| JS_BEGIN_MACRO \ |
| unsigned numfmtspecs = 0; \ |
| const char *fmt; \ |
| for (fmt = format; *fmt != '\0'; fmt++) { \ |
| if (*fmt == '{' && isdigit(fmt[1])) \ |
| ++numfmtspecs; \ |
| } \ |
| JS_ASSERT(count == numfmtspecs); \ |
| JS_END_MACRO; |
| #include "js.msg" |
| #undef MSG_DEF |
| #endif /* DEBUG */ |
| |
| if (!js::TlsPerThreadData.init()) |
| return NULL; |
| |
| js_NewRuntimeWasCalled = JS_TRUE; |
| } |
| |
| JSRuntime *rt = js_new<JSRuntime>(useHelperThreads); |
| if (!rt) |
| return NULL; |
| |
| #if defined(JS_ION) |
| if (!jit::InitializeIon()) |
| return NULL; |
| #endif |
| |
| if (!ForkJoinSlice::InitializeTLS()) |
| return NULL; |
| |
| if (!rt->init(maxbytes)) { |
| JS_DestroyRuntime(rt); |
| return NULL; |
| } |
| |
| return rt; |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_DestroyRuntime(JSRuntime *rt) |
| { |
| js_free(rt->defaultLocale); |
| js_delete(rt); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_ShutDown(void) |
| { |
| PRMJ_NowShutdown(); |
| } |
| |
| JS_PUBLIC_API(void *) |
| JS_GetRuntimePrivate(JSRuntime *rt) |
| { |
| return rt->data; |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetRuntimePrivate(JSRuntime *rt, void *data) |
| { |
| rt->data = data; |
| } |
| |
| #ifdef JS_THREADSAFE |
| static void |
| StartRequest(JSContext *cx) |
| { |
| JSRuntime *rt = cx->runtime(); |
| rt->assertValidThread(); |
| |
| if (rt->requestDepth) { |
| rt->requestDepth++; |
| } else { |
| /* Indicate that a request is running. */ |
| rt->requestDepth = 1; |
| |
| if (rt->activityCallback) |
| rt->activityCallback(rt->activityCallbackArg, true); |
| } |
| } |
| |
| static void |
| StopRequest(JSContext *cx) |
| { |
| JSRuntime *rt = cx->runtime(); |
| rt->assertValidThread(); |
| JS_ASSERT(rt->requestDepth != 0); |
| if (rt->requestDepth != 1) { |
| rt->requestDepth--; |
| } else { |
| rt->conservativeGC.updateForRequestEnd(); |
| rt->requestDepth = 0; |
| |
| if (rt->activityCallback) |
| rt->activityCallback(rt->activityCallbackArg, false); |
| } |
| } |
| #endif /* JS_THREADSAFE */ |
| |
| JS_PUBLIC_API(void) |
| JS_BeginRequest(JSContext *cx) |
| { |
| #ifdef JS_THREADSAFE |
| cx->outstandingRequests++; |
| StartRequest(cx); |
| #endif |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_EndRequest(JSContext *cx) |
| { |
| #ifdef JS_THREADSAFE |
| JS_ASSERT(cx->outstandingRequests != 0); |
| cx->outstandingRequests--; |
| StopRequest(cx); |
| #endif |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_IsInRequest(JSRuntime *rt) |
| { |
| #ifdef JS_THREADSAFE |
| rt->assertValidThread(); |
| return rt->requestDepth != 0; |
| #else |
| return false; |
| #endif |
| } |
| |
| JS_PUBLIC_API(JSContextCallback) |
| JS_SetContextCallback(JSRuntime *rt, JSContextCallback cxCallback) |
| { |
| JSContextCallback old; |
| |
| old = rt->cxCallback; |
| rt->cxCallback = cxCallback; |
| return old; |
| } |
| |
| JS_PUBLIC_API(JSContext *) |
| JS_NewContext(JSRuntime *rt, size_t stackChunkSize) |
| { |
| return NewContext(rt, stackChunkSize); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_DestroyContext(JSContext *cx) |
| { |
| JS_ASSERT(!cx->compartment()); |
| DestroyContext(cx, DCM_FORCE_GC); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_DestroyContextNoGC(JSContext *cx) |
| { |
| JS_ASSERT(!cx->compartment()); |
| DestroyContext(cx, DCM_NO_GC); |
| } |
| |
| JS_PUBLIC_API(void *) |
| JS_GetContextPrivate(JSContext *cx) |
| { |
| return cx->data; |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetContextPrivate(JSContext *cx, void *data) |
| { |
| cx->data = data; |
| } |
| |
| JS_PUBLIC_API(void *) |
| JS_GetSecondContextPrivate(JSContext *cx) |
| { |
| return cx->data2; |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetSecondContextPrivate(JSContext *cx, void *data) |
| { |
| cx->data2 = data; |
| } |
| |
| JS_PUBLIC_API(JSRuntime *) |
| JS_GetRuntime(JSContext *cx) |
| { |
| return cx->runtime(); |
| } |
| |
| JS_PUBLIC_API(JSContext *) |
| JS_ContextIterator(JSRuntime *rt, JSContext **iterp) |
| { |
| JSContext *cx = *iterp; |
| cx = cx ? cx->getNext() : rt->contextList.getFirst(); |
| *iterp = cx; |
| return cx; |
| } |
| |
| JS_PUBLIC_API(JSVersion) |
| JS_GetVersion(JSContext *cx) |
| { |
| return VersionNumber(cx->findVersion()); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetVersionForCompartment(JSCompartment *compartment, JSVersion version) |
| { |
| compartment->options().setVersion(version); |
| } |
| |
| static struct v2smap { |
| JSVersion version; |
| const char *string; |
| } v2smap[] = { |
| {JSVERSION_ECMA_3, "ECMAv3"}, |
| {JSVERSION_1_6, "1.6"}, |
| {JSVERSION_1_7, "1.7"}, |
| {JSVERSION_1_8, "1.8"}, |
| {JSVERSION_ECMA_5, "ECMAv5"}, |
| {JSVERSION_DEFAULT, js_default_str}, |
| {JSVERSION_DEFAULT, "1.0"}, |
| {JSVERSION_DEFAULT, "1.1"}, |
| {JSVERSION_DEFAULT, "1.2"}, |
| {JSVERSION_DEFAULT, "1.3"}, |
| {JSVERSION_DEFAULT, "1.4"}, |
| {JSVERSION_DEFAULT, "1.5"}, |
| {JSVERSION_UNKNOWN, NULL}, /* must be last, NULL is sentinel */ |
| }; |
| |
| JS_PUBLIC_API(const char *) |
| JS_VersionToString(JSVersion version) |
| { |
| int i; |
| |
| for (i = 0; v2smap[i].string; i++) |
| if (v2smap[i].version == version) |
| return v2smap[i].string; |
| return "unknown"; |
| } |
| |
| JS_PUBLIC_API(JSVersion) |
| JS_StringToVersion(const char *string) |
| { |
| int i; |
| |
| for (i = 0; v2smap[i].string; i++) |
| if (strcmp(v2smap[i].string, string) == 0) |
| return v2smap[i].version; |
| return JSVERSION_UNKNOWN; |
| } |
| |
| JS_PUBLIC_API(uint32_t) |
| JS_GetOptions(JSContext *cx) |
| { |
| /* |
| * Can't check option/version synchronization here. |
| * We may have been synchronized with a script version that was formerly on |
| * the stack, but has now been popped. |
| */ |
| return cx->options(); |
| } |
| |
| static unsigned |
| SetOptionsCommon(JSContext *cx, unsigned options) |
| { |
| JS_ASSERT((options & JSOPTION_MASK) == options); |
| unsigned oldopts = cx->options(); |
| unsigned newopts = options & JSOPTION_MASK; |
| cx->setOptions(newopts); |
| cx->updateJITEnabled(); |
| return oldopts; |
| } |
| |
| JS_PUBLIC_API(uint32_t) |
| JS_SetOptions(JSContext *cx, uint32_t options) |
| { |
| return SetOptionsCommon(cx, options); |
| } |
| |
| JS_PUBLIC_API(uint32_t) |
| JS_ToggleOptions(JSContext *cx, uint32_t options) |
| { |
| unsigned oldopts = cx->options(); |
| unsigned newopts = oldopts ^ options; |
| return SetOptionsCommon(cx, newopts); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetJitHardening(JSRuntime *rt, JSBool enabled) |
| { |
| rt->setJitHardening(!!enabled); |
| } |
| |
| JS_PUBLIC_API(const char *) |
| JS_GetImplementationVersion(void) |
| { |
| return "JavaScript-C" MOZILLA_VERSION; |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetDestroyCompartmentCallback(JSRuntime *rt, JSDestroyCompartmentCallback callback) |
| { |
| rt->destroyCompartmentCallback = callback; |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetDestroyZoneCallback(JSRuntime *rt, JSZoneCallback callback) |
| { |
| rt->destroyZoneCallback = callback; |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetSweepZoneCallback(JSRuntime *rt, JSZoneCallback callback) |
| { |
| rt->sweepZoneCallback = callback; |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetCompartmentNameCallback(JSRuntime *rt, JSCompartmentNameCallback callback) |
| { |
| rt->compartmentNameCallback = callback; |
| } |
| |
| JS_PUBLIC_API(JSWrapObjectCallback) |
| JS_SetWrapObjectCallbacks(JSRuntime *rt, |
| JSWrapObjectCallback callback, |
| JSSameCompartmentWrapObjectCallback sccallback, |
| JSPreWrapCallback precallback) |
| { |
| JSWrapObjectCallback old = rt->wrapObjectCallback; |
| rt->wrapObjectCallback = callback; |
| rt->sameCompartmentWrapObjectCallback = sccallback; |
| rt->preWrapObjectCallback = precallback; |
| return old; |
| } |
| |
| JS_PUBLIC_API(JSCompartment *) |
| JS_EnterCompartment(JSContext *cx, JSObject *target) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| |
| JSCompartment *oldCompartment = cx->compartment(); |
| cx->enterCompartment(target->compartment()); |
| return oldCompartment; |
| } |
| |
| JS_PUBLIC_API(JSCompartment *) |
| JS_EnterCompartmentOfScript(JSContext *cx, JSScript *target) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| GlobalObject &global = target->global(); |
| return JS_EnterCompartment(cx, &global); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_LeaveCompartment(JSContext *cx, JSCompartment *oldCompartment) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| cx->leaveCompartment(oldCompartment); |
| } |
| |
| JSAutoCompartment::JSAutoCompartment(JSContext *cx, JSObject *target) |
| : cx_(cx), |
| oldCompartment_(cx->compartment()) |
| { |
| AssertHeapIsIdleOrIterating(cx_); |
| cx_->enterCompartment(target->compartment()); |
| } |
| |
| JSAutoCompartment::JSAutoCompartment(JSContext *cx, JSScript *target) |
| : cx_(cx), |
| oldCompartment_(cx->compartment()) |
| { |
| AssertHeapIsIdleOrIterating(cx_); |
| cx_->enterCompartment(target->compartment()); |
| } |
| |
| JSAutoCompartment::~JSAutoCompartment() |
| { |
| cx_->leaveCompartment(oldCompartment_); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetCompartmentPrivate(JSCompartment *compartment, void *data) |
| { |
| compartment->data = data; |
| } |
| |
| JS_PUBLIC_API(void *) |
| JS_GetCompartmentPrivate(JSCompartment *compartment) |
| { |
| return compartment->data; |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetZoneUserData(JS::Zone *zone, void *data) |
| { |
| zone->data = data; |
| } |
| |
| JS_PUBLIC_API(void *) |
| JS_GetZoneUserData(JS::Zone *zone) |
| { |
| return zone->data; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_WrapObject(JSContext *cx, JSObject **objp) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| if (*objp) |
| JS::ExposeGCThingToActiveJS(*objp, JSTRACE_OBJECT); |
| return cx->compartment()->wrap(cx, objp); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_WrapValue(JSContext *cx, jsval *vp) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| if (vp) |
| JS::ExposeValueToActiveJS(*vp); |
| RootedValue value(cx, *vp); |
| bool ok = cx->compartment()->wrap(cx, &value); |
| *vp = value.get(); |
| return ok; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_WrapId(JSContext *cx, jsid *idp) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| if (idp) { |
| jsid id = *idp; |
| if (JSID_IS_STRING(id)) |
| JS::ExposeGCThingToActiveJS(JSID_TO_STRING(id), JSTRACE_STRING); |
| else if (JSID_IS_OBJECT(id)) |
| JS::ExposeGCThingToActiveJS(JSID_TO_OBJECT(id), JSTRACE_OBJECT); |
| } |
| return cx->compartment()->wrapId(cx, idp); |
| } |
| |
| /* |
| * Identity remapping. Not for casual consumers. |
| * |
| * Normally, an object's contents and its identity are inextricably linked. |
| * Identity is determined by the address of the JSObject* in the heap, and |
| * the contents are what is located at that address. Transplanting allows these |
| * concepts to be separated through a combination of swapping (exchanging the |
| * contents of two same-compartment objects) and remapping cross-compartment |
| * identities by altering wrappers. |
| * |
| * The |origobj| argument should be the object whose identity needs to be |
| * remapped, usually to another compartment. The contents of |origobj| are |
| * destroyed. |
| * |
| * The |target| argument serves two purposes: |
| * |
| * First, |target| serves as a hint for the new identity of the object. The new |
| * identity object will always be in the same compartment as |target|, but |
| * if that compartment already had an object representing |origobj| (either a |
| * cross-compartment wrapper for it, or |origobj| itself if the two arguments |
| * are same-compartment), the existing object is used. Otherwise, |target| |
| * itself is used. To avoid ambiguity, JS_TransplantObject always returns the |
| * new identity. |
| * |
| * Second, the new identity object's contents will be those of |target|. A swap() |
| * is used to make this happen if an object other than |target| is used. |
| * |
| * We don't have a good way to recover from failure in this function, so |
| * we intentionally crash instead. |
| */ |
| |
| JS_PUBLIC_API(JSObject *) |
| JS_TransplantObject(JSContext *cx, HandleObject origobj, HandleObject target) |
| { |
| AssertHeapIsIdle(cx); |
| JS_ASSERT(origobj != target); |
| JS_ASSERT(!IsCrossCompartmentWrapper(origobj)); |
| JS_ASSERT(!IsCrossCompartmentWrapper(target)); |
| |
| AutoMaybeTouchDeadZones agc(cx); |
| AutoDisableProxyCheck adpc(cx->runtime()); |
| |
| JSCompartment *destination = target->compartment(); |
| RootedValue origv(cx, ObjectValue(*origobj)); |
| RootedObject newIdentity(cx); |
| |
| if (origobj->compartment() == destination) { |
| // If the original object is in the same compartment as the |
| // destination, then we know that we won't find a wrapper in the |
| // destination's cross compartment map and that the same |
| // object will continue to work. |
| if (!JSObject::swap(cx, origobj, target)) |
| MOZ_CRASH(); |
| newIdentity = origobj; |
| } else if (WrapperMap::Ptr p = destination->lookupWrapper(origv)) { |
| // There might already be a wrapper for the original object in |
| // the new compartment. If there is, we use its identity and swap |
| // in the contents of |target|. |
| newIdentity = &p->value.toObject(); |
| |
| // When we remove origv from the wrapper map, its wrapper, newIdentity, |
| // must immediately cease to be a cross-compartment wrapper. Neuter it. |
| destination->removeWrapper(p); |
| NukeCrossCompartmentWrapper(cx, newIdentity); |
| |
| if (!JSObject::swap(cx, newIdentity, target)) |
| MOZ_CRASH(); |
| } else { |
| // Otherwise, we use |target| for the new identity object. |
| newIdentity = target; |
| } |
| |
| // Now, iterate through other scopes looking for references to the |
| // old object, and update the relevant cross-compartment wrappers. |
| if (!RemapAllWrappersForObject(cx, origobj, newIdentity)) |
| MOZ_CRASH(); |
| |
| // Lastly, update the original object to point to the new one. |
| if (origobj->compartment() != destination) { |
| RootedObject newIdentityWrapper(cx, newIdentity); |
| AutoCompartment ac(cx, origobj); |
| if (!JS_WrapObject(cx, newIdentityWrapper.address())) |
| MOZ_CRASH(); |
| JS_ASSERT(Wrapper::wrappedObject(newIdentityWrapper) == newIdentity); |
| if (!JSObject::swap(cx, origobj, newIdentityWrapper)) |
| MOZ_CRASH(); |
| origobj->compartment()->putWrapper(ObjectValue(*newIdentity), origv); |
| } |
| |
| // The new identity object might be one of several things. Return it to avoid |
| // ambiguity. |
| return newIdentity; |
| } |
| |
| /* |
| * Recompute all cross-compartment wrappers for an object, resetting state. |
| * Gecko uses this to clear Xray wrappers when doing a navigation that reuses |
| * the inner window and global object. |
| */ |
| JS_PUBLIC_API(JSBool) |
| JS_RefreshCrossCompartmentWrappers(JSContext *cx, JSObject *objArg) |
| { |
| RootedObject obj(cx, objArg); |
| return RemapAllWrappersForObject(cx, obj, obj); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetGlobalObject(JSContext *cx, JSObject *obj) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| |
| cx->setDefaultCompartmentObject(obj); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_InitStandardClasses(JSContext *cx, JSObject *objArg) |
| { |
| RootedObject obj(cx, objArg); |
| JS_THREADSAFE_ASSERT(cx->compartment() != cx->runtime()->atomsCompartment); |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| |
| cx->setDefaultCompartmentObjectIfUnset(obj); |
| assertSameCompartment(cx, obj); |
| |
| Rooted<GlobalObject*> global(cx, &obj->global()); |
| return GlobalObject::initStandardClasses(cx, global); |
| } |
| |
| #define CLASP(name) (&name##Class) |
| #define OCLASP(name) (&name##Object::class_) |
| #define TYPED_ARRAY_CLASP(type) (&TypedArray::classes[TypedArray::type]) |
| #define EAGER_ATOM(name) NAME_OFFSET(name) |
| #define EAGER_CLASS_ATOM(name) NAME_OFFSET(name) |
| #define EAGER_ATOM_AND_CLASP(name) EAGER_CLASS_ATOM(name), CLASP(name) |
| #define EAGER_ATOM_AND_OCLASP(name) EAGER_CLASS_ATOM(name), OCLASP(name) |
| |
| typedef struct JSStdName { |
| JSClassInitializerOp init; |
| size_t atomOffset; /* offset of atom pointer in JSAtomState */ |
| Class *clasp; |
| } JSStdName; |
| |
| static Handle<PropertyName*> |
| StdNameToPropertyName(JSContext *cx, const JSStdName *stdn) |
| { |
| return OFFSET_TO_NAME(cx->runtime(), stdn->atomOffset); |
| } |
| |
| /* |
| * Table of class initializers and their atom offsets in rt->atomState. |
| * If you add a "standard" class, remember to update this table. |
| */ |
| static const JSStdName standard_class_atoms[] = { |
| {js_InitFunctionClass, EAGER_CLASS_ATOM(Function), &JSFunction::class_}, |
| {js_InitObjectClass, EAGER_ATOM_AND_CLASP(Object)}, |
| {js_InitArrayClass, EAGER_ATOM_AND_CLASP(Array)}, |
| {js_InitBooleanClass, EAGER_ATOM_AND_OCLASP(Boolean)}, |
| {js_InitDateClass, EAGER_ATOM_AND_CLASP(Date)}, |
| {js_InitMathClass, EAGER_ATOM_AND_CLASP(Math)}, |
| {js_InitNumberClass, EAGER_ATOM_AND_OCLASP(Number)}, |
| {js_InitStringClass, EAGER_ATOM_AND_OCLASP(String)}, |
| {js_InitExceptionClasses, EAGER_ATOM_AND_CLASP(Error)}, |
| {js_InitRegExpClass, EAGER_ATOM_AND_OCLASP(RegExp)}, |
| #if JS_HAS_GENERATORS |
| {js_InitIteratorClasses, EAGER_ATOM_AND_OCLASP(StopIteration)}, |
| #endif |
| {js_InitJSONClass, EAGER_ATOM_AND_CLASP(JSON)}, |
| {js_InitTypedArrayClasses, EAGER_CLASS_ATOM(ArrayBuffer), &js::ArrayBufferObject::protoClass}, |
| {js_InitWeakMapClass, EAGER_ATOM_AND_OCLASP(WeakMap)}, |
| {js_InitMapClass, EAGER_ATOM_AND_OCLASP(Map)}, |
| {js_InitSetClass, EAGER_ATOM_AND_OCLASP(Set)}, |
| #ifdef ENABLE_PARALLEL_JS |
| {js_InitParallelArrayClass, EAGER_ATOM_AND_OCLASP(ParallelArray)}, |
| #endif |
| {js_InitProxyClass, EAGER_ATOM_AND_CLASP(Proxy)}, |
| #if ENABLE_INTL_API |
| {js_InitIntlClass, EAGER_ATOM_AND_CLASP(Intl)}, |
| #endif |
| {NULL, 0, NULL} |
| }; |
| |
| /* |
| * Table of top-level function and constant names and their init functions. |
| * If you add a "standard" global function or property, remember to update |
| * this table. |
| */ |
| static const JSStdName standard_class_names[] = { |
| {js_InitObjectClass, EAGER_ATOM(eval), CLASP(Object)}, |
| |
| /* Global properties and functions defined by the Number class. */ |
| {js_InitNumberClass, EAGER_ATOM(NaN), OCLASP(Number)}, |
| {js_InitNumberClass, EAGER_ATOM(Infinity), OCLASP(Number)}, |
| {js_InitNumberClass, EAGER_ATOM(isNaN), OCLASP(Number)}, |
| {js_InitNumberClass, EAGER_ATOM(isFinite), OCLASP(Number)}, |
| {js_InitNumberClass, EAGER_ATOM(parseFloat), OCLASP(Number)}, |
| {js_InitNumberClass, EAGER_ATOM(parseInt), OCLASP(Number)}, |
| |
| /* String global functions. */ |
| {js_InitStringClass, EAGER_ATOM(escape), OCLASP(String)}, |
| {js_InitStringClass, EAGER_ATOM(unescape), OCLASP(String)}, |
| {js_InitStringClass, EAGER_ATOM(decodeURI), OCLASP(String)}, |
| {js_InitStringClass, EAGER_ATOM(encodeURI), OCLASP(String)}, |
| {js_InitStringClass, EAGER_ATOM(decodeURIComponent), OCLASP(String)}, |
| {js_InitStringClass, EAGER_ATOM(encodeURIComponent), OCLASP(String)}, |
| #if JS_HAS_UNEVAL |
| {js_InitStringClass, EAGER_ATOM(uneval), OCLASP(String)}, |
| #endif |
| |
| /* Exception constructors. */ |
| {js_InitExceptionClasses, EAGER_CLASS_ATOM(Error), CLASP(Error)}, |
| {js_InitExceptionClasses, EAGER_CLASS_ATOM(InternalError), CLASP(Error)}, |
| {js_InitExceptionClasses, EAGER_CLASS_ATOM(EvalError), CLASP(Error)}, |
| {js_InitExceptionClasses, EAGER_CLASS_ATOM(RangeError), CLASP(Error)}, |
| {js_InitExceptionClasses, EAGER_CLASS_ATOM(ReferenceError), CLASP(Error)}, |
| {js_InitExceptionClasses, EAGER_CLASS_ATOM(SyntaxError), CLASP(Error)}, |
| {js_InitExceptionClasses, EAGER_CLASS_ATOM(TypeError), CLASP(Error)}, |
| {js_InitExceptionClasses, EAGER_CLASS_ATOM(URIError), CLASP(Error)}, |
| |
| {js_InitIteratorClasses, EAGER_CLASS_ATOM(Iterator), &PropertyIteratorObject::class_}, |
| |
| /* Typed Arrays */ |
| {js_InitTypedArrayClasses, EAGER_CLASS_ATOM(ArrayBuffer), &ArrayBufferObject::class_}, |
| {js_InitTypedArrayClasses, EAGER_CLASS_ATOM(Int8Array), TYPED_ARRAY_CLASP(TYPE_INT8)}, |
| {js_InitTypedArrayClasses, EAGER_CLASS_ATOM(Uint8Array), TYPED_ARRAY_CLASP(TYPE_UINT8)}, |
| {js_InitTypedArrayClasses, EAGER_CLASS_ATOM(Int16Array), TYPED_ARRAY_CLASP(TYPE_INT16)}, |
| {js_InitTypedArrayClasses, EAGER_CLASS_ATOM(Uint16Array), TYPED_ARRAY_CLASP(TYPE_UINT16)}, |
| {js_InitTypedArrayClasses, EAGER_CLASS_ATOM(Int32Array), TYPED_ARRAY_CLASP(TYPE_INT32)}, |
| {js_InitTypedArrayClasses, EAGER_CLASS_ATOM(Uint32Array), TYPED_ARRAY_CLASP(TYPE_UINT32)}, |
| {js_InitTypedArrayClasses, EAGER_CLASS_ATOM(Float32Array), TYPED_ARRAY_CLASP(TYPE_FLOAT32)}, |
| {js_InitTypedArrayClasses, EAGER_CLASS_ATOM(Float64Array), TYPED_ARRAY_CLASP(TYPE_FLOAT64)}, |
| {js_InitTypedArrayClasses, EAGER_CLASS_ATOM(Uint8ClampedArray), |
| TYPED_ARRAY_CLASP(TYPE_UINT8_CLAMPED)}, |
| {js_InitTypedArrayClasses, EAGER_CLASS_ATOM(DataView), &DataViewObject::class_}, |
| |
| {NULL, 0, NULL} |
| }; |
| |
| static const JSStdName object_prototype_names[] = { |
| /* Object.prototype properties (global delegates to Object.prototype). */ |
| {js_InitObjectClass, EAGER_ATOM(proto), CLASP(Object)}, |
| #if JS_HAS_TOSOURCE |
| {js_InitObjectClass, EAGER_ATOM(toSource), CLASP(Object)}, |
| #endif |
| {js_InitObjectClass, EAGER_ATOM(toString), CLASP(Object)}, |
| {js_InitObjectClass, EAGER_ATOM(toLocaleString), CLASP(Object)}, |
| {js_InitObjectClass, EAGER_ATOM(valueOf), CLASP(Object)}, |
| #if JS_HAS_OBJ_WATCHPOINT |
| {js_InitObjectClass, EAGER_ATOM(watch), CLASP(Object)}, |
| {js_InitObjectClass, EAGER_ATOM(unwatch), CLASP(Object)}, |
| #endif |
| {js_InitObjectClass, EAGER_ATOM(hasOwnProperty), CLASP(Object)}, |
| {js_InitObjectClass, EAGER_ATOM(isPrototypeOf), CLASP(Object)}, |
| {js_InitObjectClass, EAGER_ATOM(propertyIsEnumerable), CLASP(Object)}, |
| #if OLD_GETTER_SETTER_METHODS |
| {js_InitObjectClass, EAGER_ATOM(defineGetter), CLASP(Object)}, |
| {js_InitObjectClass, EAGER_ATOM(defineSetter), CLASP(Object)}, |
| {js_InitObjectClass, EAGER_ATOM(lookupGetter), CLASP(Object)}, |
| {js_InitObjectClass, EAGER_ATOM(lookupSetter), CLASP(Object)}, |
| #endif |
| |
| {NULL, 0, NULL} |
| }; |
| |
| #undef CLASP |
| #undef TYPED_ARRAY_CLASP |
| #undef EAGER_ATOM |
| #undef EAGER_CLASS_ATOM |
| #undef EAGER_ATOM_AND_CLASP |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ResolveStandardClass(JSContext *cx, HandleObject obj, HandleId id, JSBool *resolved) |
| { |
| JSRuntime *rt; |
| JSAtom *atom; |
| const JSStdName *stdnm; |
| unsigned i; |
| |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, obj, id); |
| *resolved = false; |
| |
| rt = cx->runtime(); |
| if (!rt->hasContexts() || !JSID_IS_ATOM(id)) |
| return true; |
| |
| RootedString idstr(cx, JSID_TO_STRING(id)); |
| |
| /* Check whether we're resolving 'undefined', and define it if so. */ |
| atom = rt->atomState.undefined; |
| if (idstr == atom) { |
| *resolved = true; |
| RootedValue undefinedValue(cx, UndefinedValue()); |
| return JSObject::defineProperty(cx, obj, atom->asPropertyName(), undefinedValue, |
| JS_PropertyStub, JS_StrictPropertyStub, |
| JSPROP_PERMANENT | JSPROP_READONLY); |
| } |
| |
| /* Try for class constructors/prototypes named by well-known atoms. */ |
| stdnm = NULL; |
| for (i = 0; standard_class_atoms[i].init; i++) { |
| JS_ASSERT(standard_class_atoms[i].clasp); |
| atom = OFFSET_TO_NAME(rt, standard_class_atoms[i].atomOffset); |
| if (idstr == atom) { |
| stdnm = &standard_class_atoms[i]; |
| break; |
| } |
| } |
| |
| if (!stdnm) { |
| /* Try less frequently used top-level functions and constants. */ |
| for (i = 0; standard_class_names[i].init; i++) { |
| JS_ASSERT(standard_class_names[i].clasp); |
| atom = StdNameToPropertyName(cx, &standard_class_names[i]); |
| if (!atom) |
| return false; |
| if (idstr == atom) { |
| stdnm = &standard_class_names[i]; |
| break; |
| } |
| } |
| |
| RootedObject proto(cx); |
| if (!JSObject::getProto(cx, obj, &proto)) |
| return false; |
| if (!stdnm && !proto) { |
| /* |
| * Try even less frequently used names delegated from the global |
| * object to Object.prototype, but only if the Object class hasn't |
| * yet been initialized. |
| */ |
| for (i = 0; object_prototype_names[i].init; i++) { |
| JS_ASSERT(object_prototype_names[i].clasp); |
| atom = StdNameToPropertyName(cx, &object_prototype_names[i]); |
| if (!atom) |
| return false; |
| if (idstr == atom) { |
| stdnm = &object_prototype_names[i]; |
| break; |
| } |
| } |
| } |
| } |
| |
| if (stdnm) { |
| /* |
| * If this standard class is anonymous, then we don't want to resolve |
| * by name. |
| */ |
| JS_ASSERT(obj->is<GlobalObject>()); |
| if (stdnm->clasp->flags & JSCLASS_IS_ANONYMOUS) |
| return true; |
| |
| if (IsStandardClassResolved(obj, stdnm->clasp)) |
| return true; |
| |
| if (!stdnm->init(cx, obj)) |
| return false; |
| *resolved = true; |
| } |
| return true; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_EnumerateStandardClasses(JSContext *cx, HandleObject obj) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, obj); |
| |
| /* |
| * Check whether we need to bind 'undefined' and define it if so. |
| * Since ES5 15.1.1.3 undefined can't be deleted. |
| */ |
| HandlePropertyName undefinedName = cx->names().undefined; |
| RootedValue undefinedValue(cx, UndefinedValue()); |
| if (!obj->nativeContains(cx, undefinedName) && |
| !JSObject::defineProperty(cx, obj, undefinedName, undefinedValue, |
| JS_PropertyStub, JS_StrictPropertyStub, |
| JSPROP_PERMANENT | JSPROP_READONLY)) { |
| return false; |
| } |
| |
| /* Initialize any classes that have not been initialized yet. */ |
| for (unsigned i = 0; standard_class_atoms[i].init; i++) { |
| const JSStdName &stdnm = standard_class_atoms[i]; |
| if (!js::IsStandardClassResolved(obj, stdnm.clasp)) { |
| if (!stdnm.init(cx, obj)) |
| return false; |
| } |
| } |
| |
| return true; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_GetClassObject(JSContext *cx, JSObject *obj, JSProtoKey key, JSObject **objpArg) |
| { |
| RootedObject objp(cx, *objpArg); |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| |
| assertSameCompartment(cx, obj); |
| if (!js_GetClassObject(cx, obj, key, &objp)) |
| return false; |
| *objpArg = objp; |
| return true; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_GetClassPrototype(JSContext *cx, JSProtoKey key, JSObject **objp_) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| |
| RootedObject objp(cx); |
| bool result = js_GetClassPrototype(cx, key, &objp); |
| *objp_ = objp; |
| return result; |
| } |
| |
| JS_PUBLIC_API(JSProtoKey) |
| JS_IdentifyClassPrototype(JSContext *cx, JSObject *obj) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, obj); |
| JS_ASSERT(!IsCrossCompartmentWrapper(obj)); |
| return js_IdentifyClassPrototype(obj); |
| } |
| |
| JS_PUBLIC_API(JSObject *) |
| JS_GetObjectPrototype(JSContext *cx, JSObject *forObj) |
| { |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, forObj); |
| return forObj->global().getOrCreateObjectPrototype(cx); |
| } |
| |
| JS_PUBLIC_API(JSObject *) |
| JS_GetFunctionPrototype(JSContext *cx, JSObject *forObj) |
| { |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, forObj); |
| return forObj->global().getOrCreateFunctionPrototype(cx); |
| } |
| |
| JS_PUBLIC_API(JSObject *) |
| JS_GetArrayPrototype(JSContext *cx, JSObject *forObj) |
| { |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, forObj); |
| return forObj->global().getOrCreateArrayPrototype(cx); |
| } |
| |
| JS_PUBLIC_API(JSObject *) |
| JS_GetGlobalForObject(JSContext *cx, JSObject *obj) |
| { |
| AssertHeapIsIdle(cx); |
| assertSameCompartment(cx, obj); |
| return &obj->global(); |
| } |
| |
| extern JS_PUBLIC_API(JSBool) |
| JS_IsGlobalObject(JSObject *obj) |
| { |
| return obj->is<GlobalObject>(); |
| } |
| |
| JS_PUBLIC_API(JSObject *) |
| JS_GetGlobalForCompartmentOrNull(JSContext *cx, JSCompartment *c) |
| { |
| AssertHeapIsIdleOrIterating(cx); |
| assertSameCompartment(cx, c); |
| return c->maybeGlobal(); |
| } |
| |
| JS_PUBLIC_API(JSObject *) |
| JS_GetGlobalForScopeChain(JSContext *cx) |
| { |
| AssertHeapIsIdleOrIterating(cx); |
| CHECK_REQUEST(cx); |
| if (!cx->compartment()) |
| return NULL; |
| return cx->global(); |
| } |
| |
| JS_PUBLIC_API(jsval) |
| JS_ComputeThis(JSContext *cx, jsval *vp) |
| { |
| AssertHeapIsIdle(cx); |
| assertSameCompartment(cx, JSValueArray(vp, 2)); |
| CallReceiver call = CallReceiverFromVp(vp); |
| if (!BoxNonStrictThis(cx, call)) |
| return JSVAL_NULL; |
| return call.thisv(); |
| } |
| |
| JS_PUBLIC_API(void *) |
| JS_malloc(JSContext *cx, size_t nbytes) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| return cx->malloc_(nbytes); |
| } |
| |
| JS_PUBLIC_API(void *) |
| JS_realloc(JSContext *cx, void *p, size_t nbytes) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| return cx->realloc_(p, nbytes); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_free(JSContext *cx, void *p) |
| { |
| return js_free(p); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_freeop(JSFreeOp *fop, void *p) |
| { |
| return FreeOp::get(fop)->free_(p); |
| } |
| |
| JS_PUBLIC_API(JSFreeOp *) |
| JS_GetDefaultFreeOp(JSRuntime *rt) |
| { |
| return rt->defaultFreeOp(); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_updateMallocCounter(JSContext *cx, size_t nbytes) |
| { |
| return cx->runtime()->updateMallocCounter(cx->zone(), nbytes); |
| } |
| |
| JS_PUBLIC_API(char *) |
| JS_strdup(JSContext *cx, const char *s) |
| { |
| AssertHeapIsIdle(cx); |
| size_t n = strlen(s) + 1; |
| void *p = cx->malloc_(n); |
| if (!p) |
| return NULL; |
| return (char *)js_memcpy(p, s, n); |
| } |
| |
| JS_PUBLIC_API(char *) |
| JS_strdup(JSRuntime *rt, const char *s) |
| { |
| AssertHeapIsIdle(rt); |
| size_t n = strlen(s) + 1; |
| void *p = rt->malloc_(n); |
| if (!p) |
| return NULL; |
| return static_cast<char*>(js_memcpy(p, s, n)); |
| } |
| |
| #undef JS_AddRoot |
| |
| JS_PUBLIC_API(JSBool) |
| JS_AddValueRoot(JSContext *cx, jsval *vp) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| return AddValueRoot(cx, vp, NULL); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_AddStringRoot(JSContext *cx, JSString **rp) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| return AddStringRoot(cx, rp, NULL); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_AddObjectRoot(JSContext *cx, JSObject **rp) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| return AddObjectRoot(cx, rp, NULL); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_AddNamedValueRoot(JSContext *cx, jsval *vp, const char *name) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| return AddValueRoot(cx, vp, name); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_AddNamedValueRootRT(JSRuntime *rt, jsval *vp, const char *name) |
| { |
| return AddValueRootRT(rt, vp, name); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_AddNamedStringRoot(JSContext *cx, JSString **rp, const char *name) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| return AddStringRoot(cx, rp, name); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_AddNamedObjectRoot(JSContext *cx, JSObject **rp, const char *name) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| return AddObjectRoot(cx, rp, name); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_AddNamedScriptRoot(JSContext *cx, JSScript **rp, const char *name) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| return AddScriptRoot(cx, rp, name); |
| } |
| |
| /* We allow unrooting from finalizers within the GC */ |
| |
| JS_PUBLIC_API(void) |
| JS_RemoveValueRoot(JSContext *cx, jsval *vp) |
| { |
| CHECK_REQUEST(cx); |
| js_RemoveRoot(cx->runtime(), (void *)vp); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_RemoveStringRoot(JSContext *cx, JSString **rp) |
| { |
| CHECK_REQUEST(cx); |
| js_RemoveRoot(cx->runtime(), (void *)rp); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_RemoveObjectRoot(JSContext *cx, JSObject **rp) |
| { |
| CHECK_REQUEST(cx); |
| js_RemoveRoot(cx->runtime(), (void *)rp); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_RemoveScriptRoot(JSContext *cx, JSScript **rp) |
| { |
| CHECK_REQUEST(cx); |
| js_RemoveRoot(cx->runtime(), (void *)rp); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_RemoveValueRootRT(JSRuntime *rt, jsval *vp) |
| { |
| js_RemoveRoot(rt, (void *)vp); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_RemoveStringRootRT(JSRuntime *rt, JSString **rp) |
| { |
| js_RemoveRoot(rt, (void *)rp); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_RemoveObjectRootRT(JSRuntime *rt, JSObject **rp) |
| { |
| js_RemoveRoot(rt, (void *)rp); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_RemoveScriptRootRT(JSRuntime *rt, JSScript **rp) |
| { |
| js_RemoveRoot(rt, (void *)rp); |
| } |
| |
| JS_NEVER_INLINE JS_PUBLIC_API(void) |
| JS_AnchorPtr(void *p) |
| { |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_AddExtraGCRootsTracer(JSRuntime *rt, JSTraceDataOp traceOp, void *data) |
| { |
| AssertHeapIsIdle(rt); |
| return !!rt->gcBlackRootTracers.append(JSRuntime::ExtraTracer(traceOp, data)); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_RemoveExtraGCRootsTracer(JSRuntime *rt, JSTraceDataOp traceOp, void *data) |
| { |
| AssertHeapIsIdle(rt); |
| for (size_t i = 0; i < rt->gcBlackRootTracers.length(); i++) { |
| JSRuntime::ExtraTracer *e = &rt->gcBlackRootTracers[i]; |
| if (e->op == traceOp && e->data == data) { |
| rt->gcBlackRootTracers.erase(e); |
| break; |
| } |
| } |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_CallValueTracer(JSTracer *trc, Value *valuep, const char *name) |
| { |
| MarkValueUnbarriered(trc, valuep, name); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_CallIdTracer(JSTracer *trc, jsid *idp, const char *name) |
| { |
| MarkIdUnbarriered(trc, idp, name); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_CallObjectTracer(JSTracer *trc, JSObject **objp, const char *name) |
| { |
| MarkObjectUnbarriered(trc, objp, name); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_CallMaskedObjectTracer(JSTracer *trc, uintptr_t *objp, uintptr_t flagMask, const char *name) |
| { |
| uintptr_t flags = *objp & flagMask; |
| JSObject *obj = reinterpret_cast<JSObject *>(*objp & ~flagMask); |
| if (!obj) |
| return; |
| |
| JS_SET_TRACING_LOCATION(trc, (void*)objp); |
| MarkObjectUnbarriered(trc, &obj, name); |
| |
| *objp = uintptr_t(obj) | flags; |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_CallStringTracer(JSTracer *trc, JSString **strp, const char *name) |
| { |
| MarkStringUnbarriered(trc, strp, name); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_CallScriptTracer(JSTracer *trc, JSScript **scriptp, const char *name) |
| { |
| MarkScriptUnbarriered(trc, scriptp, name); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_CallGenericTracer(JSTracer *trc, void *gcthingArg, const char *name) |
| { |
| void *gcthing = gcthingArg; |
| JSGCTraceKind kind = gc::GetGCThingTraceKind(gcthing); |
| JS_SET_TRACING_NAME(trc, name); |
| MarkKind(trc, &gcthing, kind); |
| JS_ASSERT(gcthing == gcthingArg); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_CallHeapValueTracer(JSTracer *trc, JS::Heap<JS::Value> *valuep, const char *name) |
| { |
| MarkValueUnbarriered(trc, valuep->unsafeGet(), name); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_CallHeapIdTracer(JSTracer *trc, JS::Heap<jsid> *idp, const char *name) |
| { |
| MarkIdUnbarriered(trc, idp->unsafeGet(), name); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_CallHeapObjectTracer(JSTracer *trc, JS::Heap<JSObject *> *objp, const char *name) |
| { |
| MarkObjectUnbarriered(trc, objp->unsafeGet(), name); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_CallHeapStringTracer(JSTracer *trc, JS::Heap<JSString *> *strp, const char *name) |
| { |
| MarkStringUnbarriered(trc, strp->unsafeGet(), name); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_CallHeapScriptTracer(JSTracer *trc, JS::Heap<JSScript *> *scriptp, const char *name) |
| { |
| MarkScriptUnbarriered(trc, scriptp->unsafeGet(), name); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_TracerInit(JSTracer *trc, JSRuntime *rt, JSTraceCallback callback) |
| { |
| InitTracer(trc, rt, callback); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_TraceRuntime(JSTracer *trc) |
| { |
| AssertHeapIsIdle(trc->runtime); |
| TraceRuntime(trc); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_TraceChildren(JSTracer *trc, void *thing, JSGCTraceKind kind) |
| { |
| js::TraceChildren(trc, thing, kind); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_GetTraceThingInfo(char *buf, size_t bufsize, JSTracer *trc, void *thing, |
| JSGCTraceKind kind, JSBool details) |
| { |
| const char *name = NULL; /* silence uninitialized warning */ |
| size_t n; |
| |
| if (bufsize == 0) |
| return; |
| |
| switch (kind) { |
| case JSTRACE_OBJECT: |
| { |
| name = static_cast<JSObject *>(thing)->getClass()->name; |
| break; |
| } |
| |
| case JSTRACE_STRING: |
| name = ((JSString *)thing)->isDependent() |
| ? "substring" |
| : "string"; |
| break; |
| |
| case JSTRACE_SCRIPT: |
| name = "script"; |
| break; |
| |
| case JSTRACE_LAZY_SCRIPT: |
| name = "lazyscript"; |
| break; |
| |
| case JSTRACE_IONCODE: |
| name = "ioncode"; |
| break; |
| |
| case JSTRACE_SHAPE: |
| name = "shape"; |
| break; |
| |
| case JSTRACE_BASE_SHAPE: |
| name = "base_shape"; |
| break; |
| |
| case JSTRACE_TYPE_OBJECT: |
| name = "type_object"; |
| break; |
| } |
| |
| n = strlen(name); |
| if (n > bufsize - 1) |
| n = bufsize - 1; |
| js_memcpy(buf, name, n + 1); |
| buf += n; |
| bufsize -= n; |
| *buf = '\0'; |
| |
| if (details && bufsize > 2) { |
| switch (kind) { |
| case JSTRACE_OBJECT: |
| { |
| JSObject *obj = (JSObject *)thing; |
| if (obj->is<JSFunction>()) { |
| JSFunction *fun = &obj->as<JSFunction>(); |
| if (fun->displayAtom()) { |
| *buf++ = ' '; |
| bufsize--; |
| PutEscapedString(buf, bufsize, fun->displayAtom(), 0); |
| } |
| } else if (obj->getClass()->flags & JSCLASS_HAS_PRIVATE) { |
| JS_snprintf(buf, bufsize, " %p", obj->getPrivate()); |
| } else { |
| JS_snprintf(buf, bufsize, " <no private>"); |
| } |
| break; |
| } |
| |
| case JSTRACE_STRING: |
| { |
| *buf++ = ' '; |
| bufsize--; |
| JSString *str = (JSString *)thing; |
| if (str->isLinear()) |
| PutEscapedString(buf, bufsize, &str->asLinear(), 0); |
| else |
| JS_snprintf(buf, bufsize, "<rope: length %d>", (int)str->length()); |
| break; |
| } |
| |
| case JSTRACE_SCRIPT: |
| { |
| JSScript *script = static_cast<JSScript *>(thing); |
| JS_snprintf(buf, bufsize, " %s:%u", script->filename(), unsigned(script->lineno)); |
| break; |
| } |
| |
| case JSTRACE_LAZY_SCRIPT: |
| case JSTRACE_IONCODE: |
| case JSTRACE_SHAPE: |
| case JSTRACE_BASE_SHAPE: |
| case JSTRACE_TYPE_OBJECT: |
| break; |
| } |
| } |
| buf[bufsize - 1] = '\0'; |
| } |
| |
| extern JS_PUBLIC_API(const char *) |
| JS_GetTraceEdgeName(JSTracer *trc, char *buffer, int bufferSize) |
| { |
| if (trc->debugPrinter) { |
| trc->debugPrinter(trc, buffer, bufferSize); |
| return buffer; |
| } |
| if (trc->debugPrintIndex != (size_t) - 1) { |
| JS_snprintf(buffer, bufferSize, "%s[%lu]", |
| (const char *)trc->debugPrintArg, |
| trc->debugPrintIndex); |
| return buffer; |
| } |
| return (const char*)trc->debugPrintArg; |
| } |
| |
| #ifdef DEBUG |
| |
| typedef struct JSHeapDumpNode JSHeapDumpNode; |
| |
| struct JSHeapDumpNode { |
| void *thing; |
| JSGCTraceKind kind; |
| JSHeapDumpNode *next; /* next sibling */ |
| JSHeapDumpNode *parent; /* node with the thing that refer to thing |
| from this node */ |
| char edgeName[1]; /* name of the edge from parent->thing |
| into thing */ |
| }; |
| |
| typedef HashSet<void *, PointerHasher<void *, 3>, SystemAllocPolicy> VisitedSet; |
| |
| typedef struct JSDumpingTracer { |
| JSTracer base; |
| VisitedSet visited; |
| bool ok; |
| void *startThing; |
| void *thingToFind; |
| void *thingToIgnore; |
| JSHeapDumpNode *parentNode; |
| JSHeapDumpNode **lastNodep; |
| char buffer[200]; |
| } JSDumpingTracer; |
| |
| static void |
| DumpNotify(JSTracer *trc, void **thingp, JSGCTraceKind kind) |
| { |
| JS_ASSERT(trc->callback == DumpNotify); |
| |
| JSDumpingTracer *dtrc = (JSDumpingTracer *)trc; |
| void *thing = *thingp; |
| |
| if (!dtrc->ok || thing == dtrc->thingToIgnore) |
| return; |
| |
| /* |
| * Check if we have already seen thing unless it is thingToFind to include |
| * it to the graph each time we reach it and print all live things that |
| * refer to thingToFind. |
| * |
| * This does not print all possible paths leading to thingToFind since |
| * when a thing A refers directly or indirectly to thingToFind and A is |
| * present several times in the graph, we will print only the first path |
| * leading to A and thingToFind, other ways to reach A will be ignored. |
| */ |
| if (dtrc->thingToFind != thing) { |
| /* |
| * The startThing check allows to avoid putting startThing into the |
| * hash table before tracing startThing in JS_DumpHeap. |
| */ |
| if (thing == dtrc->startThing) |
| return; |
| VisitedSet::AddPtr p = dtrc->visited.lookupForAdd(thing); |
| if (p) |
| return; |
| if (!dtrc->visited.add(p, thing)) { |
| dtrc->ok = false; |
| return; |
| } |
| } |
| |
| const char *edgeName = JS_GetTraceEdgeName(&dtrc->base, dtrc->buffer, sizeof(dtrc->buffer)); |
| size_t edgeNameSize = strlen(edgeName) + 1; |
| size_t bytes = offsetof(JSHeapDumpNode, edgeName) + edgeNameSize; |
| JSHeapDumpNode *node = (JSHeapDumpNode *) js_malloc(bytes); |
| if (!node) { |
| dtrc->ok = false; |
| return; |
| } |
| |
| node->thing = thing; |
| node->kind = kind; |
| node->next = NULL; |
| node->parent = dtrc->parentNode; |
| js_memcpy(node->edgeName, edgeName, edgeNameSize); |
| |
| JS_ASSERT(!*dtrc->lastNodep); |
| *dtrc->lastNodep = node; |
| dtrc->lastNodep = &node->next; |
| } |
| |
| /* Dump node and the chain that leads to thing it contains. */ |
| static JSBool |
| DumpNode(JSDumpingTracer *dtrc, FILE* fp, JSHeapDumpNode *node) |
| { |
| JSHeapDumpNode *prev, *following; |
| size_t chainLimit; |
| enum { MAX_PARENTS_TO_PRINT = 10 }; |
| |
| JS_GetTraceThingInfo(dtrc->buffer, sizeof dtrc->buffer, |
| &dtrc->base, node->thing, node->kind, JS_TRUE); |
| if (fprintf(fp, "%p %-22s via ", node->thing, dtrc->buffer) < 0) |
| return JS_FALSE; |
| |
| /* |
| * We need to print the parent chain in the reverse order. To do it in |
| * O(N) time where N is the chain length we first reverse the chain while |
| * searching for the top and then print each node while restoring the |
| * chain order. |
| */ |
| chainLimit = MAX_PARENTS_TO_PRINT; |
| prev = NULL; |
| for (;;) { |
| following = node->parent; |
| node->parent = prev; |
| prev = node; |
| node = following; |
| if (!node) |
| break; |
| if (chainLimit == 0) { |
| if (fputs("...", fp) < 0) |
| return JS_FALSE; |
| break; |
| } |
| --chainLimit; |
| } |
| |
| node = prev; |
| prev = following; |
| bool ok = true; |
| do { |
| /* Loop must continue even when !ok to restore the parent chain. */ |
| if (ok) { |
| if (!prev) { |
| /* Print edge from some runtime root or startThing. */ |
| if (fputs(node->edgeName, fp) < 0) |
| ok = false; |
| } else { |
| JS_GetTraceThingInfo(dtrc->buffer, sizeof dtrc->buffer, |
| &dtrc->base, prev->thing, prev->kind, |
| JS_FALSE); |
| if (fprintf(fp, "(%p %s).%s", |
| prev->thing, dtrc->buffer, node->edgeName) < 0) { |
| ok = false; |
| } |
| } |
| } |
| following = node->parent; |
| node->parent = prev; |
| prev = node; |
| node = following; |
| } while (node); |
| |
| return ok && putc('\n', fp) >= 0; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_DumpHeap(JSRuntime *rt, FILE *fp, void* startThing, JSGCTraceKind startKind, |
| void *thingToFind, size_t maxDepth, void *thingToIgnore) |
| { |
| if (maxDepth == 0) |
| return true; |
| |
| JSDumpingTracer dtrc; |
| if (!dtrc.visited.init()) |
| return false; |
| JS_TracerInit(&dtrc.base, rt, DumpNotify); |
| dtrc.ok = true; |
| dtrc.startThing = startThing; |
| dtrc.thingToFind = thingToFind; |
| dtrc.thingToIgnore = thingToIgnore; |
| dtrc.parentNode = NULL; |
| JSHeapDumpNode *node = NULL; |
| dtrc.lastNodep = &node; |
| if (!startThing) { |
| JS_ASSERT(startKind == JSTRACE_OBJECT); |
| TraceRuntime(&dtrc.base); |
| } else { |
| JS_TraceChildren(&dtrc.base, startThing, startKind); |
| } |
| |
| if (!node) |
| return dtrc.ok; |
| |
| size_t depth = 1; |
| JSHeapDumpNode *children, *next, *parent; |
| bool thingToFindWasTraced = thingToFind && thingToFind == startThing; |
| for (;;) { |
| /* |
| * Loop must continue even when !dtrc.ok to free all nodes allocated |
| * so far. |
| */ |
| if (dtrc.ok) { |
| if (thingToFind == NULL || thingToFind == node->thing) |
| dtrc.ok = DumpNode(&dtrc, fp, node); |
| |
| /* Descend into children. */ |
| if (dtrc.ok && |
| depth < maxDepth && |
| (thingToFind != node->thing || !thingToFindWasTraced)) { |
| dtrc.parentNode = node; |
| children = NULL; |
| dtrc.lastNodep = &children; |
| JS_TraceChildren(&dtrc.base, node->thing, node->kind); |
| if (thingToFind == node->thing) |
| thingToFindWasTraced = JS_TRUE; |
| if (children != NULL) { |
| ++depth; |
| node = children; |
| continue; |
| } |
| } |
| } |
| |
| /* Move to next or parents next and free the node. */ |
| for (;;) { |
| next = node->next; |
| parent = node->parent; |
| js_free(node); |
| node = next; |
| if (node) |
| break; |
| if (!parent) |
| return dtrc.ok; |
| JS_ASSERT(depth > 1); |
| --depth; |
| node = parent; |
| } |
| } |
| |
| JS_ASSERT(depth == 1); |
| return dtrc.ok; |
| } |
| |
| #endif /* DEBUG */ |
| |
| extern JS_PUBLIC_API(JSBool) |
| JS_IsGCMarkingTracer(JSTracer *trc) |
| { |
| return IS_GC_MARKING_TRACER(trc); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_GC(JSRuntime *rt) |
| { |
| AssertHeapIsIdle(rt); |
| JS::PrepareForFullGC(rt); |
| GC(rt, GC_NORMAL, JS::gcreason::API); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_MaybeGC(JSContext *cx) |
| { |
| MaybeGC(cx); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetGCCallback(JSRuntime *rt, JSGCCallback cb) |
| { |
| AssertHeapIsIdle(rt); |
| rt->gcCallback = cb; |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetFinalizeCallback(JSRuntime *rt, JSFinalizeCallback cb) |
| { |
| AssertHeapIsIdle(rt); |
| rt->gcFinalizeCallback = cb; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_IsAboutToBeFinalized(JSObject **obj) |
| { |
| return IsObjectAboutToBeFinalized(obj); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetGCParameter(JSRuntime *rt, JSGCParamKey key, uint32_t value) |
| { |
| switch (key) { |
| case JSGC_MAX_BYTES: { |
| JS_ASSERT(value >= rt->gcBytes); |
| rt->gcMaxBytes = value; |
| break; |
| } |
| case JSGC_MAX_MALLOC_BYTES: |
| rt->setGCMaxMallocBytes(value); |
| break; |
| case JSGC_SLICE_TIME_BUDGET: |
| rt->gcSliceBudget = SliceBudget::TimeBudget(value); |
| break; |
| case JSGC_MARK_STACK_LIMIT: |
| js::SetMarkStackLimit(rt, value); |
| break; |
| case JSGC_HIGH_FREQUENCY_TIME_LIMIT: |
| rt->gcHighFrequencyTimeThreshold = value; |
| break; |
| case JSGC_HIGH_FREQUENCY_LOW_LIMIT: |
| rt->gcHighFrequencyLowLimitBytes = value * 1024 * 1024; |
| break; |
| case JSGC_HIGH_FREQUENCY_HIGH_LIMIT: |
| rt->gcHighFrequencyHighLimitBytes = value * 1024 * 1024; |
| break; |
| case JSGC_HIGH_FREQUENCY_HEAP_GROWTH_MAX: |
| rt->gcHighFrequencyHeapGrowthMax = value / 100.0; |
| break; |
| case JSGC_HIGH_FREQUENCY_HEAP_GROWTH_MIN: |
| rt->gcHighFrequencyHeapGrowthMin = value / 100.0; |
| break; |
| case JSGC_LOW_FREQUENCY_HEAP_GROWTH: |
| rt->gcLowFrequencyHeapGrowth = value / 100.0; |
| break; |
| case JSGC_DYNAMIC_HEAP_GROWTH: |
| rt->gcDynamicHeapGrowth = value; |
| break; |
| case JSGC_DYNAMIC_MARK_SLICE: |
| rt->gcDynamicMarkSlice = value; |
| break; |
| case JSGC_ANALYSIS_PURGE_TRIGGER: |
| rt->analysisPurgeTriggerBytes = value * 1024 * 1024; |
| break; |
| case JSGC_ALLOCATION_THRESHOLD: |
| rt->gcAllocationThreshold = value * 1024 * 1024; |
| break; |
| case JSGC_DECOMMIT_THRESHOLD: |
| rt->gcDecommitThreshold = value * 1024 * 1024; |
| break; |
| default: |
| JS_ASSERT(key == JSGC_MODE); |
| rt->gcMode = JSGCMode(value); |
| JS_ASSERT(rt->gcMode == JSGC_MODE_GLOBAL || |
| rt->gcMode == JSGC_MODE_COMPARTMENT || |
| rt->gcMode == JSGC_MODE_INCREMENTAL); |
| return; |
| } |
| } |
| |
| JS_PUBLIC_API(uint32_t) |
| JS_GetGCParameter(JSRuntime *rt, JSGCParamKey key) |
| { |
| switch (key) { |
| case JSGC_MAX_BYTES: |
| return uint32_t(rt->gcMaxBytes); |
| case JSGC_MAX_MALLOC_BYTES: |
| return rt->gcMaxMallocBytes; |
| case JSGC_BYTES: |
| return uint32_t(rt->gcBytes); |
| case JSGC_MODE: |
| return uint32_t(rt->gcMode); |
| case JSGC_UNUSED_CHUNKS: |
| return uint32_t(rt->gcChunkPool.getEmptyCount()); |
| case JSGC_TOTAL_CHUNKS: |
| return uint32_t(rt->gcChunkSet.count() + rt->gcChunkPool.getEmptyCount()); |
| case JSGC_SLICE_TIME_BUDGET: |
| return uint32_t(rt->gcSliceBudget > 0 ? rt->gcSliceBudget / PRMJ_USEC_PER_MSEC : 0); |
| case JSGC_MARK_STACK_LIMIT: |
| return rt->gcMarker.sizeLimit(); |
| case JSGC_HIGH_FREQUENCY_TIME_LIMIT: |
| return rt->gcHighFrequencyTimeThreshold; |
| case JSGC_HIGH_FREQUENCY_LOW_LIMIT: |
| return rt->gcHighFrequencyLowLimitBytes / 1024 / 1024; |
| case JSGC_HIGH_FREQUENCY_HIGH_LIMIT: |
| return rt->gcHighFrequencyHighLimitBytes / 1024 / 1024; |
| case JSGC_HIGH_FREQUENCY_HEAP_GROWTH_MAX: |
| return uint32_t(rt->gcHighFrequencyHeapGrowthMax * 100); |
| case JSGC_HIGH_FREQUENCY_HEAP_GROWTH_MIN: |
| return uint32_t(rt->gcHighFrequencyHeapGrowthMin * 100); |
| case JSGC_LOW_FREQUENCY_HEAP_GROWTH: |
| return uint32_t(rt->gcLowFrequencyHeapGrowth * 100); |
| case JSGC_DYNAMIC_HEAP_GROWTH: |
| return rt->gcDynamicHeapGrowth; |
| case JSGC_DYNAMIC_MARK_SLICE: |
| return rt->gcDynamicMarkSlice; |
| case JSGC_ANALYSIS_PURGE_TRIGGER: |
| return rt->analysisPurgeTriggerBytes / 1024 / 1024; |
| case JSGC_ALLOCATION_THRESHOLD: |
| return rt->gcAllocationThreshold / 1024 / 1024; |
| default: |
| JS_ASSERT(key == JSGC_NUMBER); |
| return uint32_t(rt->gcNumber); |
| } |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetGCParameterForThread(JSContext *cx, JSGCParamKey key, uint32_t value) |
| { |
| JS_ASSERT(key == JSGC_MAX_CODE_CACHE_BYTES); |
| } |
| |
| JS_PUBLIC_API(uint32_t) |
| JS_GetGCParameterForThread(JSContext *cx, JSGCParamKey key) |
| { |
| JS_ASSERT(key == JSGC_MAX_CODE_CACHE_BYTES); |
| return 0; |
| } |
| |
| JS_PUBLIC_API(JSString *) |
| JS_NewExternalString(JSContext *cx, const jschar *chars, size_t length, |
| const JSStringFinalizer *fin) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| JSString *s = JSExternalString::new_(cx, chars, length, fin); |
| return s; |
| } |
| |
| extern JS_PUBLIC_API(JSBool) |
| JS_IsExternalString(JSString *str) |
| { |
| return str->isExternal(); |
| } |
| |
| extern JS_PUBLIC_API(const JSStringFinalizer *) |
| JS_GetExternalStringFinalizer(JSString *str) |
| { |
| return str->asExternal().externalFinalizer(); |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_SetNativeStackQuota(JSRuntime *rt, size_t stackSize) |
| { |
| rt->nativeStackQuota = stackSize; |
| if (!rt->nativeStackBase) |
| return; |
| |
| #if JS_STACK_GROWTH_DIRECTION > 0 |
| if (stackSize == 0) { |
| rt->mainThread.nativeStackLimit = UINTPTR_MAX; |
| } else { |
| JS_ASSERT(rt->nativeStackBase <= size_t(-1) - stackSize); |
| rt->mainThread.nativeStackLimit = rt->nativeStackBase + stackSize - 1; |
| } |
| #else |
| if (stackSize == 0) { |
| rt->mainThread.nativeStackLimit = 0; |
| } else { |
| JS_ASSERT(rt->nativeStackBase >= stackSize); |
| rt->mainThread.nativeStackLimit = rt->nativeStackBase - (stackSize - 1); |
| } |
| #endif |
| |
| // If there's no pending interrupt request set on the runtime's main thread's |
| // ionStackLimit, then update it so that it reflects the new nativeStacklimit. |
| #ifdef JS_ION |
| { |
| JSRuntime::AutoLockForOperationCallback lock(rt); |
| if (rt->mainThread.ionStackLimit != uintptr_t(-1)) |
| rt->mainThread.ionStackLimit = rt->mainThread.nativeStackLimit; |
| } |
| #endif |
| } |
| |
| /************************************************************************/ |
| |
| JS_PUBLIC_API(int) |
| JS_IdArrayLength(JSContext *cx, JSIdArray *ida) |
| { |
| return ida->length; |
| } |
| |
| JS_PUBLIC_API(jsid) |
| JS_IdArrayGet(JSContext *cx, JSIdArray *ida, int index) |
| { |
| JS_ASSERT(index >= 0 && index < ida->length); |
| return ida->vector[index]; |
| } |
| |
| JS_PUBLIC_API(void) |
| JS_DestroyIdArray(JSContext *cx, JSIdArray *ida) |
| { |
| DestroyIdArray(cx->runtime()->defaultFreeOp(), ida); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ValueToId(JSContext *cx, jsval valueArg, jsid *idp) |
| { |
| RootedValue value(cx, valueArg); |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, value); |
| |
| RootedId id(cx); |
| if (!ValueToId<CanGC>(cx, value, &id)) |
| return false; |
| |
| *idp = id; |
| return true; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_IdToValue(JSContext *cx, jsid id, jsval *vp) |
| { |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| *vp = IdToJsval(id); |
| assertSameCompartment(cx, *vp); |
| return JS_TRUE; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_DefaultValue(JSContext *cx, JSObject *objArg, JSType hint, jsval *vp) |
| { |
| RootedObject obj(cx, objArg); |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| JS_ASSERT(obj != NULL); |
| JS_ASSERT(hint == JSTYPE_VOID || hint == JSTYPE_STRING || hint == JSTYPE_NUMBER); |
| |
| RootedValue value(cx); |
| if (!JSObject::defaultValue(cx, obj, hint, &value)) |
| return false; |
| |
| *vp = value; |
| return true; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_PropertyStub(JSContext *cx, HandleObject obj, HandleId id, MutableHandleValue vp) |
| { |
| return JS_TRUE; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_StrictPropertyStub(JSContext *cx, HandleObject obj, HandleId id, JSBool strict, MutableHandleValue vp) |
| { |
| return JS_TRUE; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_DeletePropertyStub(JSContext *cx, HandleObject obj, HandleId id, JSBool *succeeded) |
| { |
| *succeeded = true; |
| return true; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_EnumerateStub(JSContext *cx, HandleObject obj) |
| { |
| return JS_TRUE; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ResolveStub(JSContext *cx, HandleObject obj, HandleId id) |
| { |
| return JS_TRUE; |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_ConvertStub(JSContext *cx, HandleObject obj, JSType type, MutableHandleValue vp) |
| { |
| JS_ASSERT(type != JSTYPE_OBJECT && type != JSTYPE_FUNCTION); |
| JS_ASSERT(obj); |
| return DefaultValue(cx, obj, type, vp); |
| } |
| |
| JS_PUBLIC_API(JSObject *) |
| JS_InitClass(JSContext *cx, JSObject *objArg, JSObject *parent_protoArg, |
| JSClass *clasp, JSNative constructor, unsigned nargs, |
| const JSPropertySpec *ps, const JSFunctionSpec *fs, |
| const JSPropertySpec *static_ps, const JSFunctionSpec *static_fs) |
| { |
| RootedObject obj(cx, objArg); |
| RootedObject parent_proto(cx, parent_protoArg); |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| assertSameCompartment(cx, obj, parent_proto); |
| return js_InitClass(cx, obj, parent_proto, Valueify(clasp), constructor, |
| nargs, ps, fs, static_ps, static_fs); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_LinkConstructorAndPrototype(JSContext *cx, JSObject *ctorArg, JSObject *protoArg) |
| { |
| RootedObject ctor(cx, ctorArg); |
| RootedObject proto(cx, protoArg); |
| return LinkConstructorAndPrototype(cx, ctor, proto); |
| } |
| |
| JS_PUBLIC_API(JSClass *) |
| JS_GetClass(JSObject *obj) |
| { |
| return obj->getJSClass(); |
| } |
| |
| JS_PUBLIC_API(JSBool) |
| JS_InstanceOf(JSContext *cx, JSObject *objArg, JSClass *clasp, jsval *argv) |
| { |
| RootedObject obj(cx, objArg); |
| AssertHeapIsIdle(cx); |
| CHECK_REQUEST(cx); |
| #ifdef DEBUG |
| if (argv) { |
| assertSameCompartment(cx, obj); |
| assertSameCompartment(cx, JSValueArray(argv - 2, 2)); |
| } |
| #endif |
| if (!obj || obj->getJSClass() != clasp) { |
| if (argv) |
| |