12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706 |
- #pragma warning disable CA1859 // Use concrete types when possible for improved performance -- most of prototype methods return JsValue
- using System.Linq;
- using System.Text;
- using Jint.Native.Array;
- using Jint.Native.ArrayBuffer;
- using Jint.Native.Iterator;
- using Jint.Native.Number;
- using Jint.Native.Object;
- using Jint.Native.Symbol;
- using Jint.Runtime;
- using Jint.Runtime.Descriptors;
- using Jint.Runtime.Descriptors.Specialized;
- using Jint.Runtime.Interop;
- namespace Jint.Native.TypedArray;
- /// <summary>
- /// https://tc39.es/ecma262/#sec-properties-of-the-%typedarrayprototype%-object
- /// </summary>
- internal sealed class IntrinsicTypedArrayPrototype : Prototype
- {
- private readonly IntrinsicTypedArrayConstructor _constructor;
- private ClrFunction? _originalIteratorFunction;
- internal IntrinsicTypedArrayPrototype(
- Engine engine,
- ObjectInstance objectPrototype,
- IntrinsicTypedArrayConstructor constructor) : base(engine, engine.Realm)
- {
- _prototype = objectPrototype;
- _constructor = constructor;
- }
- protected override void Initialize()
- {
- const PropertyFlag LengthFlags = PropertyFlag.Configurable;
- const PropertyFlag PropertyFlags = PropertyFlag.Writable | PropertyFlag.Configurable;
- var properties = new PropertyDictionary(36, false)
- {
- ["at"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "at", prototype.At, 1, PropertyFlag.Configurable), PropertyFlags),
- ["buffer"] = new GetSetPropertyDescriptor(new ClrFunction(_engine, "get buffer", Buffer, 0, LengthFlags), Undefined, PropertyFlag.Configurable),
- ["byteLength"] = new GetSetPropertyDescriptor(new ClrFunction(_engine, "get byteLength", ByteLength, 0, LengthFlags), Undefined, PropertyFlag.Configurable),
- ["byteOffset"] = new GetSetPropertyDescriptor(new ClrFunction(_engine, "get byteOffset", ByteOffset, 0, LengthFlags), Undefined, PropertyFlag.Configurable),
- ["constructor"] = new(_constructor, PropertyFlag.NonEnumerable),
- ["copyWithin"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "copyWithin", prototype.CopyWithin, 2, PropertyFlag.Configurable), PropertyFlags),
- ["entries"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "entries", prototype.Entries, 0, PropertyFlag.Configurable), PropertyFlags),
- ["every"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "every", prototype.Every, 1, PropertyFlag.Configurable), PropertyFlags),
- ["fill"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "fill", prototype.Fill, 1, PropertyFlag.Configurable), PropertyFlags),
- ["filter"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "filter", prototype.Filter, 1, PropertyFlag.Configurable), PropertyFlags),
- ["find"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "find", prototype.Find, 1, PropertyFlag.Configurable), PropertyFlags),
- ["findIndex"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "findIndex", prototype.FindIndex, 1, PropertyFlag.Configurable), PropertyFlags),
- ["findLast"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "findLast", prototype.FindLast, 1, PropertyFlag.Configurable), PropertyFlags),
- ["findLastIndex"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "findLastIndex", prototype.FindLastIndex, 1, PropertyFlag.Configurable), PropertyFlags),
- ["forEach"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "forEach", prototype.ForEach, 1, PropertyFlag.Configurable), PropertyFlags),
- ["includes"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "includes", prototype.Includes, 1, PropertyFlag.Configurable), PropertyFlags),
- ["indexOf"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "indexOf", prototype.IndexOf, 1, PropertyFlag.Configurable), PropertyFlags),
- ["join"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "join", prototype.Join, 1, PropertyFlag.Configurable), PropertyFlags),
- ["keys"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "keys", prototype.Keys, 0, PropertyFlag.Configurable), PropertyFlags),
- ["lastIndexOf"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "lastIndexOf", prototype.LastIndexOf, 1, PropertyFlag.Configurable), PropertyFlags),
- ["length"] = new GetSetPropertyDescriptor(new ClrFunction(_engine, "get length", GetLength, 0, LengthFlags), Undefined, PropertyFlag.Configurable),
- ["map"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "map", prototype.Map, 1, PropertyFlag.Configurable), PropertyFlags),
- ["reduce"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "reduce", prototype.Reduce, 1, PropertyFlag.Configurable), PropertyFlags),
- ["reduceRight"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "reduceRight", prototype.ReduceRight, 1, PropertyFlag.Configurable), PropertyFlags),
- ["reverse"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "reverse", prototype.Reverse, 0, PropertyFlag.Configurable), PropertyFlags),
- ["set"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "set", prototype.Set, 1, PropertyFlag.Configurable), PropertyFlags),
- ["slice"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "slice", prototype.Slice, 2, PropertyFlag.Configurable), PropertyFlags),
- ["some"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "some", prototype.Some, 1, PropertyFlag.Configurable), PropertyFlags),
- ["sort"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "sort", prototype.Sort, 1, PropertyFlag.Configurable), PropertyFlags),
- ["subarray"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "subarray", prototype.Subarray, 2, PropertyFlag.Configurable), PropertyFlags),
- ["toLocaleString"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "toLocaleString", prototype.ToLocaleString, 0, PropertyFlag.Configurable), PropertyFlags),
- ["toReversed"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "toReversed", prototype.ToReversed, 0, PropertyFlag.Configurable), PropertyFlags),
- ["toSorted"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "toSorted", prototype.ToSorted, 1, PropertyFlag.Configurable), PropertyFlags),
- ["toString"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "toLocaleString", prototype._realm.Intrinsics.Array.PrototypeObject.ToString, 0, PropertyFlag.Configurable), PropertyFlags),
- ["values"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "values", prototype.Values, 0, PropertyFlag.Configurable), PropertyFlags),
- ["with"] = new LazyPropertyDescriptor<IntrinsicTypedArrayPrototype>(this, static prototype => new ClrFunction(prototype._engine, "with", prototype.With, 2, PropertyFlag.Configurable), PropertyFlags),
- };
- SetProperties(properties);
- _originalIteratorFunction = new ClrFunction(_engine, "iterator", Values, 1);
- var symbols = new SymbolDictionary(2)
- {
- [GlobalSymbolRegistry.Iterator] = new(_originalIteratorFunction, PropertyFlags),
- [GlobalSymbolRegistry.ToStringTag] = new GetSetPropertyDescriptor(new ClrFunction(_engine, "get [Symbol.toStringTag]", ToStringTag, 0, PropertyFlag.Configurable), Undefined, PropertyFlag.Configurable)
- };
- SetSymbols(symbols);
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-get-%typedarray%.prototype.buffer
- /// </summary>
- private JsValue Buffer(JsValue thisObject, JsCallArguments arguments)
- {
- var o = thisObject as JsTypedArray;
- if (o is null)
- {
- Throw.TypeError(_realm);
- }
- return o._viewedArrayBuffer;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-get-%typedarray%.prototype.bytelength
- /// </summary>
- private JsValue ByteLength(JsValue thisObject, JsCallArguments arguments)
- {
- var o = thisObject as JsTypedArray;
- if (o is null)
- {
- Throw.TypeError(_realm);
- }
- var taRecord = MakeTypedArrayWithBufferWitnessRecord(o, ArrayBufferOrder.SeqCst);
- return JsNumber.Create(taRecord.TypedArrayByteLength);
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-get-%typedarray%.prototype.byteoffset
- /// </summary>
- private JsValue ByteOffset(JsValue thisObject, JsCallArguments arguments)
- {
- var o = thisObject as JsTypedArray;
- if (o is null)
- {
- Throw.TypeError(_realm);
- }
- var taRecord = MakeTypedArrayWithBufferWitnessRecord(o, ArrayBufferOrder.SeqCst);
- if (taRecord.IsTypedArrayOutOfBounds)
- {
- return JsNumber.PositiveZero;
- }
- return JsNumber.Create(o._byteOffset);
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-get-%typedarray%.prototype.length
- /// </summary>
- private JsValue GetLength(JsValue thisObject, JsCallArguments arguments)
- {
- var o = thisObject as JsTypedArray;
- if (o is null)
- {
- Throw.TypeError(_realm);
- }
- var taRecord = MakeTypedArrayWithBufferWitnessRecord(o, ArrayBufferOrder.SeqCst);
- if (taRecord.IsTypedArrayOutOfBounds)
- {
- return JsNumber.PositiveZero;
- }
- return JsNumber.Create(taRecord.TypedArrayLength);
- }
- internal readonly record struct TypedArrayWithBufferWitnessRecord(JsTypedArray Object, int CachedBufferByteLength)
- {
- /// <summary>
- /// https://tc39.es/ecma262/#sec-istypedarrayoutofbounds
- /// </summary>
- public bool IsTypedArrayOutOfBounds
- {
- get
- {
- var o = Object;
- var bufferByteLength = CachedBufferByteLength;
- if (bufferByteLength == -1)
- {
- return true;
- }
- var byteOffsetStart = o._byteOffset;
- long byteOffsetEnd;
- if (o._arrayLength == JsTypedArray.LengthAuto)
- {
- byteOffsetEnd = bufferByteLength;
- }
- else
- {
- var elementSize = o._arrayElementType.GetElementSize();
- byteOffsetEnd = byteOffsetStart + o._arrayLength * elementSize;
- }
- if (byteOffsetStart > bufferByteLength || byteOffsetEnd > bufferByteLength)
- {
- return true;
- }
- return false;
- }
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-typedarraylength
- /// </summary>
- public uint TypedArrayLength
- {
- get
- {
- var o = Object;
- if (o._arrayLength != JsTypedArray.LengthAuto)
- {
- return o._arrayLength;
- }
- var byteOffset = o._byteOffset;
- var elementSize = o._arrayElementType.GetElementSize();
- var byteLength = (double) CachedBufferByteLength;
- var floor = System.Math.Floor((byteLength - byteOffset) / elementSize);
- return floor < 0 ? 0 : (uint) floor;
- }
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-typedarraybytelength
- /// </summary>
- public uint TypedArrayByteLength
- {
- get
- {
- if (IsTypedArrayOutOfBounds)
- {
- return 0;
- }
- var length = TypedArrayLength;
- if (length == 0)
- {
- return 0;
- }
- var o = Object;
- if (o._byteLength != JsTypedArray.LengthAuto)
- {
- return o._byteLength;
- }
- return length * o._arrayElementType.GetElementSize();
- }
- }
- }
- internal static TypedArrayWithBufferWitnessRecord MakeTypedArrayWithBufferWitnessRecord(JsTypedArray obj, ArrayBufferOrder order)
- {
- var buffer = obj._viewedArrayBuffer;
- var byteLength = buffer.IsDetachedBuffer
- ? -1
- : ArrayBufferByteLength(buffer, order);
- return new TypedArrayWithBufferWitnessRecord(obj, byteLength);
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-arraybufferbytelength
- /// </summary>
- internal static int ArrayBufferByteLength(JsArrayBuffer arrayBuffer, ArrayBufferOrder order)
- {
- if (arrayBuffer.IsSharedArrayBuffer && arrayBuffer.ArrayBufferByteLength > 0)
- {
- // a. Let bufferByteLengthBlock be arrayBuffer.[[ArrayBufferByteLengthData]].
- // b. Let rawLength be GetRawBytesFromSharedBlock(bufferByteLengthBlock, 0, BIGUINT64, true, order).
- // c. Let isLittleEndian be the value of the [[LittleEndian]] field of the surrounding agent's Agent Record.
- // d. Return ℝ(RawBytesToNumeric(BIGUINT64, rawLength, isLittleEndian)).
- }
- return arrayBuffer.ArrayBufferByteLength;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.copywithin
- /// </summary>
- private JsValue CopyWithin(JsValue thisObject, JsCallArguments arguments)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var target = arguments.At(0);
- var start = arguments.At(1);
- var end = arguments.At(2);
- var relativeTarget = TypeConverter.ToIntegerOrInfinity(target);
- long to;
- if (double.IsNegativeInfinity(relativeTarget))
- {
- to = 0;
- }
- else if (relativeTarget < 0)
- {
- to = (long) System.Math.Max(len + relativeTarget, 0);
- }
- else
- {
- to = (long) System.Math.Min(relativeTarget, len);
- }
- var relativeStart = TypeConverter.ToIntegerOrInfinity(start);
- long from;
- if (double.IsNegativeInfinity(relativeStart))
- {
- from = 0;
- }
- else if (relativeStart < 0)
- {
- from = (long) System.Math.Max(len + relativeStart, 0);
- }
- else
- {
- from = (long) System.Math.Min(relativeStart, len);
- }
- var relativeEnd = end.IsUndefined()
- ? len
- : TypeConverter.ToIntegerOrInfinity(end);
- long final;
- if (double.IsNegativeInfinity(relativeEnd))
- {
- final = 0;
- }
- else if (relativeEnd < 0)
- {
- final = (long) System.Math.Max(len + relativeEnd, 0);
- }
- else
- {
- final = (long) System.Math.Min(relativeEnd, len);
- }
- var count = System.Math.Min(final - from, len - to);
- if (count > 0)
- {
- var buffer = o._viewedArrayBuffer;
- buffer.AssertNotDetached();
- taRecord = MakeTypedArrayWithBufferWitnessRecord(o, ArrayBufferOrder.SeqCst);
- if (taRecord.IsTypedArrayOutOfBounds)
- {
- Throw.TypeError(_realm, "TypedArray is out of bounds");
- }
- len = taRecord.TypedArrayLength;
- var elementSize = o._arrayElementType.GetElementSize();
- var byteOffset = o._byteOffset;
- var bufferByteLimit = len * elementSize + byteOffset;
- var toByteIndex = to * elementSize + byteOffset;
- var fromByteIndex = from * elementSize + byteOffset;
- var countBytes = count * elementSize;
- int direction;
- if (fromByteIndex < toByteIndex && toByteIndex < fromByteIndex + countBytes)
- {
- direction = -1;
- fromByteIndex = fromByteIndex + countBytes - 1;
- toByteIndex = toByteIndex + countBytes - 1;
- }
- else
- {
- direction = 1;
- }
- while (countBytes > 0)
- {
- if (fromByteIndex < bufferByteLimit && toByteIndex < bufferByteLimit)
- {
- var value = buffer.GetValueFromBuffer((int) fromByteIndex, TypedArrayElementType.Uint8, isTypedArray: true, ArrayBufferOrder.Unordered);
- buffer.SetValueInBuffer((int) toByteIndex, TypedArrayElementType.Uint8, value, isTypedArray: true, ArrayBufferOrder.Unordered);
- fromByteIndex += direction;
- toByteIndex += direction;
- countBytes--;
- }
- else
- {
- countBytes = 0;
- }
- }
- }
- return o;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.entries
- /// </summary>
- private JsValue Entries(JsValue thisObject, JsCallArguments arguments)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- return _realm.Intrinsics.ArrayIteratorPrototype.Construct(o, ArrayIteratorType.KeyAndValue);
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.every
- /// </summary>
- private JsValue Every(JsValue thisObject, JsCallArguments arguments)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- if (len == 0)
- {
- return JsBoolean.True;
- }
- var predicate = GetCallable(arguments.At(0));
- var thisArg = arguments.At(1);
- var args = _engine._jsValueArrayPool.RentArray(3);
- args[2] = o;
- for (var k = 0; k < len; k++)
- {
- args[0] = o[k];
- args[1] = k;
- if (!TypeConverter.ToBoolean(predicate.Call(thisArg, args)))
- {
- return JsBoolean.False;
- }
- }
- _engine._jsValueArrayPool.ReturnArray(args);
- return JsBoolean.True;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.fill
- /// </summary>
- private JsValue Fill(JsValue thisObject, JsCallArguments arguments)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var jsValue = arguments.At(0);
- var start = arguments.At(1);
- var end = arguments.At(2);
- JsValue value;
- if (o._contentType == TypedArrayContentType.BigInt)
- {
- value = JsBigInt.Create(jsValue.ToBigInteger(_engine));
- }
- else
- {
- value = JsNumber.Create(jsValue);
- }
- int k;
- var relativeStart = TypeConverter.ToIntegerOrInfinity(start);
- if (double.IsNegativeInfinity(relativeStart))
- {
- k = 0;
- }
- else if (relativeStart < 0)
- {
- k = (int) System.Math.Max(len + relativeStart, 0);
- }
- else
- {
- k = (int) System.Math.Min(relativeStart, len);
- }
- uint endIndex;
- var relativeEnd = end.IsUndefined() ? len : TypeConverter.ToIntegerOrInfinity(end);
- if (double.IsNegativeInfinity(relativeEnd))
- {
- endIndex = 0;
- }
- else if (relativeEnd < 0)
- {
- endIndex = (uint) System.Math.Max(len + relativeEnd, 0);
- }
- else
- {
- endIndex = (uint) System.Math.Min(relativeEnd, len);
- }
- taRecord = MakeTypedArrayWithBufferWitnessRecord(o, ArrayBufferOrder.SeqCst);
- if (taRecord.IsTypedArrayOutOfBounds)
- {
- Throw.TypeError(_realm, "TypedArray is out of bounds");
- }
- len = taRecord.TypedArrayLength;
- endIndex = System.Math.Min(endIndex, len);
- o._viewedArrayBuffer.AssertNotDetached();
- for (var i = k; i < endIndex; ++i)
- {
- o[i] = value;
- }
- return thisObject;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.filter
- /// </summary>
- private JsValue Filter(JsValue thisObject, JsCallArguments arguments)
- {
- var callbackfn = GetCallable(arguments.At(0));
- var thisArg = arguments.At(1);
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var kept = new List<JsValue>();
- var captured = 0;
- var args = _engine._jsValueArrayPool.RentArray(3);
- args[2] = o;
- for (var k = 0; k < len; k++)
- {
- var kValue = o[k];
- args[0] = kValue;
- args[1] = k;
- var selected = callbackfn.Call(thisArg, args);
- if (TypeConverter.ToBoolean(selected))
- {
- kept.Add(kValue);
- captured++;
- }
- }
- _engine._jsValueArrayPool.ReturnArray(args);
- var a = _realm.Intrinsics.TypedArray.TypedArraySpeciesCreate(o, [captured]);
- for (var n = 0; n < captured; ++n)
- {
- a[n] = kept[n];
- }
- return a;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.find
- /// </summary>
- private JsValue Find(JsValue thisObject, JsCallArguments arguments)
- {
- return DoFind(thisObject, arguments).Value;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.findindex
- /// </summary>
- private JsValue FindIndex(JsValue thisObject, JsCallArguments arguments)
- {
- return DoFind(thisObject, arguments).Key;
- }
- private JsValue FindLast(JsValue thisObject, JsCallArguments arguments)
- {
- return DoFind(thisObject, arguments, fromEnd: true).Value;
- }
- private JsValue FindLastIndex(JsValue thisObject, JsCallArguments arguments)
- {
- return DoFind(thisObject, arguments, fromEnd: true).Key;
- }
- private KeyValuePair<JsValue, JsValue> DoFind(JsValue thisObject, JsCallArguments arguments, bool fromEnd = false)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var predicate = GetCallable(arguments.At(0));
- var thisArg = arguments.At(1);
- if (len == 0)
- {
- return new KeyValuePair<JsValue, JsValue>(JsNumber.IntegerNegativeOne, Undefined);
- }
- var args = _engine._jsValueArrayPool.RentArray(3);
- args[2] = o;
- if (!fromEnd)
- {
- for (var k = 0; k < len; k++)
- {
- var kNumber = JsNumber.Create(k);
- var kValue = o[k];
- args[0] = kValue;
- args[1] = kNumber;
- if (TypeConverter.ToBoolean(predicate.Call(thisArg, args)))
- {
- return new KeyValuePair<JsValue, JsValue>(kNumber, kValue);
- }
- }
- }
- else
- {
- for (var k = (int) (len - 1); k >= 0; k--)
- {
- var kNumber = JsNumber.Create(k);
- var kValue = o[k];
- args[0] = kValue;
- args[1] = kNumber;
- if (TypeConverter.ToBoolean(predicate.Call(thisArg, args)))
- {
- return new KeyValuePair<JsValue, JsValue>(kNumber, kValue);
- }
- }
- }
- return new KeyValuePair<JsValue, JsValue>(JsNumber.IntegerNegativeOne, Undefined);
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.foreach
- /// </summary>
- private JsValue ForEach(JsValue thisObject, JsCallArguments arguments)
- {
- var callbackfn = GetCallable(arguments.At(0));
- var thisArg = arguments.At(1);
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var args = _engine._jsValueArrayPool.RentArray(3);
- args[2] = o;
- for (var k = 0; k < len; k++)
- {
- var kValue = o[k];
- args[0] = kValue;
- args[1] = k;
- callbackfn.Call(thisArg, args);
- }
- _engine._jsValueArrayPool.ReturnArray(args);
- return Undefined;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.includes
- /// </summary>
- private JsValue Includes(JsValue thisObject, JsCallArguments arguments)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- if (len == 0)
- {
- return false;
- }
- var searchElement = arguments.At(0);
- var fromIndex = arguments.At(1, 0);
- var n = TypeConverter.ToIntegerOrInfinity(fromIndex);
- if (double.IsPositiveInfinity(n))
- {
- return JsBoolean.False;
- }
- else if (double.IsNegativeInfinity(n))
- {
- n = 0;
- }
- long k;
- if (n >= 0)
- {
- k = (long) n;
- }
- else
- {
- k = (long) (len + n);
- if (k < 0)
- {
- k = 0;
- }
- }
- while (k < len)
- {
- var value = o[(int) k];
- if (SameValueZeroComparer.Equals(value, searchElement))
- {
- return JsBoolean.True;
- }
- k++;
- }
- return JsBoolean.False;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.indexof
- /// </summary>
- private JsValue IndexOf(JsValue thisObject, JsCallArguments arguments)
- {
- var searchElement = arguments.At(0);
- var fromIndex = arguments.At(1);
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- if (len == 0)
- {
- return JsNumber.IntegerNegativeOne;
- }
- var n = TypeConverter.ToIntegerOrInfinity(fromIndex);
- if (double.IsPositiveInfinity(n))
- {
- return JsNumber.IntegerNegativeOne;
- }
- else if (double.IsNegativeInfinity(n))
- {
- n = 0;
- }
- long k;
- if (n >= 0)
- {
- k = (long) n;
- }
- else
- {
- k = (long) (len + n);
- if (k < 0)
- {
- k = 0;
- }
- }
- for (; k < len; k++)
- {
- var kPresent = o.HasProperty(k);
- if (kPresent)
- {
- var elementK = o[(int) k];
- if (elementK == searchElement)
- {
- return k;
- }
- }
- }
- return JsNumber.IntegerNegativeOne;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.join
- /// </summary>
- private JsValue Join(JsValue thisObject, JsCallArguments arguments)
- {
- var separator = arguments.At(0);
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var sep = TypeConverter.ToString(separator.IsUndefined() ? JsString.CommaString : separator);
- // as per the spec, this has to be called after ToString(separator)
- if (len == 0)
- {
- return JsString.Empty;
- }
- static string StringFromJsValue(JsValue value)
- {
- return value.IsUndefined()
- ? ""
- : TypeConverter.ToString(value);
- }
- var s = StringFromJsValue(o[0]);
- if (len == 1)
- {
- return s;
- }
- using var result = new ValueStringBuilder();
- result.Append(s);
- for (var k = 1; k < len; k++)
- {
- result.Append(sep);
- result.Append(StringFromJsValue(o[k]));
- }
- return result.ToString();
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.keys
- /// </summary>
- private JsValue Keys(JsValue thisObject, JsCallArguments arguments)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- return _realm.Intrinsics.ArrayIteratorPrototype.Construct(o, ArrayIteratorType.Key);
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.lastindexof
- /// </summary>
- private JsValue LastIndexOf(JsValue thisObject, JsCallArguments arguments)
- {
- var searchElement = arguments.At(0);
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- if (len == 0)
- {
- return JsNumber.IntegerNegativeOne;
- }
- var fromIndex = arguments.At(1, len - 1);
- var n = TypeConverter.ToIntegerOrInfinity(fromIndex);
- if (double.IsNegativeInfinity(n))
- {
- return JsNumber.IntegerNegativeOne;
- }
- long k;
- if (n >= 0)
- {
- k = (long) System.Math.Min(n, len - 1);
- }
- else
- {
- k = (long) (len + n);
- }
- for (; k >= 0; k--)
- {
- var kPresent = o.HasProperty(k);
- if (kPresent)
- {
- var elementK = o[(int) k];
- if (elementK == searchElement)
- {
- return k;
- }
- }
- }
- return JsNumber.IntegerNegativeOne;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.map
- /// </summary>
- private ObjectInstance Map(JsValue thisObject, JsCallArguments arguments)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var thisArg = arguments.At(1);
- var callable = GetCallable(arguments.At(0));
- var a = _realm.Intrinsics.TypedArray.TypedArraySpeciesCreate(o, [len]);
- var args = _engine._jsValueArrayPool.RentArray(3);
- args[2] = o;
- for (var k = 0; k < len; k++)
- {
- args[0] = o[k];
- args[1] = k;
- var mappedValue = callable.Call(thisArg, args);
- a[k] = mappedValue;
- }
- _engine._jsValueArrayPool.ReturnArray(args);
- return a;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.reduce
- /// </summary>
- private JsValue Reduce(JsValue thisObject, JsCallArguments arguments)
- {
- var callbackfn = GetCallable(arguments.At(0));
- var initialValue = arguments.At(1);
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- if (len == 0 && arguments.Length < 2)
- {
- Throw.TypeError(_realm);
- }
- var k = 0;
- var accumulator = Undefined;
- if (!initialValue.IsUndefined())
- {
- accumulator = initialValue;
- }
- else
- {
- accumulator = o[k];
- k++;
- }
- var args = _engine._jsValueArrayPool.RentArray(4);
- args[3] = o;
- while (k < len)
- {
- var kValue = o[k];
- args[0] = accumulator;
- args[1] = kValue;
- args[2] = k;
- accumulator = callbackfn.Call(Undefined, args);
- k++;
- }
- _engine._jsValueArrayPool.ReturnArray(args);
- return accumulator;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.reduceright
- /// </summary>
- private JsValue ReduceRight(JsValue thisObject, JsCallArguments arguments)
- {
- var callbackfn = GetCallable(arguments.At(0));
- var initialValue = arguments.At(1);
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- if (len == 0 && arguments.Length < 2)
- {
- Throw.TypeError(_realm);
- }
- var k = (long) len - 1;
- JsValue accumulator;
- if (arguments.Length > 1)
- {
- accumulator = initialValue;
- }
- else
- {
- accumulator = o[k];
- k--;
- }
- var jsValues = _engine._jsValueArrayPool.RentArray(4);
- jsValues[3] = o;
- for (; k >= 0; k--)
- {
- jsValues[0] = accumulator;
- jsValues[1] = o[(int) k];
- jsValues[2] = k;
- accumulator = callbackfn.Call(Undefined, jsValues);
- }
- _engine._jsValueArrayPool.ReturnArray(jsValues);
- return accumulator;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.reverse
- /// </summary>
- private ObjectInstance Reverse(JsValue thisObject, JsCallArguments arguments)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var middle = (int) System.Math.Floor(len / 2.0);
- var lower = 0;
- while (lower != middle)
- {
- var upper = len - lower - 1;
- var lowerValue = o[lower];
- var upperValue = o[upper];
- o[lower] = upperValue;
- o[upper] = lowerValue;
- lower++;
- }
- return o;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.set
- /// </summary>
- private JsValue Set(JsValue thisObject, JsCallArguments arguments)
- {
- var target = thisObject as JsTypedArray;
- if (target is null)
- {
- Throw.TypeError(_realm);
- }
- var source = arguments.At(0);
- var offset = arguments.At(1);
- var targetOffset = TypeConverter.ToIntegerOrInfinity(offset);
- if (targetOffset < 0)
- {
- Throw.RangeError(_realm, "Invalid offset");
- }
- if (source is JsTypedArray typedArrayInstance)
- {
- SetTypedArrayFromTypedArray(target, targetOffset, typedArrayInstance);
- }
- else
- {
- SetTypedArrayFromArrayLike(target, (int) targetOffset, source);
- }
- return Undefined;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-settypedarrayfromtypedarray
- /// </summary>
- private void SetTypedArrayFromTypedArray(JsTypedArray target, double targetOffset, JsTypedArray source)
- {
- var targetBuffer = target._viewedArrayBuffer;
- var targetRecord = MakeTypedArrayWithBufferWitnessRecord(target, ArrayBufferOrder.SeqCst);
- if (targetRecord.IsTypedArrayOutOfBounds)
- {
- Throw.TypeError(_realm);
- }
- var targetLength = targetRecord.TypedArrayLength;
- var srcBuffer = source._viewedArrayBuffer;
- var srcRecord = MakeTypedArrayWithBufferWitnessRecord(source, ArrayBufferOrder.SeqCst);
- if (srcRecord.IsTypedArrayOutOfBounds)
- {
- Throw.TypeError(_realm);
- }
- var targetType = target._arrayElementType;
- var targetElementSize = targetType.GetElementSize();
- var targetByteOffset = target._byteOffset;
- var srcType = source._arrayElementType;
- var srcElementSize = srcType.GetElementSize();
- var srcLength = srcRecord.TypedArrayLength;
- var srcByteOffset = source._byteOffset;
- if (double.IsNegativeInfinity(targetOffset))
- {
- Throw.RangeError(_realm, "Invalid target offset");
- }
- if (srcLength + targetOffset > targetLength)
- {
- Throw.RangeError(_realm, "Invalid target offset");
- }
- if (target._contentType != source._contentType)
- {
- Throw.TypeError(_realm, "Content type mismatch");
- }
- var same = SameValue(srcBuffer, targetBuffer);
- int srcByteIndex;
- if (same)
- {
- var srcByteLength = srcRecord.TypedArrayByteLength;
- srcBuffer = srcBuffer.CloneArrayBuffer(_realm.Intrinsics.ArrayBuffer, srcByteOffset, srcByteLength);
- // %ArrayBuffer% is used to clone srcBuffer because is it known to not have any observable side-effects.
- srcByteIndex = 0;
- }
- else
- {
- srcByteIndex = srcByteOffset;
- }
- var targetByteIndex = (int) (targetOffset * targetElementSize + targetByteOffset);
- var limit = targetByteIndex + targetElementSize * srcLength;
- if (srcType == targetType)
- {
- // NOTE: If srcType and targetType are the same, the transfer must be performed in a manner that preserves the bit-level encoding of the source data.
- while (targetByteIndex < limit)
- {
- var value = srcBuffer.GetValueFromBuffer(srcByteIndex, TypedArrayElementType.Uint8, isTypedArray: true, ArrayBufferOrder.Unordered);
- targetBuffer.SetValueInBuffer(targetByteIndex, TypedArrayElementType.Uint8, value, isTypedArray: true, ArrayBufferOrder.Unordered);
- srcByteIndex += 1;
- targetByteIndex += 1;
- }
- }
- else
- {
- while (targetByteIndex < limit)
- {
- var value = srcBuffer.GetValueFromBuffer(srcByteIndex, srcType, isTypedArray: true, ArrayBufferOrder.Unordered);
- targetBuffer.SetValueInBuffer(targetByteIndex, targetType, value, isTypedArray: true, ArrayBufferOrder.Unordered);
- srcByteIndex += srcElementSize;
- targetByteIndex += targetElementSize;
- }
- }
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-settypedarrayfromarraylike
- /// </summary>
- private void SetTypedArrayFromArrayLike(JsTypedArray target, int targetOffset, JsValue source)
- {
- var targetBuffer = target._viewedArrayBuffer;
- targetBuffer.AssertNotDetached();
- var targetRecord = MakeTypedArrayWithBufferWitnessRecord(target, ArrayBufferOrder.SeqCst);
- if (targetRecord.IsTypedArrayOutOfBounds)
- {
- Throw.TypeError(_realm);
- }
- var targetLength = targetRecord.TypedArrayLength;
- var src = ArrayOperations.For(_realm, source, forWrite: false);
- var srcLength = src.GetLength();
- if (double.IsNegativeInfinity(targetOffset))
- {
- Throw.RangeError(_realm, "Invalid target offset");
- }
- if (srcLength + targetOffset > targetLength)
- {
- Throw.RangeError(_realm, "Invalid target offset");
- }
- var k = 0;
- while (k < srcLength)
- {
- var jsValue = src.Get((ulong) k);
- target.IntegerIndexedElementSet(targetOffset + k, jsValue);
- k++;
- }
- }
- /// <summary>
- /// https://tc39.es/proposal-relative-indexing-method/#sec-%typedarray.prototype%-additions
- /// </summary>
- private JsValue At(JsValue thisObject, JsCallArguments arguments)
- {
- var start = arguments.At(0);
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var relativeStart = TypeConverter.ToInteger(start);
- int k;
- if (relativeStart < 0)
- {
- k = (int) (len + relativeStart);
- }
- else
- {
- k = (int) relativeStart;
- }
- if (k < 0 || k >= len)
- {
- return Undefined;
- }
- return o.Get(k);
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.slice
- /// </summary>
- private JsValue Slice(JsValue thisObject, JsCallArguments arguments)
- {
- var start = arguments.At(0);
- var end = arguments.At(1);
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var relativeStart = TypeConverter.ToIntegerOrInfinity(start);
- int startIndex;
- if (double.IsNegativeInfinity(relativeStart))
- {
- startIndex = 0;
- }
- else if (relativeStart < 0)
- {
- startIndex = (int) System.Math.Max(len + relativeStart, 0);
- }
- else
- {
- startIndex = (int) System.Math.Min(relativeStart, len);
- }
- var relativeEnd = end.IsUndefined()
- ? len
- : TypeConverter.ToIntegerOrInfinity(end);
- long endIndex;
- if (double.IsNegativeInfinity(relativeEnd))
- {
- endIndex = 0;
- }
- else if (relativeEnd < 0)
- {
- endIndex = (long) System.Math.Max(len + relativeEnd, 0);
- }
- else
- {
- endIndex = (long) System.Math.Min(relativeEnd, len);
- }
- var countBytes = System.Math.Max(endIndex - startIndex, 0);
- var a = _realm.Intrinsics.TypedArray.TypedArraySpeciesCreate(o, [countBytes]);
- if (countBytes > 0)
- {
- taRecord = MakeTypedArrayWithBufferWitnessRecord(o, ArrayBufferOrder.SeqCst);
- if (taRecord.IsTypedArrayOutOfBounds)
- {
- Throw.TypeError(_realm, "TypedArray is out of bounds");
- }
- endIndex = System.Math.Min(endIndex, taRecord.TypedArrayLength);
- countBytes = System.Math.Max(endIndex - startIndex, 0);
- var srcType = o._arrayElementType;
- var targetType = a._arrayElementType;
- if (srcType != targetType)
- {
- var n = 0;
- while (startIndex < endIndex)
- {
- var kValue = o[startIndex];
- a[n] = kValue;
- startIndex++;
- n++;
- }
- }
- else
- {
- var srcBuffer = o._viewedArrayBuffer;
- var targetBuffer = a._viewedArrayBuffer;
- var elementSize = srcType.GetElementSize();
- var srcByteOffset = o._byteOffset;
- var targetByteIndex = a._byteOffset;
- var srcByteIndex = (int) startIndex * elementSize + srcByteOffset;
- var limit = targetByteIndex + countBytes * elementSize;
- while (targetByteIndex < limit)
- {
- var value = srcBuffer.GetValueFromBuffer(srcByteIndex, TypedArrayElementType.Uint8, true, ArrayBufferOrder.Unordered);
- targetBuffer.SetValueInBuffer(targetByteIndex, TypedArrayElementType.Uint8, value, true, ArrayBufferOrder.Unordered);
- srcByteIndex++;
- targetByteIndex++;
- }
- }
- }
- return a;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.some
- /// </summary>
- private JsValue Some(JsValue thisObject, JsCallArguments arguments)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var callbackfn = GetCallable(arguments.At(0));
- var thisArg = arguments.At(1);
- var args = _engine._jsValueArrayPool.RentArray(3);
- args[2] = o;
- for (var k = 0; k < len; k++)
- {
- args[0] = o[k];
- args[1] = k;
- if (TypeConverter.ToBoolean(callbackfn.Call(thisArg, args)))
- {
- return JsBoolean.True;
- }
- }
- _engine._jsValueArrayPool.ReturnArray(args);
- return JsBoolean.False;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.sort
- /// </summary>
- private JsValue Sort(JsValue thisObject, JsCallArguments arguments)
- {
- /*
- * %TypedArray%.prototype.sort is a distinct function that, except as described below,
- * implements the same requirements as those of Array.prototype.sort as defined in 23.1.3.27.
- * The implementation of the %TypedArray%.prototype.sort specification may be optimized with the knowledge that the this value is
- * an object that has a fixed length and whose integer-indexed properties are not sparse.
- */
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var buffer = o._viewedArrayBuffer;
- var compareFn = GetCompareFunction(arguments.At(0));
- if (len <= 1)
- {
- return o;
- }
- var array = SortArray(buffer, compareFn, o);
- for (var i = 0; i < (uint) array.Length; ++i)
- {
- o[i] = array[i];
- }
- return o;
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.subarray
- /// </summary>
- private JsValue Subarray(JsValue thisObject, JsCallArguments arguments)
- {
- var o = thisObject as JsTypedArray;
- if (o is null)
- {
- Throw.TypeError(_realm);
- }
- var start = arguments.At(0);
- var end = arguments.At(1);
- var buffer = o._viewedArrayBuffer;
- var srcRecord = MakeTypedArrayWithBufferWitnessRecord(o, ArrayBufferOrder.SeqCst);
- uint srcLength = 0;
- if (!srcRecord.IsTypedArrayOutOfBounds)
- {
- srcLength = srcRecord.TypedArrayLength;
- }
- var relativeStart = TypeConverter.ToIntegerOrInfinity(start);
- double startIndex;
- if (double.IsNegativeInfinity(relativeStart))
- {
- startIndex = 0;
- }
- else if (relativeStart < 0)
- {
- startIndex = System.Math.Max(srcLength + relativeStart, 0);
- }
- else
- {
- startIndex = System.Math.Min(relativeStart, srcLength);
- }
- var elementSize = o._arrayElementType.GetElementSize();
- var srcByteOffset = o._byteOffset;
- var beginByteOffset = srcByteOffset + startIndex * elementSize;
- JsCallArguments argumentsList;
- if (o._arrayLength == JsTypedArray.LengthAuto && end.IsUndefined())
- {
- argumentsList = [buffer, beginByteOffset];
- }
- else
- {
- double relativeEnd;
- if (end.IsUndefined())
- {
- relativeEnd = srcLength;
- }
- else
- {
- relativeEnd = TypeConverter.ToIntegerOrInfinity(end);
- }
- double endIndex;
- if (double.IsNegativeInfinity(relativeEnd))
- {
- endIndex = 0;
- }
- else if (relativeEnd < 0)
- {
- endIndex = System.Math.Max(srcLength + relativeEnd, 0);
- }
- else
- {
- endIndex = System.Math.Min(relativeEnd, srcLength);
- }
- var newLength = System.Math.Max(endIndex - startIndex, 0);
- argumentsList = [buffer, beginByteOffset, newLength];
- }
- return _realm.Intrinsics.TypedArray.TypedArraySpeciesCreate(o, argumentsList);
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.tolocalestring
- /// </summary>
- private JsValue ToLocaleString(JsValue thisObject, JsCallArguments arguments)
- {
- /*
- * %TypedArray%.prototype.toLocaleString is a distinct function that implements the same algorithm as Array.prototype.toLocaleString
- * as defined in 23.1.3.29 except that the this value's [[ArrayLength]] internal slot is accessed in place of performing
- * a [[Get]] of "length". The implementation of the algorithm may be optimized with the knowledge that the this value is an object
- * that has a fixed length and whose integer-indexed properties are not sparse. However, such optimization must not introduce
- * any observable changes in the specified behaviour of the algorithm.
- */
- const string Separator = ",";
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var array = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- if (len == 0)
- {
- return JsString.Empty;
- }
- using var r = new ValueStringBuilder();
- for (uint k = 0; k < len; k++)
- {
- if (k > 0)
- {
- r.Append(Separator);
- }
- if (array.TryGetValue(k, out var nextElement) && !nextElement.IsNullOrUndefined())
- {
- var s = TypeConverter.ToString(Invoke(nextElement, "toLocaleString", []));
- r.Append(s);
- }
- }
- return r.ToString();
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-%typedarray%.prototype.values
- /// </summary>
- private JsValue Values(JsValue thisObject, JsCallArguments arguments)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- return _realm.Intrinsics.ArrayIteratorPrototype.Construct(o, ArrayIteratorType.Value);
- }
- /// <summary>
- /// https://tc39.es/ecma262/#sec-get-%typedarray%.prototype-@@tostringtag
- /// </summary>
- private static JsValue ToStringTag(JsValue thisObject, JsCallArguments arguments)
- {
- if (thisObject is not JsTypedArray o)
- {
- return Undefined;
- }
- return o._arrayElementType.GetTypedArrayName();
- }
- private JsValue ToReversed(JsValue thisObject, JsCallArguments arguments)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var a = TypedArrayCreateSameType(o, [JsNumber.Create(len)]);
- uint k = 0;
- while (k < len)
- {
- var from = len - k - 1;
- a[k++] = o.Get(from);
- }
- return a;
- }
- private JsValue ToSorted(JsValue thisObject, JsCallArguments arguments)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var compareFn = GetCompareFunction(arguments.At(0));
- var buffer = o._viewedArrayBuffer;
- var a = TypedArrayCreateSameType(o, [JsNumber.Create(len)]);
- var array = SortArray(buffer, compareFn, o);
- for (var i = 0; (uint) i < (uint) array.Length; ++i)
- {
- a[i] = array[i];
- }
- return a;
- }
- private ObjectInstance With(JsValue thisObject, JsCallArguments arguments)
- {
- var taRecord = thisObject.ValidateTypedArray(_realm, ArrayBufferOrder.SeqCst);
- var o = taRecord.Object;
- var len = taRecord.TypedArrayLength;
- var value = arguments.At(1);
- var relativeIndex = TypeConverter.ToIntegerOrInfinity(arguments.At(0));
- long actualIndex;
- if (relativeIndex >= 0)
- {
- actualIndex = (long) relativeIndex;
- }
- else
- {
- actualIndex = (long) (len + relativeIndex);
- }
- value = o._contentType == TypedArrayContentType.BigInt
- ? TypeConverter.ToJsBigInt(value)
- : TypeConverter.ToJsNumber(value);
- if (!o.IsValidIntegerIndex(actualIndex))
- {
- Throw.RangeError(_realm, "Invalid start index");
- }
- var a = TypedArrayCreateSameType(o, [JsNumber.Create(len)]);
- var k = 0;
- while (k < len)
- {
- a[k] = k == (int) actualIndex ? value : o.Get(k);
- k++;
- }
- return a;
- }
- private JsTypedArray TypedArrayCreateSameType(JsTypedArray exemplar, JsValue[] argumentList)
- {
- var constructor = exemplar._arrayElementType.GetConstructor(_realm.Intrinsics);
- var result = IntrinsicTypedArrayConstructor.TypedArrayCreate(_realm, constructor, argumentList);
- return result;
- }
- private ICallable? GetCompareFunction(JsValue compareArg)
- {
- ICallable? compareFn = null;
- if (!compareArg.IsUndefined())
- {
- if (compareArg is not ICallable callable)
- {
- Throw.TypeError(_realm, "The comparison function must be either a function or undefined");
- return null;
- }
- compareFn = callable;
- }
- return compareFn;
- }
- private static JsValue[] SortArray(JsArrayBuffer buffer, ICallable? compareFn, JsTypedArray obj)
- {
- var comparer = TypedArrayComparer.WithFunction(buffer, compareFn);
- var operations = ArrayOperations.For(obj, forWrite: false);
- try
- {
- return operations.OrderBy(x => x, comparer).ToArray();
- }
- catch (InvalidOperationException e)
- {
- throw e.InnerException ?? e;
- }
- }
- private sealed class TypedArrayComparer : IComparer<JsValue>
- {
- public static TypedArrayComparer WithFunction(JsArrayBuffer buffer, ICallable? compare)
- {
- return new TypedArrayComparer(buffer, compare);
- }
- private readonly JsArrayBuffer _buffer;
- private readonly ICallable? _compare;
- private readonly JsValue[] _comparableArray = new JsValue[2];
- private TypedArrayComparer(JsArrayBuffer buffer, ICallable? compare)
- {
- _buffer = buffer;
- _compare = compare;
- }
- public int Compare(JsValue? x, JsValue? y)
- {
- if (x is null && y is null)
- {
- return 0;
- }
- if (x is not null && y is null)
- {
- return 1;
- }
- if (x is null)
- {
- return -1;
- }
- if (y is null)
- {
- return 1;
- }
- if (_compare is not null)
- {
- _comparableArray[0] = x;
- _comparableArray[1] = y;
- var v = TypeConverter.ToNumber(_compare.Call(Undefined, _comparableArray));
- if (double.IsNaN(v))
- {
- return 0;
- }
- return (int) v;
- }
- if (x.Type == Types.BigInt || y.Type == Types.BigInt)
- {
- var xBigInt = TypeConverter.ToBigInt(x);
- var yBigInt = TypeConverter.ToBigInt(y);
- return xBigInt.CompareTo(yBigInt);
- }
- var xValue = x.AsNumber();
- var yValue = y.AsNumber();
- if (double.IsNaN(xValue) && double.IsNaN(yValue))
- {
- return 0;
- }
- if (double.IsNaN(xValue))
- {
- return 1;
- }
- if (double.IsNaN(yValue))
- {
- return -1;
- }
- if (xValue < yValue)
- {
- return -1;
- }
- if (xValue > yValue)
- {
- return 1;
- }
- if (NumberInstance.IsNegativeZero(xValue) && yValue == 0)
- {
- return -1;
- }
- if (xValue == 0 && NumberInstance.IsNegativeZero(yValue))
- {
- return 1;
- }
- return 0;
- }
- }
- }
|