| //------------------------------------------------------------------------------------------------------- |
| // Copyright (C) Microsoft. All rights reserved. |
| // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. |
| //------------------------------------------------------------------------------------------------------- |
| #pragma once |
| |
| #define InlineSlotCountIncrement (HeapConstants::ObjectGranularity / sizeof(Var)) |
| |
| #define MaxPreInitializedObjectTypeInlineSlotCount 16 |
| #define MaxPreInitializedObjectHeaderInlinedTypeInlineSlotCount \ |
| (Js::DynamicTypeHandler::GetObjectHeaderInlinableSlotCapacity() + MaxPreInitializedObjectTypeInlineSlotCount) |
| #define PreInitializedObjectTypeCount ((MaxPreInitializedObjectTypeInlineSlotCount / InlineSlotCountIncrement) + 1) |
| CompileAssert(MaxPreInitializedObjectTypeInlineSlotCount <= USHRT_MAX); |
| |
| class ScriptSite; |
| class ActiveScriptExternalLibrary; |
| class ProjectionExternalLibrary; |
| class EditAndContinue; |
| class ChakraHostScriptContext; |
| |
| #ifdef ENABLE_PROJECTION |
| namespace Projection |
| { |
| class ProjectionContext; |
| class WinRTPromiseEngineInterfaceExtensionObject; |
| } |
| #endif |
| |
| namespace Js |
| { |
| class MissingPropertyTypeHandler; |
| class SourceTextModuleRecord; |
| typedef RecyclerFastAllocator<JavascriptNumber, LeafBit> RecyclerJavascriptNumberAllocator; |
| |
| class UndeclaredBlockVariable : public RecyclableObject |
| { |
| friend class JavascriptLibrary; |
| UndeclaredBlockVariable(Type* type) : RecyclableObject(type) { } |
| }; |
| |
| class SourceTextModuleRecord; |
| typedef JsUtil::List<SourceTextModuleRecord*> ModuleRecordList; |
| |
| #if ENABLE_COPYONACCESS_ARRAY |
| struct CacheForCopyOnAccessArraySegments |
| { |
| static const uint32 MAX_SIZE = 31; |
| SparseArraySegment<int32> *cache[MAX_SIZE]; |
| uint32 count; |
| |
| uint32 AddSegment(SparseArraySegment<int32> *segment) |
| { |
| cache[count++] = segment; |
| return count; |
| } |
| |
| SparseArraySegment<int32> *GetSegmentByIndex(byte index) |
| { |
| Assert(index <= MAX_SIZE); |
| return cache[index - 1]; |
| } |
| |
| bool IsNotOverHardLimit() |
| { |
| return count < MAX_SIZE; |
| } |
| |
| bool IsNotFull() |
| { |
| return count < (uint32) CONFIG_FLAG(CopyOnAccessArraySegmentCacheSize); |
| } |
| |
| bool IsValidIndex(uint32 index) |
| { |
| return count && index && index <= count; |
| } |
| |
| #if ENABLE_DEBUG_CONFIG_OPTIONS |
| uint32 GetCount() |
| { |
| return count; |
| } |
| #endif |
| }; |
| #endif |
| |
| template <typename T> |
| struct StringTemplateCallsiteObjectComparer |
| { |
| static bool Equals(T x, T y) |
| { |
| static_assert(false, "Unexpected type T"); |
| } |
| static hash_t GetHashCode(T i) |
| { |
| static_assert(false, "Unexpected type T"); |
| } |
| }; |
| |
| template <> |
| struct StringTemplateCallsiteObjectComparer<ParseNodePtr> |
| { |
| static bool Equals(ParseNodePtr x, RecyclerWeakReference<Js::RecyclableObject>* y); |
| static bool Equals(ParseNodePtr x, ParseNodePtr y); |
| static hash_t GetHashCode(ParseNodePtr i); |
| }; |
| |
| template <> |
| struct StringTemplateCallsiteObjectComparer<RecyclerWeakReference<Js::RecyclableObject>*> |
| { |
| static bool Equals(RecyclerWeakReference<Js::RecyclableObject>* x, RecyclerWeakReference<Js::RecyclableObject>* y); |
| static bool Equals(RecyclerWeakReference<Js::RecyclableObject>* x, ParseNodePtr y); |
| static hash_t GetHashCode(RecyclerWeakReference<Js::RecyclableObject>* o); |
| }; |
| |
| class JavascriptLibrary : public JavascriptLibraryBase |
| { |
| friend class EditAndContinue; |
| friend class ScriptSite; |
| friend class GlobalObject; |
| friend class ScriptContext; |
| friend class EngineInterfaceObject; |
| friend class ExternalLibraryBase; |
| friend class ActiveScriptExternalLibrary; |
| friend class IntlEngineInterfaceExtensionObject; |
| friend class ChakraHostScriptContext; |
| #ifdef ENABLE_PROJECTION |
| friend class ProjectionExternalLibrary; |
| friend class Projection::WinRTPromiseEngineInterfaceExtensionObject; |
| friend class Projection::ProjectionContext; |
| #endif |
| static const char16* domBuiltinPropertyNames[]; |
| |
| public: |
| #if ENABLE_COPYONACCESS_ARRAY |
| CacheForCopyOnAccessArraySegments *cacheForCopyOnAccessArraySegments; |
| #endif |
| |
| static DWORD GetScriptContextOffset() { return offsetof(JavascriptLibrary, scriptContext); } |
| static DWORD GetUndeclBlockVarOffset() { return offsetof(JavascriptLibrary, undeclBlockVarSentinel); } |
| static DWORD GetEmptyStringOffset() { return offsetof(JavascriptLibrary, emptyString); } |
| static DWORD GetUndefinedValueOffset() { return offsetof(JavascriptLibrary, undefinedValue); } |
| static DWORD GetNullValueOffset() { return offsetof(JavascriptLibrary, nullValue); } |
| static DWORD GetBooleanTrueOffset() { return offsetof(JavascriptLibrary, booleanTrue); } |
| static DWORD GetBooleanFalseOffset() { return offsetof(JavascriptLibrary, booleanFalse); } |
| static DWORD GetNegativeZeroOffset() { return offsetof(JavascriptLibrary, negativeZero); } |
| static DWORD GetNumberTypeStaticOffset() { return offsetof(JavascriptLibrary, numberTypeStatic); } |
| static DWORD GetStringTypeStaticOffset() { return offsetof(JavascriptLibrary, stringTypeStatic); } |
| static DWORD GetObjectTypesOffset() { return offsetof(JavascriptLibrary, objectTypes); } |
| static DWORD GetObjectHeaderInlinedTypesOffset() { return offsetof(JavascriptLibrary, objectHeaderInlinedTypes); } |
| static DWORD GetRegexTypeOffset() { return offsetof(JavascriptLibrary, regexType); } |
| static DWORD GetArrayConstructorOffset() { return offsetof(JavascriptLibrary, arrayConstructor); } |
| static DWORD GetPositiveInfinityOffset() { return offsetof(JavascriptLibrary, positiveInfinite); } |
| static DWORD GetNaNOffset() { return offsetof(JavascriptLibrary, nan); } |
| static DWORD GetNativeIntArrayTypeOffset() { return offsetof(JavascriptLibrary, nativeIntArrayType); } |
| #if ENABLE_COPYONACCESS_ARRAY |
| static DWORD GetCopyOnAccessNativeIntArrayTypeOffset() { return offsetof(JavascriptLibrary, copyOnAccessNativeIntArrayType); } |
| #endif |
| static DWORD GetNativeFloatArrayTypeOffset() { return offsetof(JavascriptLibrary, nativeFloatArrayType); } |
| static DWORD GetVTableAddressesOffset() { return offsetof(JavascriptLibrary, vtableAddresses); } |
| static DWORD GetConstructorCacheDefaultInstanceOffset() { return offsetof(JavascriptLibrary, constructorCacheDefaultInstance); } |
| static DWORD GetAbsDoubleCstOffset() { return offsetof(JavascriptLibrary, absDoubleCst); } |
| static DWORD GetUintConvertConstOffset() { return offsetof(JavascriptLibrary, uintConvertConst); } |
| static DWORD GetBuiltinFunctionsOffset() { return offsetof(JavascriptLibrary, builtinFunctions); } |
| static DWORD GetCharStringCacheOffset() { return offsetof(JavascriptLibrary, charStringCache); } |
| static DWORD GetCharStringCacheAOffset() { return GetCharStringCacheOffset() + CharStringCache::GetCharStringCacheAOffset(); } |
| const JavascriptLibraryBase* GetLibraryBase() const { return static_cast<const JavascriptLibraryBase*>(this); } |
| void SetGlobalObject(GlobalObject* globalObject) {globalObject = globalObject; } |
| static DWORD GetRandSeed0Offset() { return offsetof(JavascriptLibrary, randSeed0); } |
| static DWORD GetRandSeed1Offset() { return offsetof(JavascriptLibrary, randSeed1); } |
| |
| typedef bool (CALLBACK *PromiseContinuationCallback)(Var task, void *callbackState); |
| |
| Var GetUndeclBlockVar() const { return undeclBlockVarSentinel; } |
| bool IsUndeclBlockVar(Var var) const { return var == undeclBlockVarSentinel; } |
| |
| static bool IsTypedArrayConstructor(Var constructor, ScriptContext* scriptContext); |
| |
| private: |
| Recycler * recycler; |
| ExternalLibraryBase* externalLibraryList; |
| |
| UndeclaredBlockVariable* undeclBlockVarSentinel; |
| |
| DynamicType * generatorConstructorPrototypeObjectType; |
| DynamicType * constructorPrototypeObjectType; |
| DynamicType * heapArgumentsType; |
| DynamicType * activationObjectType; |
| DynamicType * arrayType; |
| DynamicType * nativeIntArrayType; |
| #if ENABLE_COPYONACCESS_ARRAY |
| DynamicType * copyOnAccessNativeIntArrayType; |
| #endif |
| DynamicType * nativeFloatArrayType; |
| DynamicType * arrayBufferType; |
| DynamicType * dataViewType; |
| DynamicType * typedArrayType; |
| DynamicType * int8ArrayType; |
| DynamicType * uint8ArrayType; |
| DynamicType * uint8ClampedArrayType; |
| DynamicType * int16ArrayType; |
| DynamicType * uint16ArrayType; |
| DynamicType * int32ArrayType; |
| DynamicType * uint32ArrayType; |
| DynamicType * float32ArrayType; |
| DynamicType * float64ArrayType; |
| DynamicType * int64ArrayType; |
| DynamicType * uint64ArrayType; |
| DynamicType * boolArrayType; |
| DynamicType * charArrayType; |
| StaticType * booleanTypeStatic; |
| DynamicType * booleanTypeDynamic; |
| DynamicType * dateType; |
| StaticType * variantDateType; |
| DynamicType * symbolTypeDynamic; |
| StaticType * symbolTypeStatic; |
| DynamicType * iteratorResultType; |
| DynamicType * arrayIteratorType; |
| DynamicType * mapIteratorType; |
| DynamicType * setIteratorType; |
| DynamicType * stringIteratorType; |
| DynamicType * promiseType; |
| DynamicType * javascriptEnumeratorIteratorType; |
| |
| JavascriptFunction* builtinFunctions[BuiltinFunction::Count]; |
| |
| typedef JsUtil::BaseDictionary<FunctionInfo *, BuiltinFunction, ArenaAllocator > FuncInfoToBuiltinIdMap; |
| FuncInfoToBuiltinIdMap * funcInfoToBuiltinIdMap; |
| |
| INT_PTR vtableAddresses[VTableValue::Count]; |
| ConstructorCache *constructorCacheDefaultInstance; |
| __declspec(align(16)) const BYTE *absDoubleCst; |
| double const *uintConvertConst; |
| |
| // Function Types |
| DynamicTypeHandler * anonymousFunctionTypeHandler; |
| DynamicTypeHandler * anonymousFunctionWithPrototypeTypeHandler; |
| DynamicTypeHandler * functionTypeHandler; |
| DynamicTypeHandler * functionWithPrototypeTypeHandler; |
| DynamicType * externalFunctionWithDeferredPrototypeType; |
| DynamicType * wrappedFunctionWithDeferredPrototypeType; |
| DynamicType * stdCallFunctionWithDeferredPrototypeType; |
| DynamicType * idMappedFunctionWithPrototypeType; |
| DynamicType * externalConstructorFunctionWithDeferredPrototypeType; |
| DynamicType * boundFunctionType; |
| DynamicType * regexConstructorType; |
| DynamicType * crossSiteDeferredPrototypeFunctionType; |
| DynamicType * crossSiteIdMappedFunctionWithPrototypeType; |
| DynamicType * crossSiteExternalConstructFunctionWithPrototypeType; |
| |
| StaticType * enumeratorType; |
| DynamicType * errorType; |
| DynamicType * evalErrorType; |
| DynamicType * rangeErrorType; |
| DynamicType * referenceErrorType; |
| DynamicType * syntaxErrorType; |
| DynamicType * typeErrorType; |
| DynamicType * uriErrorType; |
| StaticType * numberTypeStatic; |
| StaticType * int64NumberTypeStatic; |
| StaticType * uint64NumberTypeStatic; |
| |
| // SIMD_JS |
| DynamicType * simdBool8x16TypeDynamic; |
| DynamicType * simdBool16x8TypeDynamic; |
| DynamicType * simdBool32x4TypeDynamic; |
| DynamicType * simdInt8x16TypeDynamic; |
| DynamicType * simdInt16x8TypeDynamic; |
| DynamicType * simdInt32x4TypeDynamic; |
| DynamicType * simdUint8x16TypeDynamic; |
| DynamicType * simdUint16x8TypeDynamic; |
| DynamicType * simdUint32x4TypeDynamic; |
| DynamicType * simdFloat32x4TypeDynamic; |
| |
| StaticType * simdFloat32x4TypeStatic; |
| StaticType * simdInt32x4TypeStatic; |
| StaticType * simdInt8x16TypeStatic; |
| StaticType * simdFloat64x2TypeStatic; |
| StaticType * simdInt16x8TypeStatic; |
| StaticType * simdBool32x4TypeStatic; |
| StaticType * simdBool16x8TypeStatic; |
| StaticType * simdBool8x16TypeStatic; |
| StaticType * simdUint32x4TypeStatic; |
| StaticType * simdUint16x8TypeStatic; |
| StaticType * simdUint8x16TypeStatic; |
| |
| DynamicType * numberTypeDynamic; |
| DynamicType * objectTypes[PreInitializedObjectTypeCount]; |
| DynamicType * objectHeaderInlinedTypes[PreInitializedObjectTypeCount]; |
| DynamicType * regexPrototypeType; |
| DynamicType * regexType; |
| DynamicType * regexResultType; |
| StaticType * stringTypeStatic; |
| DynamicType * stringTypeDynamic; |
| DynamicType * mapType; |
| DynamicType * setType; |
| DynamicType * weakMapType; |
| DynamicType * weakSetType; |
| DynamicType * proxyType; |
| StaticType * withType; |
| DynamicType * SpreadArgumentType; |
| PropertyDescriptor defaultPropertyDescriptor; |
| |
| JavascriptString* nullString; |
| JavascriptString* emptyString; |
| JavascriptString* quotesString; |
| JavascriptString* whackString; |
| JavascriptString* objectDisplayString; |
| JavascriptString* stringTypeDisplayString; |
| JavascriptString* errorDisplayString; |
| JavascriptString* functionPrefixString; |
| JavascriptString* generatorFunctionPrefixString; |
| JavascriptString* asyncFunctionPrefixString; |
| JavascriptString* functionDisplayString; |
| JavascriptString* xDomainFunctionDisplayString; |
| JavascriptString* undefinedDisplayString; |
| JavascriptString* nanDisplayString; |
| JavascriptString* nullDisplayString; |
| JavascriptString* unknownDisplayString; |
| JavascriptString* commaDisplayString; |
| JavascriptString* commaSpaceDisplayString; |
| JavascriptString* trueDisplayString; |
| JavascriptString* falseDisplayString; |
| JavascriptString* lengthDisplayString; |
| JavascriptString* invalidDateString; |
| JavascriptString* objectTypeDisplayString; |
| JavascriptString* functionTypeDisplayString; |
| JavascriptString* booleanTypeDisplayString; |
| JavascriptString* numberTypeDisplayString; |
| |
| // SIMD_JS |
| JavascriptString* simdFloat32x4DisplayString; |
| JavascriptString* simdFloat64x2DisplayString; |
| JavascriptString* simdInt32x4DisplayString; |
| JavascriptString* simdInt16x8DisplayString; |
| JavascriptString* simdInt8x16DisplayString; |
| JavascriptString* simdBool32x4DisplayString; |
| JavascriptString* simdBool16x8DisplayString; |
| JavascriptString* simdBool8x16DisplayString; |
| JavascriptString* simdUint32x4DisplayString; |
| JavascriptString* simdUint16x8DisplayString; |
| JavascriptString* simdUint8x16DisplayString; |
| |
| |
| |
| JavascriptString* symbolTypeDisplayString; |
| JavascriptString* debuggerDeadZoneBlockVariableString; |
| |
| DynamicObject* missingPropertyHolder; |
| |
| StaticType* throwErrorObjectType; |
| |
| NullEnumerator *nullEnumerator; |
| |
| PropertyStringCacheMap* propertyStringMap; |
| RecyclerWeakReference<ForInObjectEnumerator>* cachedForInEnumerator; |
| |
| ConstructorCache* builtInConstructorCache; |
| |
| #ifdef ENABLE_DEBUG_CONFIG_OPTIONS |
| JavascriptFunction* debugObjectFaultInjectionCookieGetterFunction; |
| JavascriptFunction* debugObjectFaultInjectionCookieSetterFunction; |
| #endif |
| |
| JavascriptFunction* evalFunctionObject; |
| JavascriptFunction* arrayPrototypeValuesFunction; |
| JavascriptFunction* parseIntFunctionObject; |
| JavascriptFunction* parseFloatFunctionObject; |
| JavascriptFunction* arrayPrototypeToStringFunction; |
| JavascriptFunction* arrayPrototypeToLocaleStringFunction; |
| JavascriptFunction* identityFunction; |
| JavascriptFunction* throwerFunction; |
| JavascriptFunction* promiseResolveFunction; |
| |
| JavascriptFunction* objectValueOfFunction; |
| JavascriptFunction* objectToStringFunction; |
| |
| |
| // SIMD_JS |
| JavascriptFunction* simdFloat32x4ToStringFunction; |
| JavascriptFunction* simdFloat64x2ToStringFunction; |
| JavascriptFunction* simdInt32x4ToStringFunction; |
| JavascriptFunction* simdInt16x8ToStringFunction; |
| JavascriptFunction* simdInt8x16ToStringFunction; |
| JavascriptFunction* simdBool32x4ToStringFunction; |
| JavascriptFunction* simdBool16x8ToStringFunction; |
| JavascriptFunction* simdBool8x16ToStringFunction; |
| JavascriptFunction* simdUint32x4ToStringFunction; |
| JavascriptFunction* simdUint16x8ToStringFunction; |
| JavascriptFunction* simdUint8x16ToStringFunction; |
| |
| |
| |
| JavascriptSymbol* symbolMatch; |
| JavascriptSymbol* symbolReplace; |
| JavascriptSymbol* symbolSearch; |
| JavascriptSymbol* symbolSplit; |
| |
| UnifiedRegex::RegexPattern * emptyRegexPattern; |
| JavascriptFunction* regexExecFunction; |
| JavascriptFunction* regexFlagsGetterFunction; |
| JavascriptFunction* regexGlobalGetterFunction; |
| JavascriptFunction* regexStickyGetterFunction; |
| JavascriptFunction* regexUnicodeGetterFunction; |
| |
| int regexConstructorSlotIndex; |
| int regexExecSlotIndex; |
| int regexFlagsGetterSlotIndex; |
| int regexGlobalGetterSlotIndex; |
| int regexStickyGetterSlotIndex; |
| int regexUnicodeGetterSlotIndex; |
| |
| mutable CharStringCache charStringCache; |
| |
| PromiseContinuationCallback nativeHostPromiseContinuationFunction; |
| void *nativeHostPromiseContinuationFunctionState; |
| |
| typedef SList<Js::FunctionProxy*, Recycler> FunctionReferenceList; |
| |
| void * bindRefChunkBegin; |
| void ** bindRefChunkCurrent; |
| void ** bindRefChunkEnd; |
| TypePath* rootPath; // this should be in library instead of ScriptContext::Cache |
| void* scriptContextCache; // forward declaration for point to ScriptContext::Cache such that we don't need to hard pin it. |
| FunctionReferenceList* dynamicFunctionReference; |
| uint dynamicFunctionReferenceDepth; |
| FinalizableObject* jsrtContextObject; |
| |
| typedef JsUtil::BaseHashSet<RecyclerWeakReference<RecyclableObject>*, Recycler, PowerOf2SizePolicy, RecyclerWeakReference<RecyclableObject>*, StringTemplateCallsiteObjectComparer> StringTemplateCallsiteObjectList; |
| |
| // Used to store a list of template callsite objects. |
| // We use the raw strings in the callsite object (or a string template parse node) to identify unique callsite objects in the list. |
| // See abstract operation GetTemplateObject in ES6 Spec (RC1) 12.2.8.3 |
| StringTemplateCallsiteObjectList* stringTemplateCallsiteObjectList; |
| |
| ModuleRecordList* moduleRecordList; |
| |
| // This list contains types ensured to have only writable data properties in it and all objects in its prototype chain |
| // (i.e., no readonly properties or accessors). Only prototype objects' types are stored in the list. When something |
| // in the script context adds a readonly property or accessor to an object that is used as a prototype object, this |
| // list is cleared. The list is also cleared before garbage collection so that it does not keep growing, and so, it can |
| // hold strong references to the types. |
| // |
| // The cache is used by the type-without-property local inline cache. When setting a property on a type that doesn't |
| // have the property, to determine whether to promote the object like an object of that type was last promoted, we need |
| // to ensure that objects in the prototype chain have not acquired a readonly property or setter (ideally, only for that |
| // property ID, but we just check for any such property). This cache is used to avoid doing this many times, especially |
| // when the prototype chain is not short. |
| // |
| // This list is only used to invalidate the status of types. The type itself contains a boolean indicating whether it |
| // and prototypes contain only writable data properties, which is reset upon invalidating the status. |
| JsUtil::List<Type *> *typesEnsuredToHaveOnlyWritableDataPropertiesInItAndPrototypeChain; |
| |
| uint64 randSeed0, randSeed1; |
| bool isPRNGSeeded; |
| bool inProfileMode; |
| bool inDispatchProfileMode; |
| bool arrayObjectHasUserDefinedSpecies; |
| |
| JavascriptFunction * AddFunctionToLibraryObjectWithPrototype(DynamicObject * object, PropertyId propertyId, FunctionInfo * functionInfo, int length, DynamicObject * prototype = nullptr, DynamicType * functionType = nullptr); |
| JavascriptFunction * AddFunctionToLibraryObject(DynamicObject* object, PropertyId propertyId, FunctionInfo * functionInfo, int length, PropertyAttributes attributes = PropertyBuiltInMethodDefaults); |
| |
| JavascriptFunction * AddFunctionToLibraryObjectWithName(DynamicObject* object, PropertyId propertyId, PropertyId nameId, FunctionInfo * functionInfo, int length); |
| RuntimeFunction* AddGetterToLibraryObject(DynamicObject* object, PropertyId propertyId, FunctionInfo* functionInfo); |
| void AddAccessorsToLibraryObject(DynamicObject* object, PropertyId propertyId, FunctionInfo * getterFunctionInfo, FunctionInfo * setterFunctionInfo); |
| void AddAccessorsToLibraryObject(DynamicObject* object, PropertyId propertyId, RecyclableObject * getterFunction, RecyclableObject * setterFunction); |
| void AddAccessorsToLibraryObjectWithName(DynamicObject* object, PropertyId propertyId, PropertyId nameId, FunctionInfo * getterFunctionInfo, FunctionInfo * setterFunction); |
| RuntimeFunction * CreateGetterFunction(PropertyId nameId, FunctionInfo* functionInfo); |
| RuntimeFunction * CreateSetterFunction(PropertyId nameId, FunctionInfo* functionInfo); |
| |
| template <size_t N> |
| JavascriptFunction * AddFunctionToLibraryObjectWithPropertyName(DynamicObject* object, const char16(&propertyName)[N], FunctionInfo * functionInfo, int length); |
| |
| bool isHybridDebugging; // If this library is in hybrid debugging mode |
| bool isLibraryReadyForHybridDebugging; // If this library is ready for hybrid debugging (library objects using deferred type handler have been un-deferred) |
| |
| bool IsHybridDebugging() const { return isHybridDebugging; } |
| void EnsureLibraryReadyForHybridDebugging(); |
| DynamicObject* EnsureReadyIfHybridDebugging(DynamicObject* obj); |
| template <class T> T* EnsureReadyIfHybridDebugging(T* obj) |
| { |
| DynamicObject * dynamicObject = obj; |
| return (T*)EnsureReadyIfHybridDebugging(dynamicObject); |
| } |
| |
| static SimpleTypeHandler<1> SharedPrototypeTypeHandler; |
| static SimpleTypeHandler<1> SharedFunctionWithoutPrototypeTypeHandler; |
| static SimpleTypeHandler<1> SharedFunctionWithPrototypeTypeHandlerV11; |
| static SimpleTypeHandler<2> SharedFunctionWithPrototypeTypeHandler; |
| static SimpleTypeHandler<1> SharedFunctionWithLengthTypeHandler; |
| static SimpleTypeHandler<2> SharedFunctionWithLengthAndNameTypeHandler; |
| static SimpleTypeHandler<1> SharedIdMappedFunctionWithPrototypeTypeHandler; |
| static MissingPropertyTypeHandler MissingPropertyHolderTypeHandler; |
| |
| static SimplePropertyDescriptor const SharedFunctionPropertyDescriptors[2]; |
| static SimplePropertyDescriptor const HeapArgumentsPropertyDescriptors[3]; |
| static SimplePropertyDescriptor const FunctionWithLengthAndPrototypeTypeDescriptors[2]; |
| static SimplePropertyDescriptor const FunctionWithLengthAndNameTypeDescriptors[2]; |
| |
| public: |
| |
| |
| static const ObjectInfoBits EnumFunctionClass = EnumClass_1_Bit; |
| |
| static void InitializeProperties(ThreadContext * threadContext); |
| |
| JavascriptLibrary(GlobalObject* globalObject) : |
| JavascriptLibraryBase(globalObject), |
| inProfileMode(false), |
| inDispatchProfileMode(false), |
| propertyStringMap(nullptr), |
| parseIntFunctionObject(nullptr), |
| evalFunctionObject(nullptr), |
| parseFloatFunctionObject(nullptr), |
| arrayPrototypeToLocaleStringFunction(nullptr), |
| arrayPrototypeToStringFunction(nullptr), |
| identityFunction(nullptr), |
| throwerFunction(nullptr), |
| jsrtContextObject(nullptr), |
| scriptContextCache(nullptr), |
| externalLibraryList(nullptr), |
| cachedForInEnumerator(nullptr), |
| #if ENABLE_COPYONACCESS_ARRAY |
| cacheForCopyOnAccessArraySegments(nullptr), |
| #endif |
| isHybridDebugging(false), |
| isLibraryReadyForHybridDebugging(false), |
| referencedPropertyRecords(nullptr), |
| stringTemplateCallsiteObjectList(nullptr), |
| moduleRecordList(nullptr), |
| rootPath(nullptr), |
| bindRefChunkBegin(nullptr), |
| bindRefChunkCurrent(nullptr), |
| bindRefChunkEnd(nullptr), |
| dynamicFunctionReference(nullptr) |
| { |
| globalObject = globalObject; |
| } |
| |
| void Initialize(ScriptContext* scriptContext, GlobalObject * globalObject); |
| void Uninitialize(); |
| GlobalObject* GetGlobalObject() const { return globalObject; } |
| ScriptContext* GetScriptContext() const { return scriptContext; } |
| |
| Recycler * GetRecycler() const { return recycler; } |
| Var GetPI() { return pi; } |
| Var GetNaN() { return nan; } |
| Var GetNegativeInfinite() { return negativeInfinite; } |
| Var GetPositiveInfinite() { return positiveInfinite; } |
| Var GetMaxValue() { return maxValue; } |
| Var GetMinValue() { return minValue; } |
| Var GetNegativeZero() { return negativeZero; } |
| RecyclableObject* GetUndefined() { return undefinedValue; } |
| RecyclableObject* GetNull() { return nullValue; } |
| JavascriptBoolean* GetTrue() { return booleanTrue; } |
| JavascriptBoolean* GetFalse() { return booleanFalse; } |
| Var GetTrueOrFalse(BOOL value) { return value ? booleanTrue : booleanFalse; } |
| JavascriptSymbol* GetSymbolHasInstance() { return symbolHasInstance; } |
| JavascriptSymbol* GetSymbolIsConcatSpreadable() { return symbolIsConcatSpreadable; } |
| JavascriptSymbol* GetSymbolIterator() { return symbolIterator; } |
| JavascriptSymbol* GetSymbolMatch() { return symbolMatch; } |
| JavascriptSymbol* GetSymbolReplace() { return symbolReplace; } |
| JavascriptSymbol* GetSymbolSearch() { return symbolSearch; } |
| JavascriptSymbol* GetSymbolSplit() { return symbolSplit; } |
| JavascriptSymbol* GetSymbolSpecies() { return symbolSpecies; } |
| JavascriptSymbol* GetSymbolToPrimitive() { return symbolToPrimitive; } |
| JavascriptSymbol* GetSymbolToStringTag() { return symbolToStringTag; } |
| JavascriptSymbol* GetSymbolUnscopables() { return symbolUnscopables; } |
| JavascriptString* GetNullString() { return nullString; } |
| JavascriptString* GetEmptyString() const; |
| JavascriptString* GetWhackString() { return whackString; } |
| JavascriptString* GetUndefinedDisplayString() { return undefinedDisplayString; } |
| JavascriptString* GetNaNDisplayString() { return nanDisplayString; } |
| JavascriptString* GetQuotesString() { return quotesString; } |
| JavascriptString* GetNullDisplayString() { return nullDisplayString; } |
| JavascriptString* GetUnknownDisplayString() { return unknownDisplayString; } |
| JavascriptString* GetCommaDisplayString() { return commaDisplayString; } |
| JavascriptString* GetCommaSpaceDisplayString() { return commaSpaceDisplayString; } |
| JavascriptString* GetTrueDisplayString() { return trueDisplayString; } |
| JavascriptString* GetFalseDisplayString() { return falseDisplayString; } |
| JavascriptString* GetLengthDisplayString() { return lengthDisplayString; } |
| JavascriptString* GetObjectDisplayString() { return objectDisplayString; } |
| JavascriptString* GetStringTypeDisplayString() { return stringTypeDisplayString; } |
| JavascriptString* GetErrorDisplayString() const { return errorDisplayString; } |
| JavascriptString* GetFunctionPrefixString() { return functionPrefixString; } |
| JavascriptString* GetGeneratorFunctionPrefixString() { return generatorFunctionPrefixString; } |
| JavascriptString* GetAsyncFunctionPrefixString() { return asyncFunctionPrefixString; } |
| JavascriptString* GetFunctionDisplayString() { return functionDisplayString; } |
| JavascriptString* GetXDomainFunctionDisplayString() { return xDomainFunctionDisplayString; } |
| JavascriptString* GetInvalidDateString() { return invalidDateString; } |
| JavascriptString* GetObjectTypeDisplayString() const { return objectTypeDisplayString; } |
| JavascriptString* GetFunctionTypeDisplayString() const { return functionTypeDisplayString; } |
| JavascriptString* GetBooleanTypeDisplayString() const { return booleanTypeDisplayString; } |
| JavascriptString* GetNumberTypeDisplayString() const { return numberTypeDisplayString; } |
| |
| // SIMD_JS |
| JavascriptString* GetSIMDFloat32x4DisplayString() const { return simdFloat32x4DisplayString; } |
| JavascriptString* GetSIMDFloat64x2DisplayString() const { return simdFloat64x2DisplayString; } |
| JavascriptString* GetSIMDInt32x4DisplayString() const { return simdInt32x4DisplayString; } |
| JavascriptString* GetSIMDInt16x8DisplayString() const { return simdInt16x8DisplayString; } |
| JavascriptString* GetSIMDInt8x16DisplayString() const { return simdInt8x16DisplayString; } |
| |
| JavascriptString* GetSIMDBool32x4DisplayString() const { return simdBool32x4DisplayString; } |
| JavascriptString* GetSIMDBool16x8DisplayString() const { return simdBool16x8DisplayString; } |
| JavascriptString* GetSIMDBool8x16DisplayString() const { return simdBool8x16DisplayString; } |
| |
| JavascriptString* GetSIMDUint32x4DisplayString() const { return simdUint32x4DisplayString; } |
| JavascriptString* GetSIMDUint16x8DisplayString() const { return simdUint16x8DisplayString; } |
| JavascriptString* GetSIMDUint8x16DisplayString() const { return simdUint8x16DisplayString; } |
| |
| JavascriptString* GetSymbolTypeDisplayString() const { return symbolTypeDisplayString; } |
| JavascriptString* GetDebuggerDeadZoneBlockVariableString() { Assert(debuggerDeadZoneBlockVariableString); return debuggerDeadZoneBlockVariableString; } |
| JavascriptRegExp* CreateEmptyRegExp(); |
| JavascriptFunction* GetObjectConstructor() const {return objectConstructor; } |
| JavascriptFunction* GetBooleanConstructor() const {return booleanConstructor; } |
| JavascriptFunction* GetDateConstructor() const {return dateConstructor; } |
| JavascriptFunction* GetFunctionConstructor() const {return functionConstructor; } |
| JavascriptFunction* GetNumberConstructor() const {return numberConstructor; } |
| JavascriptRegExpConstructor* GetRegExpConstructor() const {return regexConstructor; } |
| JavascriptFunction* GetStringConstructor() const {return stringConstructor; } |
| JavascriptFunction* GetArrayBufferConstructor() const {return arrayBufferConstructor; } |
| JavascriptFunction* GetErrorConstructor() const { return errorConstructor; } |
| JavascriptFunction* GetInt8ArrayConstructor() const {return Int8ArrayConstructor; } |
| JavascriptFunction* GetUint8ArrayConstructor() const {return Uint8ArrayConstructor; } |
| JavascriptFunction* GetInt16ArrayConstructor() const {return Int16ArrayConstructor; } |
| JavascriptFunction* GetUint16ArrayConstructor() const {return Uint16ArrayConstructor; } |
| JavascriptFunction* GetInt32ArrayConstructor() const {return Int32ArrayConstructor; } |
| JavascriptFunction* GetUint32ArrayConstructor() const {return Uint32ArrayConstructor; } |
| JavascriptFunction* GetFloat32ArrayConstructor() const {return Float32ArrayConstructor; } |
| JavascriptFunction* GetFloat64ArrayConstructor() const {return Float64ArrayConstructor; } |
| JavascriptFunction* GetWeakMapConstructor() const {return weakMapConstructor; } |
| JavascriptFunction* GetMapConstructor() const {return mapConstructor; } |
| JavascriptFunction* GetSetConstructor() const {return setConstructor; } |
| JavascriptFunction* GetSymbolConstructor() const {return symbolConstructor; } |
| JavascriptFunction* GetEvalFunctionObject() { return evalFunctionObject; } |
| JavascriptFunction* GetArrayPrototypeValuesFunction() { return EnsureArrayPrototypeValuesFunction(); } |
| JavascriptFunction* GetArrayIteratorPrototypeBuiltinNextFunction() { return arrayIteratorPrototypeBuiltinNextFunction; } |
| DynamicObject* GetMathObject() const {return mathObject; } |
| DynamicObject* GetJSONObject() const {return JSONObject; } |
| DynamicObject* GetReflectObject() const { return reflectObject; } |
| const PropertyDescriptor* GetDefaultPropertyDescriptor() const { return &defaultPropertyDescriptor; } |
| DynamicObject* GetMissingPropertyHolder() const { return missingPropertyHolder; } |
| |
| |
| #ifdef ENABLE_INTL_OBJECT |
| DynamicObject* GetINTLObject() const { return IntlObject; } |
| void ResetIntlObject(); |
| void EnsureIntlObjectReady(); |
| template <class Fn> |
| void InitializeIntlForPrototypes(Fn fn); |
| void InitializeIntlForStringPrototype(); |
| void InitializeIntlForDatePrototype(); |
| void InitializeIntlForNumberPrototype(); |
| #endif |
| |
| #ifdef ENABLE_DEBUG_CONFIG_OPTIONS |
| DynamicType * GetDebugDisposableObjectType() { return debugDisposableObjectType; } |
| DynamicType * GetDebugFuncExecutorInDisposeObjectType() { return debugFuncExecutorInDisposeObjectType; } |
| #endif |
| |
| StaticType * GetBooleanTypeStatic() const { return booleanTypeStatic; } |
| DynamicType * GetBooleanTypeDynamic() const { return booleanTypeDynamic; } |
| DynamicType * GetDateType() const { return dateType; } |
| DynamicType * GetBoundFunctionType() const { return boundFunctionType; } |
| DynamicType * GetRegExpConstructorType() const { return regexConstructorType; } |
| StaticType * GetEnumeratorType() const { return enumeratorType; } |
| DynamicType * GetSpreadArgumentType() const { return SpreadArgumentType; } |
| StaticType * GetWithType() const { return withType; } |
| DynamicType * GetErrorType() const { return errorType; } |
| DynamicType * GetEvalErrorType() const { return evalErrorType; } |
| DynamicType * GetRangeErrorType() const { return rangeErrorType; } |
| DynamicType * GetReferenceErrorType() const { return referenceErrorType; } |
| DynamicType * GetSyntaxErrorType() const { return syntaxErrorType; } |
| DynamicType * GetTypeErrorType() const { return typeErrorType; } |
| DynamicType * GetURIErrorType() const { return uriErrorType; } |
| StaticType * GetNumberTypeStatic() const { return numberTypeStatic; } |
| StaticType * GetInt64TypeStatic() const { return int64NumberTypeStatic; } |
| StaticType * GetUInt64TypeStatic() const { return uint64NumberTypeStatic; } |
| DynamicType * GetNumberTypeDynamic() const { return numberTypeDynamic; } |
| DynamicType * GetPromiseType() const { return promiseType; } |
| |
| // SIMD_JS |
| DynamicType * GetSIMDBool8x16TypeDynamic() const { return simdBool8x16TypeDynamic; } |
| DynamicType * GetSIMDBool16x8TypeDynamic() const { return simdBool16x8TypeDynamic; } |
| DynamicType * GetSIMDBool32x4TypeDynamic() const { return simdBool32x4TypeDynamic; } |
| DynamicType * GetSIMDInt8x16TypeDynamic() const { return simdInt8x16TypeDynamic; } |
| DynamicType * GetSIMDInt16x8TypeDynamic() const { return simdInt16x8TypeDynamic; } |
| DynamicType * GetSIMDInt32x4TypeDynamic() const { return simdInt32x4TypeDynamic; } |
| DynamicType * GetSIMDUint8x16TypeDynamic() const { return simdUint8x16TypeDynamic; } |
| DynamicType * GetSIMDUint16x8TypeDynamic() const { return simdUint16x8TypeDynamic; } |
| DynamicType * GetSIMDUint32x4TypeDynamic() const { return simdUint32x4TypeDynamic; } |
| DynamicType * GetSIMDFloat32x4TypeDynamic() const { return simdFloat32x4TypeDynamic; } |
| |
| StaticType* GetSIMDFloat32x4TypeStatic() const { return simdFloat32x4TypeStatic; } |
| StaticType* GetSIMDFloat64x2TypeStatic() const { return simdFloat64x2TypeStatic; } |
| StaticType* GetSIMDInt32x4TypeStatic() const { return simdInt32x4TypeStatic; } |
| StaticType* GetSIMDInt16x8TypeStatic() const { return simdInt16x8TypeStatic; } |
| StaticType* GetSIMDInt8x16TypeStatic() const { return simdInt8x16TypeStatic; } |
| StaticType* GetSIMDBool32x4TypeStatic() const { return simdBool32x4TypeStatic; } |
| StaticType* GetSIMDBool16x8TypeStatic() const { return simdBool16x8TypeStatic; } |
| StaticType* GetSIMDBool8x16TypeStatic() const { return simdBool8x16TypeStatic; } |
| StaticType* GetSIMDUInt32x4TypeStatic() const { return simdUint32x4TypeStatic; } |
| StaticType* GetSIMDUint16x8TypeStatic() const { return simdUint16x8TypeStatic; } |
| StaticType* GetSIMDUint8x16TypeStatic() const { return simdUint8x16TypeStatic; } |
| |
| DynamicType * GetObjectLiteralType(uint16 requestedInlineSlotCapacity); |
| DynamicType * GetObjectHeaderInlinedLiteralType(uint16 requestedInlineSlotCapacity); |
| DynamicType * GetObjectType() const { return objectTypes[0]; } |
| DynamicType * GetObjectHeaderInlinedType() const { return objectHeaderInlinedTypes[0]; } |
| StaticType * GetSymbolTypeStatic() const { return symbolTypeStatic; } |
| DynamicType * GetSymbolTypeDynamic() const { return symbolTypeDynamic; } |
| DynamicType * GetProxyType() const { return proxyType; } |
| DynamicType * GetJavascriptEnumeratorIteratorType() const { return javascriptEnumeratorIteratorType; } |
| DynamicType * GetHeapArgumentsObjectType() const { return heapArgumentsType; } |
| DynamicType * GetActivationObjectType() const { return activationObjectType; } |
| DynamicType * GetArrayType() const { return arrayType; } |
| DynamicType * GetNativeIntArrayType() const { return nativeIntArrayType; } |
| #if ENABLE_COPYONACCESS_ARRAY |
| DynamicType * GetCopyOnAccessNativeIntArrayType() const { return copyOnAccessNativeIntArrayType; } |
| #endif |
| DynamicType * GetNativeFloatArrayType() const { return nativeFloatArrayType; } |
| DynamicType * GetRegexPrototypeType() const { return regexPrototypeType; } |
| DynamicType * GetRegexType() const { return regexType; } |
| DynamicType * GetRegexResultType() const { return regexResultType; } |
| DynamicType * GetArrayBufferType() const { return arrayBufferType; } |
| StaticType * GetStringTypeStatic() const { AssertMsg(stringTypeStatic, "Where's stringTypeStatic?"); return stringTypeStatic; } |
| DynamicType * GetStringTypeDynamic() const { return stringTypeDynamic; } |
| StaticType * GetVariantDateType() const { return variantDateType; } |
| void EnsureDebugObject(DynamicObject* newDebugObject); |
| DynamicObject* GetDebugObject() const { Assert(debugObject != nullptr); return debugObject; } |
| DynamicType * GetMapType() const { return mapType; } |
| DynamicType * GetSetType() const { return setType; } |
| DynamicType * GetWeakMapType() const { return weakMapType; } |
| DynamicType * GetWeakSetType() const { return weakSetType; } |
| DynamicType * GetArrayIteratorType() const { return arrayIteratorType; } |
| DynamicType * GetMapIteratorType() const { return mapIteratorType; } |
| DynamicType * GetSetIteratorType() const { return setIteratorType; } |
| DynamicType * GetStringIteratorType() const { return stringIteratorType; } |
| JavascriptFunction* GetDefaultAccessorFunction() const { return defaultAccessorFunction; } |
| JavascriptFunction* GetStackTraceAccessorFunction() const { return stackTraceAccessorFunction; } |
| JavascriptFunction* GetThrowTypeErrorAccessorFunction() const { return throwTypeErrorAccessorFunction; } |
| JavascriptFunction* GetThrowTypeErrorCallerAccessorFunction() const { return throwTypeErrorCallerAccessorFunction; } |
| JavascriptFunction* GetThrowTypeErrorCalleeAccessorFunction() const { return throwTypeErrorCalleeAccessorFunction; } |
| JavascriptFunction* GetThrowTypeErrorArgumentsAccessorFunction() const { return throwTypeErrorArgumentsAccessorFunction; } |
| JavascriptFunction* Get__proto__getterFunction() const { return __proto__getterFunction; } |
| JavascriptFunction* Get__proto__setterFunction() const { return __proto__setterFunction; } |
| |
| JavascriptFunction* GetObjectValueOfFunction() const { return objectValueOfFunction; } |
| JavascriptFunction* GetObjectToStringFunction() const { return objectToStringFunction; } |
| |
| // SIMD_JS |
| JavascriptFunction* GetSIMDFloat32x4ToStringFunction() const { return simdFloat32x4ToStringFunction; } |
| JavascriptFunction* GetSIMDFloat64x2ToStringFunction() const { return simdFloat64x2ToStringFunction; } |
| JavascriptFunction* GetSIMDInt32x4ToStringFunction() const { return simdInt32x4ToStringFunction; } |
| JavascriptFunction* GetSIMDInt16x8ToStringFunction() const { return simdInt16x8ToStringFunction; } |
| JavascriptFunction* GetSIMDInt8x16ToStringFunction() const { return simdInt8x16ToStringFunction; } |
| JavascriptFunction* GetSIMDBool32x4ToStringFunction() const { return simdBool32x4ToStringFunction; } |
| JavascriptFunction* GetSIMDBool16x8ToStringFunction() const { return simdBool16x8ToStringFunction; } |
| JavascriptFunction* GetSIMDBool8x16ToStringFunction() const { return simdBool8x16ToStringFunction; } |
| JavascriptFunction* GetSIMDUint32x4ToStringFunction() const { return simdUint32x4ToStringFunction; } |
| JavascriptFunction* GetSIMDUint16x8ToStringFunction() const { return simdUint16x8ToStringFunction; } |
| JavascriptFunction* GetSIMDUint8x16ToStringFunction() const { return simdUint8x16ToStringFunction; } |
| |
| JavascriptFunction* GetDebugObjectNonUserGetterFunction() const { return debugObjectNonUserGetterFunction; } |
| JavascriptFunction* GetDebugObjectNonUserSetterFunction() const { return debugObjectNonUserSetterFunction; } |
| |
| UnifiedRegex::RegexPattern * GetEmptyRegexPattern() const { return emptyRegexPattern; } |
| JavascriptFunction* GetRegexExecFunction() const { return regexExecFunction; } |
| JavascriptFunction* GetRegexFlagsGetterFunction() const { return regexFlagsGetterFunction; } |
| JavascriptFunction* GetRegexGlobalGetterFunction() const { return regexGlobalGetterFunction; } |
| JavascriptFunction* GetRegexStickyGetterFunction() const { return regexStickyGetterFunction; } |
| JavascriptFunction* GetRegexUnicodeGetterFunction() const { return regexUnicodeGetterFunction; } |
| |
| int GetRegexConstructorSlotIndex() const { return regexConstructorSlotIndex; } |
| int GetRegexExecSlotIndex() const { return regexExecSlotIndex; } |
| int GetRegexFlagsGetterSlotIndex() const { return regexFlagsGetterSlotIndex; } |
| int GetRegexGlobalGetterSlotIndex() const { return regexGlobalGetterSlotIndex; } |
| int GetRegexStickyGetterSlotIndex() const { return regexStickyGetterSlotIndex; } |
| int GetRegexUnicodeGetterSlotIndex() const { return regexUnicodeGetterSlotIndex; } |
| |
| TypePath* GetRootPath() const { return rootPath; } |
| void BindReference(void * addr); |
| void CleanupForClose(); |
| void BeginDynamicFunctionReferences(); |
| void EndDynamicFunctionReferences(); |
| void RegisterDynamicFunctionReference(FunctionProxy* func); |
| |
| void SetDebugObjectNonUserAccessor(FunctionInfo *funcGetter, FunctionInfo *funcSetter); |
| |
| JavascriptFunction* GetDebugObjectDebugModeGetterFunction() const { return debugObjectDebugModeGetterFunction; } |
| void SetDebugObjectDebugModeAccessor(FunctionInfo *funcGetter); |
| |
| #ifdef ENABLE_DEBUG_CONFIG_OPTIONS |
| JavascriptFunction* GetDebugObjectFaultInjectionCookieGetterFunction() const { return debugObjectFaultInjectionCookieGetterFunction; } |
| JavascriptFunction* GetDebugObjectFaultInjectionCookieSetterFunction() const { return debugObjectFaultInjectionCookieSetterFunction; } |
| void SetDebugObjectFaultInjectionCookieGetterAccessor(FunctionInfo *funcGetter, FunctionInfo *funcSetter); |
| #endif |
| |
| JavascriptFunction* GetArrayPrototypeToStringFunction() const { return arrayPrototypeToStringFunction; } |
| JavascriptFunction* GetArrayPrototypeToLocaleStringFunction() const { return arrayPrototypeToLocaleStringFunction; } |
| JavascriptFunction* GetIdentityFunction() const { return identityFunction; } |
| JavascriptFunction* GetThrowerFunction() const { return throwerFunction; } |
| |
| void SetNativeHostPromiseContinuationFunction(PromiseContinuationCallback function, void *state); |
| |
| void PinJsrtContextObject(FinalizableObject* jsrtContext); |
| FinalizableObject* GetPinnedJsrtContextObject(); |
| void EnqueueTask(Var taskVar); |
| |
| HeapArgumentsObject* CreateHeapArguments(Var frameObj, uint formalCount); |
| JavascriptArray* CreateArray(); |
| JavascriptArray* CreateArray(uint32 length); |
| JavascriptArray *CreateArrayOnStack(void *const stackAllocationPointer); |
| JavascriptNativeIntArray* CreateNativeIntArray(); |
| JavascriptNativeIntArray* CreateNativeIntArray(uint32 length); |
| #if ENABLE_COPYONACCESS_ARRAY |
| JavascriptCopyOnAccessNativeIntArray* CreateCopyOnAccessNativeIntArray(); |
| JavascriptCopyOnAccessNativeIntArray* CreateCopyOnAccessNativeIntArray(uint32 length); |
| #endif |
| JavascriptNativeFloatArray* CreateNativeFloatArray(); |
| JavascriptNativeFloatArray* CreateNativeFloatArray(uint32 length); |
| JavascriptArray* CreateArray(uint32 length, uint32 size); |
| ArrayBuffer* CreateArrayBuffer(uint32 length); |
| ArrayBuffer* CreateArrayBuffer(byte* buffer, uint32 length); |
| ArrayBuffer* CreateProjectionArraybuffer(uint32 length); |
| ArrayBuffer* CreateProjectionArraybuffer(byte* buffer, uint32 length); |
| DataView* CreateDataView(ArrayBuffer* arrayBuffer, uint32 offSet, uint32 mappedLength); |
| |
| template <typename TypeName, bool clamped> |
| inline DynamicType* GetTypedArrayType(TypeName); |
| |
| template<> inline DynamicType* GetTypedArrayType<int8,false>(int8) { return int8ArrayType; }; |
| template<> inline DynamicType* GetTypedArrayType<uint8,false>(uint8) { return uint8ArrayType; }; |
| template<> inline DynamicType* GetTypedArrayType<uint8,true>(uint8) { return uint8ClampedArrayType; }; |
| template<> inline DynamicType* GetTypedArrayType<int16,false>(int16) { return int16ArrayType; }; |
| template<> inline DynamicType* GetTypedArrayType<uint16,false>(uint16) { return uint16ArrayType; }; |
| template<> inline DynamicType* GetTypedArrayType<int32,false>(int32) { return int32ArrayType; }; |
| template<> inline DynamicType* GetTypedArrayType<uint32,false>(uint32) { return uint32ArrayType; }; |
| template<> inline DynamicType* GetTypedArrayType<float,false>(float) { return float32ArrayType; }; |
| template<> inline DynamicType* GetTypedArrayType<double,false>(double) { return float64ArrayType; }; |
| template<> inline DynamicType* GetTypedArrayType<int64,false>(int64) { return int64ArrayType; }; |
| template<> inline DynamicType* GetTypedArrayType<uint64,false>(uint64) { return uint64ArrayType; }; |
| template<> inline DynamicType* GetTypedArrayType<bool,false>(bool) { return boolArrayType; }; |
| |
| DynamicType* GetCharArrayType() { return charArrayType; }; |
| |
| // |
| // This method would be used for creating array literals, when we really need to create a huge array |
| // Avoids checks at runtime. |
| // |
| JavascriptArray* CreateArrayLiteral(uint32 length); |
| JavascriptNativeIntArray* CreateNativeIntArrayLiteral(uint32 length); |
| |
| #if ENABLE_PROFILE_INFO |
| JavascriptNativeIntArray* CreateCopyOnAccessNativeIntArrayLiteral(ArrayCallSiteInfo *arrayInfo, FunctionBody *functionBody, const Js::AuxArray<int32> *ints); |
| #endif |
| |
| JavascriptNativeFloatArray* CreateNativeFloatArrayLiteral(uint32 length); |
| |
| JavascriptBoolean* CreateBoolean(BOOL value); |
| JavascriptDate* CreateDate(); |
| JavascriptDate* CreateDate(double value); |
| JavascriptDate* CreateDate(SYSTEMTIME* pst); |
| JavascriptMap* CreateMap(); |
| JavascriptSet* CreateSet(); |
| JavascriptWeakMap* CreateWeakMap(); |
| JavascriptWeakSet* CreateWeakSet(); |
| JavascriptError* CreateError(); |
| JavascriptError* CreateError(DynamicType* errorType, BOOL isExternal = FALSE); |
| JavascriptError* CreateExternalError(ErrorTypeEnum errorTypeEnum); |
| JavascriptError* CreateEvalError(); |
| JavascriptError* CreateRangeError(); |
| JavascriptError* CreateReferenceError(); |
| JavascriptError* CreateSyntaxError(); |
| JavascriptError* CreateTypeError(); |
| JavascriptError* CreateURIError(); |
| JavascriptError* CreateStackOverflowError(); |
| JavascriptError* CreateOutOfMemoryError(); |
| JavascriptSymbol* CreateSymbol(JavascriptString* description); |
| JavascriptSymbol* CreateSymbol(const char16* description, int descriptionLength); |
| JavascriptSymbol* CreateSymbol(const PropertyRecord* propertyRecord); |
| JavascriptPromise* CreatePromise(); |
| JavascriptGenerator* CreateGenerator(Arguments& args, ScriptFunction* scriptFunction, RecyclableObject* prototype); |
| JavascriptFunction* CreateNonProfiledFunction(FunctionInfo * functionInfo); |
| template <class MethodType> |
| JavascriptExternalFunction* CreateIdMappedExternalFunction(MethodType entryPoint, DynamicType *pPrototypeType); |
| JavascriptExternalFunction* CreateExternalConstructor(Js::ExternalMethod entryPoint, PropertyId nameId, RecyclableObject * prototype); |
| JavascriptExternalFunction* CreateExternalConstructor(Js::ExternalMethod entryPoint, PropertyId nameId, InitializeMethod method, unsigned short deferredTypeSlots, bool hasAccessors); |
| static DynamicTypeHandler * GetDeferredPrototypeGeneratorFunctionTypeHandler(ScriptContext* scriptContext); |
| DynamicType * CreateDeferredPrototypeGeneratorFunctionType(JavascriptMethod entrypoint, bool isAnonymousFunction, bool isShared = false); |
| |
| static DynamicTypeHandler * GetDeferredPrototypeFunctionTypeHandler(ScriptContext* scriptContext); |
| static DynamicTypeHandler * GetDeferredAnonymousPrototypeFunctionTypeHandler(); |
| static DynamicTypeHandler * GetDeferredAnonymousPrototypeGeneratorFunctionTypeHandler(); |
| |
| DynamicTypeHandler * GetDeferredFunctionTypeHandler(); |
| DynamicTypeHandler * ScriptFunctionTypeHandler(bool noPrototypeProperty, bool isAnonymousFunction); |
| DynamicTypeHandler * GetDeferredAnonymousFunctionTypeHandler(); |
| template<bool isNameAvailable, bool isPrototypeAvailable = true> |
| static DynamicTypeHandler * GetDeferredFunctionTypeHandlerBase(); |
| template<bool isNameAvailable, bool isPrototypeAvailable = true> |
| static DynamicTypeHandler * GetDeferredGeneratorFunctionTypeHandlerBase(); |
| |
| DynamicType * CreateDeferredPrototypeFunctionType(JavascriptMethod entrypoint); |
| DynamicType * CreateDeferredPrototypeFunctionTypeNoProfileThunk(JavascriptMethod entrypoint, bool isShared = false); |
| DynamicType * CreateFunctionType(JavascriptMethod entrypoint, RecyclableObject* prototype = nullptr); |
| DynamicType * CreateFunctionWithLengthType(FunctionInfo * functionInfo); |
| DynamicType * CreateFunctionWithLengthAndNameType(FunctionInfo * functionInfo); |
| DynamicType * CreateFunctionWithLengthAndPrototypeType(FunctionInfo * functionInfo); |
| DynamicType * CreateFunctionWithLengthType(DynamicObject * prototype, FunctionInfo * functionInfo); |
| DynamicType * CreateFunctionWithLengthAndNameType(DynamicObject * prototype, FunctionInfo * functionInfo); |
| DynamicType * CreateFunctionWithLengthAndPrototypeType(DynamicObject * prototype, FunctionInfo * functionInfo); |
| ScriptFunction * CreateScriptFunction(FunctionProxy* proxy); |
| AsmJsScriptFunction * CreateAsmJsScriptFunction(FunctionProxy* proxy); |
| ScriptFunctionWithInlineCache * CreateScriptFunctionWithInlineCache(FunctionProxy* proxy); |
| GeneratorVirtualScriptFunction * CreateGeneratorVirtualScriptFunction(FunctionProxy* proxy); |
| DynamicType * CreateGeneratorType(RecyclableObject* prototype); |
| |
| JavascriptEnumerator * GetNullEnumerator() const; |
| #if 0 |
| JavascriptNumber* CreateNumber(double value); |
| #endif |
| JavascriptNumber* CreateNumber(double value, RecyclerJavascriptNumberAllocator * numberAllocator); |
| JavascriptGeneratorFunction* CreateGeneratorFunction(JavascriptMethod entryPoint, GeneratorVirtualScriptFunction* scriptFunction); |
| JavascriptExternalFunction* CreateExternalFunction(ExternalMethod entryPointer, PropertyId nameId, Var signature, JavascriptTypeId prototypeTypeId, UINT64 flags); |
| JavascriptExternalFunction* CreateExternalFunction(ExternalMethod entryPointer, Var nameId, Var signature, JavascriptTypeId prototypeTypeId, UINT64 flags); |
| JavascriptExternalFunction* CreateStdCallExternalFunction(StdCallJavascriptMethod entryPointer, PropertyId nameId, void *callbackState); |
| JavascriptExternalFunction* CreateStdCallExternalFunction(StdCallJavascriptMethod entryPointer, Var nameId, void *callbackState); |
| JavascriptPromiseAsyncSpawnExecutorFunction* CreatePromiseAsyncSpawnExecutorFunction(JavascriptMethod entryPoint, JavascriptGenerator* generatorFunction, Var target); |
| JavascriptPromiseAsyncSpawnStepArgumentExecutorFunction* CreatePromiseAsyncSpawnStepArgumentExecutorFunction(JavascriptMethod entryPoint, JavascriptGenerator* generator, Var argument, JavascriptFunction* resolve = NULL, JavascriptFunction* reject = NULL, bool isReject = false); |
| JavascriptPromiseCapabilitiesExecutorFunction* CreatePromiseCapabilitiesExecutorFunction(JavascriptMethod entryPoint, JavascriptPromiseCapability* capability); |
| JavascriptPromiseResolveOrRejectFunction* CreatePromiseResolveOrRejectFunction(JavascriptMethod entryPoint, JavascriptPromise* promise, bool isReject, JavascriptPromiseResolveOrRejectFunctionAlreadyResolvedWrapper* alreadyResolvedRecord); |
| JavascriptPromiseReactionTaskFunction* CreatePromiseReactionTaskFunction(JavascriptMethod entryPoint, JavascriptPromiseReaction* reaction, Var argument); |
| JavascriptPromiseResolveThenableTaskFunction* CreatePromiseResolveThenableTaskFunction(JavascriptMethod entryPoint, JavascriptPromise* promise, RecyclableObject* thenable, RecyclableObject* thenFunction); |
| JavascriptPromiseAllResolveElementFunction* CreatePromiseAllResolveElementFunction(JavascriptMethod entryPoint, uint32 index, JavascriptArray* values, JavascriptPromiseCapability* capabilities, JavascriptPromiseAllResolveElementFunctionRemainingElementsWrapper* remainingElements); |
| JavascriptExternalFunction* CreateWrappedExternalFunction(JavascriptExternalFunction* wrappedFunction); |
| |
| #if ENABLE_NATIVE_CODEGEN |
| JavascriptNumber* CreateCodeGenNumber(CodeGenNumberAllocator *alloc, double value); |
| #endif |
| |
| DynamicObject* CreateGeneratorConstructorPrototypeObject(); |
| DynamicObject* CreateConstructorPrototypeObject(JavascriptFunction * constructor); |
| DynamicObject* CreateObject(const bool allowObjectHeaderInlining = false, const PropertyIndex requestedInlineSlotCapacity = 0); |
| DynamicObject* CreateObject(DynamicTypeHandler * typeHandler); |
| DynamicObject* CreateActivationObject(); |
| DynamicObject* CreatePseudoActivationObject(); |
| DynamicObject* CreateBlockActivationObject(); |
| DynamicObject* CreateConsoleScopeActivationObject(); |
| DynamicType* CreateObjectType(RecyclableObject* prototype, Js::TypeId typeId, uint16 requestedInlineSlotCapacity); |
| DynamicType* CreateObjectTypeNoCache(RecyclableObject* prototype, Js::TypeId typeId); |
| DynamicType* CreateObjectType(RecyclableObject* prototype, uint16 requestedInlineSlotCapacity); |
| DynamicObject* CreateObject(RecyclableObject* prototype, uint16 requestedInlineSlotCapacity = 0); |
| |
| typedef JavascriptString* LibStringType; // used by diagnostics template |
| template< size_t N > JavascriptString* CreateStringFromCppLiteral(const char16 (&value)[N]) const; |
| template<> JavascriptString* CreateStringFromCppLiteral(const char16 (&value)[1]) const; // Specialization for empty string |
| template<> JavascriptString* CreateStringFromCppLiteral(const char16 (&value)[2]) const; // Specialization for single-char strings |
| PropertyString* CreatePropertyString(const Js::PropertyRecord* propertyRecord); |
| PropertyString* CreatePropertyString(const Js::PropertyRecord* propertyRecord, ArenaAllocator *arena); |
| |
| JavascriptVariantDate* CreateVariantDate(const double value); |
| |
| JavascriptBooleanObject* CreateBooleanObject(BOOL value); |
| JavascriptBooleanObject* CreateBooleanObject(); |
| JavascriptNumberObject* CreateNumberObjectWithCheck(double value); |
| JavascriptNumberObject* CreateNumberObject(Var number); |
| JavascriptSIMDObject* CreateSIMDObject(Var simdValue, TypeId typeDescriptor); |
| JavascriptStringObject* CreateStringObject(JavascriptString* value); |
| JavascriptStringObject* CreateStringObject(const char16* value, charcount_t length); |
| JavascriptSymbolObject* CreateSymbolObject(JavascriptSymbol* value); |
| JavascriptArrayIterator* CreateArrayIterator(Var iterable, JavascriptArrayIteratorKind kind); |
| JavascriptMapIterator* CreateMapIterator(JavascriptMap* map, JavascriptMapIteratorKind kind); |
| JavascriptSetIterator* CreateSetIterator(JavascriptSet* set, JavascriptSetIteratorKind kind); |
| JavascriptStringIterator* CreateStringIterator(JavascriptString* string); |
| JavascriptRegExp* CreateRegExp(UnifiedRegex::RegexPattern* pattern); |
| |
| DynamicObject* CreateIteratorResultObject(Var value, Var done); |
| DynamicObject* CreateIteratorResultObjectValueFalse(Var value); |
| DynamicObject* CreateIteratorResultObjectUndefinedTrue(); |
| |
| RecyclableObject* CreateThrowErrorObject(JavascriptError* error); |
| |
| JavascriptFunction* EnsurePromiseResolveFunction(); |
| |
| void SetCrossSiteForSharedFunctionType(JavascriptFunction * function); |
| |
| bool IsPRNGSeeded() { return isPRNGSeeded; } |
| uint64 GetRandSeed0() { return randSeed0; } |
| uint64 GetRandSeed1() { return randSeed1; } |
| void SetIsPRNGSeeded(bool val) { isPRNGSeeded = val; } |
| void SetRandSeed0(uint64 rs) { randSeed0 = rs;} |
| void SetRandSeed1(uint64 rs) { randSeed1 = rs; } |
| |
| void SetProfileMode(bool fSet); |
| void SetDispatchProfile(bool fSet, JavascriptMethod dispatchInvoke); |
| HRESULT ProfilerRegisterBuiltIns(); |
| |
| #if ENABLE_COPYONACCESS_ARRAY |
| static bool IsCopyOnAccessArrayCallSite(JavascriptLibrary *lib, ArrayCallSiteInfo *arrayInfo, uint32 length); |
| static bool IsCachedCopyOnAccessArrayCallSite(const JavascriptLibrary *lib, ArrayCallSiteInfo *arrayInfo); |
| template <typename T> |
| static void CheckAndConvertCopyOnAccessNativeIntArray(const T instance); |
| #endif |
| |
| void EnsureStringTemplateCallsiteObjectList(); |
| void AddStringTemplateCallsiteObject(RecyclableObject* callsite); |
| RecyclableObject* TryGetStringTemplateCallsiteObject(ParseNodePtr pnode); |
| RecyclableObject* TryGetStringTemplateCallsiteObject(RecyclableObject* callsite); |
| |
| #if DBG_DUMP |
| static const char16* GetStringTemplateCallsiteObjectKey(Var callsite); |
| #endif |
| |
| JavascriptFunction** GetBuiltinFunctions(); |
| INT_PTR* GetVTableAddresses(); |
| static BuiltinFunction GetBuiltinFunctionForPropId(PropertyId id); |
| static BuiltinFunction GetBuiltInForFuncInfo(FunctionInfo* funcInfo, ScriptContext *scriptContext); |
| #if DBG |
| static void CheckRegisteredBuiltIns(JavascriptFunction** builtInFuncs, ScriptContext *scriptContext) |
| { |
| byte count = BuiltinFunction::Count; |
| for(byte index = 0; index < count; index++) |
| { |
| Assert(!builtInFuncs[index] || (index == GetBuiltInForFuncInfo(builtInFuncs[index]->GetFunctionInfo(), scriptContext))); |
| } |
| |
| } |
| #endif |
| static BOOL CanFloatPreferenceFunc(BuiltinFunction index); |
| static BOOL IsFltFunc(BuiltinFunction index); |
| static bool IsFloatFunctionCallsite(BuiltinFunction index, size_t argc); |
| static bool IsFltBuiltInConst(PropertyId id); |
| static size_t GetArgCForBuiltIn(BuiltinFunction index) |
| { |
| Assert(index < _countof(JavascriptLibrary::LibraryFunctionArgC)); |
| return JavascriptLibrary::LibraryFunctionArgC[index]; |
| } |
| static BuiltInFlags GetFlagsForBuiltIn(BuiltinFunction index) |
| { |
| Assert(index < _countof(JavascriptLibrary::LibraryFunctionFlags)); |
| return (BuiltInFlags)JavascriptLibrary::LibraryFunctionFlags[index]; |
| } |
| static BuiltinFunction GetBuiltInInlineCandidateId(Js::OpCode opCode); |
| static BuiltInArgSpecializationType GetBuiltInArgType(BuiltInFlags flags, BuiltInArgShift argGroup); |
| static bool IsTypeSpecRequired(BuiltInFlags flags) |
| { |
| return GetBuiltInArgType(flags, BuiltInArgShift::BIAS_Src1) || GetBuiltInArgType(flags, BuiltInArgShift::BIAS_Src2) || GetBuiltInArgType(flags, BuiltInArgShift::BIAS_Dst); |
| } |
| #if ENABLE_DEBUG_CONFIG_OPTIONS |
| static char16 const * GetNameForBuiltIn(BuiltinFunction index) |
| { |
| Assert(index < _countof(JavascriptLibrary::LibraryFunctionName)); |
| return JavascriptLibrary::LibraryFunctionName[index]; |
| } |
| #endif |
| |
| PropertyStringCacheMap* EnsurePropertyStringMap(); |
| PropertyStringCacheMap* GetPropertyStringMap() { return this->propertyStringMap; } |
| |
| ForInObjectEnumerator* JavascriptLibrary::GetAndClearForInEnumeratorCache(); |
| void SetForInEnumeratorCache(ForInObjectEnumerator* enumerator); |
| |
| void TypeAndPrototypesAreEnsuredToHaveOnlyWritableDataProperties(Type *const type); |
| void NoPrototypeChainsAreEnsuredToHaveOnlyWritableDataProperties(); |
| |
| static bool ArrayIteratorPrototypeHasUserDefinedNext(ScriptContext *scriptContext); |
| |
| HRESULT EnsureReadyIfHybridDebugging(bool isScriptEngineReady = true); |
| |
| CharStringCache& GetCharStringCache() { return charStringCache; } |
| static JavascriptLibrary * FromCharStringCache(CharStringCache * cache) |
| { |
| return (JavascriptLibrary *)((uintptr_t)cache - offsetof(JavascriptLibrary, charStringCache)); |
| } |
| |
| bool GetArrayObjectHasUserDefinedSpecies() const { return arrayObjectHasUserDefinedSpecies; } |
| void SetArrayObjectHasUserDefinedSpecies(bool val) { arrayObjectHasUserDefinedSpecies = val; } |
| |
| ModuleRecordList* EnsureModuleRecordList(); |
| SourceTextModuleRecord* GetModuleRecord(uint moduleId); |
| |
| private: |
| #ifdef ENABLE_DEBUG_CONFIG_OPTIONS |
| // Declare fretest/debug properties here since otherwise it can cause |
| // a mismatch between fre mshtml and fretest jscript9 causing undefined behavior |
| |
| DynamicType * debugDisposableObjectType; |
| DynamicType * debugFuncExecutorInDisposeObjectType; |
| #endif |
| |
| void InitializePrototypes(); |
| void InitializeTypes(); |
| void InitializeGlobal(GlobalObject * globalObject); |
| |
| static void __cdecl InitializeArrayConstructor(DynamicObject* arrayConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeArrayPrototype(DynamicObject* arrayPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| |
| static void __cdecl InitializeArrayBufferConstructor(DynamicObject* arrayBufferConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeArrayBufferPrototype(DynamicObject* arrayBufferPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeDataViewConstructor(DynamicObject* dataViewConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeDataViewPrototype(DynamicObject* dataViewPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| |
| static void __cdecl InitializeErrorConstructor(DynamicObject* constructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeErrorPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeEvalErrorConstructor(DynamicObject* constructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeEvalErrorPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeRangeErrorConstructor(DynamicObject* constructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeRangeErrorPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeReferenceErrorConstructor(DynamicObject* constructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeReferenceErrorPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSyntaxErrorConstructor(DynamicObject* constructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSyntaxErrorPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeTypeErrorConstructor(DynamicObject* constructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeTypeErrorPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeURIErrorConstructor(DynamicObject* constructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeURIErrorPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| |
| static void __cdecl InitializeTypedArrayConstructor(DynamicObject* typedArrayConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeTypedArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeInt8ArrayConstructor(DynamicObject* typedArrayConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeInt8ArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeUint8ArrayConstructor(DynamicObject* typedArrayConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeUint8ArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeUint8ClampedArrayConstructor(DynamicObject* typedArrayConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeUint8ClampedArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeInt16ArrayConstructor(DynamicObject* typedArrayConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeInt16ArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeUint16ArrayConstructor(DynamicObject* typedArrayConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeUint16ArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeInt32ArrayConstructor(DynamicObject* typedArrayConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeInt32ArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeUint32ArrayConstructor(DynamicObject* typedArrayConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeUint32ArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeFloat32ArrayConstructor(DynamicObject* typedArrayConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeFloat32ArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeFloat64ArrayConstructor(DynamicObject* typedArrayConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeFloat64ArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeInt64ArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeUint64ArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeBoolArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeCharArrayPrototype(DynamicObject* prototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| |
| static void __cdecl InitializeBooleanConstructor(DynamicObject* booleanConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeBooleanPrototype(DynamicObject* booleanPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSymbolConstructor(DynamicObject* symbolConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSymbolPrototype(DynamicObject* symbolPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeDateConstructor(DynamicObject* dateConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeDatePrototype(DynamicObject* datePrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeProxyConstructor(DynamicObject* proxyConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeProxyPrototype(DynamicObject* proxyPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| |
| static void __cdecl InitializeFunctionConstructor(DynamicObject* functionConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeFunctionPrototype(DynamicObject* functionPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| void InitializeComplexThings(); |
| void InitializeStaticValues(); |
| static void __cdecl InitializeMathObject(DynamicObject* mathObject, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| // SIMD_JS |
| static void __cdecl InitializeSIMDObject(DynamicObject* simdObject, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSIMDOpCodeMaps(); |
| |
| template<typename SIMDTypeName> |
| static void SIMDPrototypeInitHelper(DynamicObject* simdPrototype, JavascriptLibrary* library, JavascriptFunction* constructorFn, JavascriptString* strLiteral); |
| |
| static void __cdecl InitializeSIMDBool8x16Prototype(DynamicObject* simdPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSIMDBool16x8Prototype(DynamicObject* simdPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSIMDBool32x4Prototype(DynamicObject* simdPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSIMDInt8x16Prototype(DynamicObject* simdPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSIMDInt16x8Prototype(DynamicObject* simdPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSIMDInt32x4Prototype(DynamicObject* simdPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSIMDUint8x16Prototype(DynamicObject* simdPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSIMDUint16x8Prototype(DynamicObject* simdPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSIMDUint32x4Prototype(DynamicObject* simdPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSIMDFloat32x4Prototype(DynamicObject* simdPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSIMDFloat64x2Prototype(DynamicObject* simdPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| |
| static void __cdecl InitializeNumberConstructor(DynamicObject* numberConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeNumberPrototype(DynamicObject* numberPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeObjectConstructor(DynamicObject* objectConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeObjectPrototype(DynamicObject* objectPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeRegexConstructor(DynamicObject* regexConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeRegexPrototype(DynamicObject* regexPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeStringConstructor(DynamicObject* stringConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeStringPrototype(DynamicObject* stringPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeJSONObject(DynamicObject* JSONObject, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeEngineInterfaceObject(DynamicObject* engineInterface, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeReflectObject(DynamicObject* reflectObject, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| #ifdef ENABLE_INTL_OBJECT |
| static void __cdecl InitializeIntlObject(DynamicObject* IntlEngineObject, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| #endif |
| #ifdef ENABLE_PROJECTION |
| void InitializeWinRTPromiseConstructor(); |
| #endif |
| static void __cdecl InitializeMapConstructor(DynamicObject* mapConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeMapPrototype(DynamicObject* mapPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSetConstructor(DynamicObject* setConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSetPrototype(DynamicObject* setPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeWeakMapConstructor(DynamicObject* weakMapConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeWeakMapPrototype(DynamicObject* weakMapPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeWeakSetConstructor(DynamicObject* weakSetConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeWeakSetPrototype(DynamicObject* weakSetPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| |
| static void __cdecl InitializeIteratorPrototype(DynamicObject* iteratorPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeArrayIteratorPrototype(DynamicObject* arrayIteratorPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeMapIteratorPrototype(DynamicObject* mapIteratorPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeSetIteratorPrototype(DynamicObject* setIteratorPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeStringIteratorPrototype(DynamicObject* stringIteratorPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeJavascriptEnumeratorIteratorPrototype(DynamicObject* javascriptEnumeratorIteratorPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| |
| static void __cdecl InitializePromiseConstructor(DynamicObject* promiseConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializePromisePrototype(DynamicObject* promisePrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| |
| static void __cdecl InitializeGeneratorFunctionConstructor(DynamicObject* generatorFunctionConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeGeneratorFunctionPrototype(DynamicObject* generatorFunctionPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeGeneratorPrototype(DynamicObject* generatorPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| |
| static void __cdecl InitializeAsyncFunctionConstructor(DynamicObject* asyncFunctionConstructor, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| static void __cdecl InitializeAsyncFunctionPrototype(DynamicObject* asyncFunctionPrototype, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| |
| RuntimeFunction* CreateBuiltinConstructor(FunctionInfo * functionInfo, DynamicTypeHandler * typeHandler, DynamicObject* prototype = nullptr); |
| RuntimeFunction* DefaultCreateFunction(FunctionInfo * functionInfo, int length, DynamicObject * prototype, DynamicType * functionType, PropertyId nameId); |
| RuntimeFunction* DefaultCreateFunction(FunctionInfo * functionInfo, int length, DynamicObject * prototype, DynamicType * functionType, Var nameId); |
| JavascriptFunction* AddFunction(DynamicObject* object, PropertyId propertyId, RuntimeFunction* function); |
| void AddMember(DynamicObject* object, PropertyId propertyId, Var value); |
| void AddMember(DynamicObject* object, PropertyId propertyId, Var value, PropertyAttributes attributes); |
| JavascriptString* CreateEmptyString(); |
| |
| |
| static void __cdecl InitializeGeneratorFunction(DynamicObject* function, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| template<bool addPrototype> |
| static void __cdecl InitializeFunction(DynamicObject* function, DeferredTypeHandlerBase * typeHandler, DeferredInitializeMode mode); |
| |
| static size_t const LibraryFunctionArgC[BuiltinFunction::Count + 1]; |
| static int const LibraryFunctionFlags[BuiltinFunction::Count + 1]; // returns enum BuiltInFlags. |
| #if ENABLE_DEBUG_CONFIG_OPTIONS |
| static char16 const * const LibraryFunctionName[BuiltinFunction::Count + 1]; |
| #endif |
| |
| JavascriptFunction* EnsureArrayPrototypeValuesFunction(); |
| |
| |
| public: |
| virtual void Finalize(bool isShutdown) override |
| { |
| __super::Finalize(isShutdown); |
| if (this->referencedPropertyRecords != nullptr) |
| { |
| RECYCLER_PERF_COUNTER_SUB(PropertyRecordBindReference, this->referencedPropertyRecords->Count()); |
| } |
| } |
| |
| #if DBG |
| void DumpLibraryByteCode(); |
| #endif |
| private: |
| typedef JsUtil::BaseHashSet<Js::PropertyRecord const *, Recycler, PowerOf2SizePolicy> ReferencedPropertyRecordHashSet; |
| ReferencedPropertyRecordHashSet* referencedPropertyRecords; |
| |
| ReferencedPropertyRecordHashSet * EnsureReferencedPropertyRecordList() |
| { |
| ReferencedPropertyRecordHashSet* pidList = this->referencedPropertyRecords; |
| if (pidList == nullptr) |
| { |
| pidList = RecyclerNew(this->recycler, ReferencedPropertyRecordHashSet, this->recycler, 173); |
| this->referencedPropertyRecords = pidList; |
| } |
| return pidList; |
| } |
| |
| ReferencedPropertyRecordHashSet * GetReferencedPropertyRecordList() const |
| { |
| return this->referencedPropertyRecords; |
| } |
| |
| HRESULT ProfilerRegisterObject(); |
| HRESULT ProfilerRegisterArray(); |
| HRESULT ProfilerRegisterBoolean(); |
| HRESULT ProfilerRegisterDate(); |
| HRESULT ProfilerRegisterFunction(); |
| HRESULT ProfilerRegisterMath(); |
| HRESULT ProfilerRegisterNumber(); |
| HRESULT ProfilerRegisterString(); |
| HRESULT ProfilerRegisterRegExp(); |
| HRESULT ProfilerRegisterJSON(); |
| HRESULT ProfilerRegisterMap(); |
| HRESULT ProfilerRegisterSet(); |
| HRESULT ProfilerRegisterWeakMap(); |
| HRESULT ProfilerRegisterWeakSet(); |
| HRESULT ProfilerRegisterSymbol(); |
| HRESULT ProfilerRegisterIterator(); |
| HRESULT ProfilerRegisterArrayIterator(); |
| HRESULT ProfilerRegisterMapIterator(); |
| HRESULT ProfilerRegisterSetIterator(); |
| HRESULT ProfilerRegisterStringIterator(); |
| HRESULT ProfilerRegisterEnumeratorIterator(); |
| HRESULT ProfilerRegisterTypedArray(); |
| HRESULT ProfilerRegisterPromise(); |
| HRESULT ProfilerRegisterProxy(); |
| HRESULT ProfilerRegisterReflect(); |
| HRESULT ProfilerRegisterGenerator(); |
| HRESULT ProfilerRegisterSIMD(); |
| |
| #ifdef IR_VIEWER |
| HRESULT ProfilerRegisterIRViewer(); |
| #endif /* IR_VIEWER */ |
| }; |
| } |