forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathJSObject.h
More file actions
2453 lines (2166 loc) · 117 KB
/
Copy pathJSObject.h
File metadata and controls
2453 lines (2166 loc) · 117 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (C) 1999-2001 Harri Porten (porten@kde.org)
* Copyright (C) 2001 Peter Kelly (pmk@post.com)
* Copyright (C) 2003-2024 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#pragma once
#include "ArrayConventions.h"
#include "ArrayStorage.h"
#include "Butterfly.h"
#include "CPU.h"
#include "CagedBarrierPtr.h"
#include "CallFrame.h"
#include "ClassInfo.h"
#include "ConcurrentButterfly.h"
#include "ConcurrentButterflyInlines.h"
#include "CustomGetterSetter.h"
#include "DOMAttributeGetterSetter.h"
#include "DeletePropertySlot.h"
#include "Heap.h"
#include "IndexingHeaderInlines.h"
#include "Intrinsic.h"
#include "JSCast.h"
#include "MathCommon.h"
#include "PropertySlot.h"
#include "PropertyStorage.h"
#include "PutDirectIndexMode.h"
#include "PutPropertySlot.h"
#include "Structure.h"
#include "StructureTransitionTable.h"
#include <JavaScriptCore/JSCJSValueCell.h>
#include <wtf/StdLibExtras.h>
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
namespace JSC {
namespace DOMJIT {
class Signature;
}
inline JSCell* getJSFunction(JSValue); // Defined in JSObjectInlines.h
// SPEC-api 5.7/9.2-6 Thread.restrict choke point (defined in
// runtime/ThreadManager.cpp; duplicate of the runtime/ThreadManager.h
// declaration so generic-path headers need not include it). Returns true if
// the access is allowed; otherwise throws ConcurrentAccessError and returns
// false. Callers gate on isUncacheableDictionary() first (5.7.3).
JS_EXPORT_PRIVATE bool threadRestrictCheck(JSGlobalObject*, JSObject*);
// Same-library seam redeclaration (the threadRestrictCheck pattern above):
// owner is bytecode/JSThreadsSafepoint.h — generic-path headers need not
// include it. Consumed by the M7(c) stabilization loop in
// getOwnNonIndexPropertySlot below so a reader spinning on a torn
// (attributes, value) pair stays park-capable per W1/D9 (the in-flight
// writer may itself be parked by, or be the conductor of, a §A.3 window —
// spinning with heap access held would wedge that window into the 30s
// watchdog fail-stop).
namespace JSThreadsSafepoint {
JS_EXPORT_PRIVATE bool parkSitePollAndParkForStopTheWorld(VM&);
}
class ArrayProfile;
class Exception;
class GetterSetter;
class InternalFunction;
class JSFunction;
class JSString;
class LLIntOffsetsExtractor;
class MarkedBlock;
class ObjectInitializationScope;
class PropertyDescriptor;
class PropertyNameArrayBuilder;
class Structure;
class ThrowScope;
class VM;
struct HashTable;
struct HashTableValue;
JS_EXPORT_PRIVATE Exception* throwTypeError(JSGlobalObject*, ThrowScope&, const String&);
extern JS_EXPORT_PRIVATE const ASCIILiteral NonExtensibleObjectPropertyDefineError;
extern JS_EXPORT_PRIVATE const ASCIILiteral ReadonlyPropertyWriteError;
extern JS_EXPORT_PRIVATE const ASCIILiteral ReadonlyPropertyChangeError;
extern JS_EXPORT_PRIVATE const ASCIILiteral UnableToDeletePropertyError;
extern JS_EXPORT_PRIVATE const ASCIILiteral UnconfigurablePropertyChangeAccessMechanismError;
extern JS_EXPORT_PRIVATE const ASCIILiteral UnconfigurablePropertyChangeConfigurabilityError;
extern JS_EXPORT_PRIVATE const ASCIILiteral UnconfigurablePropertyChangeEnumerabilityError;
extern JS_EXPORT_PRIVATE const ASCIILiteral UnconfigurablePropertyChangeWritabilityError;
extern JS_EXPORT_PRIVATE const ASCIILiteral PrototypeValueCanOnlyBeAnObjectOrNullTypeError;
class JSFinalObject;
#if ASSERT_ENABLED
#define JS_EXPORT_PRIVATE_IF_ASSERT_ENABLED JS_EXPORT_PRIVATE
#else
#define JS_EXPORT_PRIVATE_IF_ASSERT_ENABLED
#endif
#if USE(JSVALUE64)
// SPEC-ungil ANNEX C1 / OM §9.5 atomic slot accessors (U-T10; defined in
// ConcurrentButterfly.cpp). One request descriptor + status word shared by
// the named and indexed §9.5 entry points below. Callers (ThreadAtomics.cpp
// bodies, SPEC-api 4.5 ops; §C.3(a)'s pre-enqueue atomic load) own the
// outer probe loop: every Restart re-runs the WHOLE own-property probe
// (I33-bounded by the forward-only shape order); a completed CAS/RMW is
// NEVER re-applied.
enum class AtomicSlotOperation : uint8_t {
Load, // seq_cst slot load; never writes (still converts CoW/Int32/Double on the indexed path - first atomic ACCESS converts, §C.1)
Exchange, // unconditional swap; also serves Atomics.store on an existing slot (value-only, no attribute transition)
CompareExchangeSVZ, // SameValueZero compare (allocation-free; rope strings bounce out as NeedsStringResolution)
Add,
Sub,
And,
Or,
Xor,
};
enum class AtomicSlotStatus : uint8_t {
Applied, // op done (Load: value read; writes: slot updated + barrier emitted)
NotEqual, // CompareExchangeSVZ compared unequal; no write; returned value = the value read
NotNumber, // arithmetic RMW read a non-number; no write; returned value = the value read
NeedsStringResolution, // CAS needs a rope resolved; no write; caller resolves OUTSIDE any lock (§N.2 single-flight) and restarts the probe
Restart, // validation failed (structure/shape/offset moved, slot vanished); caller re-runs the whole probe
LockedRevalidate, // INTERNAL to the §9.5 accessors (U-T10 amend): a named lock-free loop read jsUndefined, which may be a D1 delete-quarantine sentinel (I30); the accessor re-validates under the cell lock. Never escapes to ThreadAtomics callers.
};
struct AtomicSlotRequest {
AtomicSlotOperation operation { AtomicSlotOperation::Load };
JSValue expected; // CompareExchangeSVZ
JSValue replacement; // CompareExchangeSVZ / Exchange
double operandNumber { 0 }; // Add / Sub
int32_t operandInt { 0 }; // And / Or / Xor
};
#endif
class JSObject : public JSCell {
friend class BatchedTransitionOptimizer;
friend class JIT;
friend class JSCell;
friend class JSFinalObject;
friend class JSObjectWithButterfly;
friend class MarkedBlock;
enum PutMode : uint8_t {
PutModePut,
PutModeDefineOwnProperty,
};
public:
using Base = JSCell;
DECLARE_VISIT_CHILDREN_WITH_MODIFIER(JS_EXPORT_PRIVATE);
JS_EXPORT_PRIVATE static size_t estimatedSize(JSCell*, VM&);
JS_EXPORT_PRIVATE static void analyzeHeap(JSCell*, HeapAnalyzer&);
JS_EXPORT_PRIVATE static String calculatedClassName(JSObject*);
// This is the fully virtual [[GetPrototypeOf]] internal function defined
// in the ECMAScript 6 specification. Use this when doing a [[GetPrototypeOf]]
// operation as dictated in the specification.
JSValue getPrototype(JSGlobalObject*);
JS_EXPORT_PRIVATE static JSValue getPrototype(JSObject*, JSGlobalObject*);
// This gets the prototype directly off of the structure. This does not do
// dynamic dispatch on the getPrototype method table method. It is not valid
// to use this when performing a [[GetPrototypeOf]] operation in the specification.
// It is valid to use though when you know that you want to directly get it
// without consulting the method table. This is akin to getting the [[Prototype]]
// internal field directly as described in the specification.
JSValue getPrototypeDirect() const;
// This sets the prototype without checking for cycles and without
// doing dynamic dispatch on [[SetPrototypeOf]] operation in the specification.
// It is not valid to use this when performing a [[SetPrototypeOf]] operation in
// the specification. It is valid to use though when you know that you want to directly
// set it without consulting the method table and when you definitely won't
// introduce a cycle in the prototype chain. This is akin to setting the
// [[Prototype]] internal field directly as described in the specification.
JS_EXPORT_PRIVATE void setPrototypeDirect(VM&, JSValue prototype);
private:
// This is OrdinarySetPrototypeOf in the specification. Section 9.1.2.1
// https://tc39.github.io/ecma262/#sec-ordinarysetprototypeof
JS_EXPORT_PRIVATE bool setPrototypeWithCycleCheck(VM&, JSGlobalObject*, JSValue prototype, bool shouldThrowIfCantSet);
public:
// This is the fully virtual [[SetPrototypeOf]] internal function defined
// in the ECMAScript 6 specification. Use this when doing a [[SetPrototypeOf]]
// operation as dictated in the specification.
bool setPrototype(VM&, JSGlobalObject*, JSValue prototype, bool shouldThrowIfCantSet = false);
JS_EXPORT_PRIVATE static bool setPrototype(JSObject*, JSGlobalObject*, JSValue prototype, bool shouldThrowIfCantSet);
inline bool mayInterceptIndexedAccesses();
inline JSValue get(JSGlobalObject*, PropertyName) const; // Defined in JSObjectInlines.h
inline JSValue get(JSGlobalObject*, unsigned propertyName) const; // Defined in JSObjectInlines.h
JSValue get(JSGlobalObject*, uint64_t propertyName) const;
template<typename T, typename PropertyNameType>
inline T getAs(JSGlobalObject*, PropertyNameType) const; // Defined in JSObjectInlines.h
template<bool checkNullStructure = false>
bool getPropertySlot(JSGlobalObject*, PropertyName, PropertySlot&);
bool getPropertySlot(JSGlobalObject*, unsigned propertyName, PropertySlot&);
bool getPropertySlot(JSGlobalObject*, uint64_t propertyName, PropertySlot&);
template<typename CallbackWhenNoException> typename std::invoke_result<CallbackWhenNoException, bool, PropertySlot&>::type getPropertySlot(JSGlobalObject*, PropertyName, CallbackWhenNoException) const;
template<typename CallbackWhenNoException> typename std::invoke_result<CallbackWhenNoException, bool, PropertySlot&>::type getPropertySlot(JSGlobalObject*, PropertyName, PropertySlot&, CallbackWhenNoException) const;
template<typename PropertyNameType> JSValue getIfPropertyExists(JSGlobalObject*, const PropertyNameType&);
bool noSideEffectMayHaveNonIndexProperty(VM&, PropertyName);
enum class SortMode { Default, Ascending };
template<SortMode mode = SortMode::Default, typename Functor>
void forEachOwnIndexedProperty(JSGlobalObject*, const Functor&);
private:
static bool getOwnPropertySlotImpl(JSObject*, JSGlobalObject*, PropertyName, PropertySlot&);
public:
JS_EXPORT_PRIVATE_IF_ASSERT_ENABLED static bool getOwnPropertySlot(JSObject*, JSGlobalObject*, PropertyName, PropertySlot&);
JS_EXPORT_PRIVATE static bool getOwnPropertySlotByIndex(JSObject*, JSGlobalObject*, unsigned propertyName, PropertySlot&);
bool getOwnPropertySlotInline(JSGlobalObject*, PropertyName, PropertySlot&);
// The key difference between this and getOwnPropertySlot is that getOwnPropertySlot
// currently returns incorrect results for the DOM window (with non-own properties)
// being returned. Once this is fixed we should migrate code & remove this method.
JS_EXPORT_PRIVATE bool getOwnPropertyDescriptor(JSGlobalObject*, PropertyName, PropertyDescriptor&);
static bool getPrivateFieldSlot(JSObject*, JSGlobalObject*, PropertyName, PropertySlot&);
inline bool hasPrivateField(JSGlobalObject*, PropertyName);
inline bool getPrivateField(JSGlobalObject*, PropertyName, PropertySlot&);
inline void setPrivateField(JSGlobalObject*, PropertyName, JSValue, PutPropertySlot&);
inline void definePrivateField(JSGlobalObject*, PropertyName, JSValue, PutPropertySlot&);
inline bool hasPrivateBrand(JSGlobalObject*, JSValue brand);
inline void checkPrivateBrand(JSGlobalObject*, JSValue brand);
inline void setPrivateBrand(JSGlobalObject*, JSValue brand);
unsigned getArrayLength() const
{
if (!hasIndexedProperties(indexingType()))
return 0;
#if USE(JSVALUE64)
// SPEC-objectmodel §Q length() dispatch (JSArray::length() routes here):
// Segmented -> segmentedPublicLength(spine); else one masked load.
// AS staleness is legal under AS-COPY (§4.6). E5 "None first" (review
// round 4): the indexed-type check above and this word load are two
// unfenced loads - the N3 first install is lock-free, so a stale
// word==0 can pair with a fresh indexed type (arm64 load-load
// reordering can even satisfy the word load first). Dispatch on the
// word: None reads as length 0 (the pre-install truth), never a
// null-8 deref.
if (Options::useJSThreads()) [[unlikely]] {
uint64_t word = taggedButterflyWord();
if (isSegmentedButterfly(word)) [[unlikely]]
return segmentedPublicLength(butterflySpine(word));
if (!(word & butterflyPointerMask)) [[unlikely]]
return 0;
return untaggedButterfly(word)->publicLength();
}
#endif
return butterfly()->publicLength();
}
unsigned getVectorLength()
{
if (!hasIndexedProperties(indexingType()))
return 0;
#if USE(JSVALUE64)
// SPEC-objectmodel C4: the loaded spine's vectorLength is authoritative.
// E5 "None first" (round 4): see getArrayLength above - a racing N3
// first install can pair word==0 with a fresh indexed type.
if (Options::useJSThreads()) [[unlikely]] {
uint64_t word = taggedButterflyWord();
if (isSegmentedButterfly(word)) [[unlikely]]
return segmentedVectorLength(butterflySpine(word));
if (!(word & butterflyPointerMask)) [[unlikely]]
return 0;
return untaggedButterfly(word)->vectorLength();
}
#endif
return butterfly()->vectorLength();
}
inline bool canHaveExistingOwnIndexedGetterSetterProperties(); // Defined in RenderObjectInlines.h
// This is only valid after using canPerformFastPropertyEnumerationCommon().
// This code is not checking getOwnPropertySlot override etc.
inline unsigned canHaveExistingOwnIndexedProperties() const; // Defined in RenderObjectInlines.h
static bool putInlineForJSObject(JSCell*, JSGlobalObject*, PropertyName, JSValue, PutPropertySlot&);
JS_EXPORT_PRIVATE static bool put(JSCell*, JSGlobalObject*, PropertyName, JSValue, PutPropertySlot&);
static bool NODELETE mightBeSpecialProperty(VM&, JSType, UniquedStringImpl*);
JS_EXPORT_PRIVATE NEVER_INLINE static bool definePropertyOnReceiver(JSGlobalObject*, PropertyName, JSValue, PutPropertySlot&);
// putByIndex assumes that the receiver is this JSCell object.
JS_EXPORT_PRIVATE static bool putByIndex(JSCell*, JSGlobalObject*, unsigned propertyName, JSValue, bool shouldThrow);
// This performs the ECMAScript Set() operation.
ALWAYS_INLINE bool putByIndexInline(JSGlobalObject* globalObject, unsigned propertyName, JSValue value, bool shouldThrow)
{
VM& vm = getVM(globalObject);
if (trySetIndexQuickly(vm, propertyName, value))
return true;
return methodTable()->putByIndex(this, globalObject, propertyName, value, shouldThrow);
}
ALWAYS_INLINE bool putByIndexInline(JSGlobalObject* globalObject, uint64_t propertyName, JSValue value, bool shouldThrow)
{
VM& vm = getVM(globalObject);
if (propertyName <= MAX_ARRAY_INDEX) [[likely]]
return putByIndexInline(globalObject, static_cast<uint32_t>(propertyName), value, shouldThrow);
ASSERT(propertyName <= maxSafeInteger());
PutPropertySlot slot(this, shouldThrow);
return methodTable()->put(this, globalObject, Identifier::from(vm, propertyName), value, slot);
}
// This is similar to the putDirect* methods:
// - the prototype chain is not consulted
// - accessors are not called.
// - it will ignore extensibility and read-only properties if PutDirectIndexLikePutDirect is passed as the mode (the default).
// This method creates a property with attributes writable, enumerable and configurable all set to true if attributes is zero,
// otherwise, it creates a property with the provided attributes. Semantically, this is performing defineOwnProperty.
bool putDirectIndex(JSGlobalObject* globalObject, unsigned propertyName, JSValue value, unsigned attributes, PutDirectIndexMode mode)
{
ASSERT(!value.isCustomGetterSetterSlow());
auto canSetIndexQuicklyForPutDirect = [&] () -> bool {
switch (indexingMode()) {
case ALL_BLANK_INDEXING_TYPES:
case ALL_UNDECIDED_INDEXING_TYPES:
return false;
case ALL_WRITABLE_INT32_INDEXING_TYPES:
case ALL_WRITABLE_DOUBLE_INDEXING_TYPES:
case ALL_WRITABLE_CONTIGUOUS_INDEXING_TYPES:
case ALL_ARRAY_STORAGE_INDEXING_TYPES:
#if USE(JSVALUE64)
// SPEC-objectmodel §10.7/§Q (review round 1): flag-on, this
// bound read needs the regime dispatch - butterfly() is the
// FLAT-only accessor, so a segmented word would read the
// spine as an IndexingHeader (type-confused bound). Segmented
// and AS words report "not quickly": the slow path
// (putDirectIndexSlowOrBeyondVectorLength) runs the routed /
// I31-locked generic logic, and the segmented setIndexQuickly
// shape-conversion hazard never arises from here. Flat words
// read the bound from the SAME loaded word.
if (Options::useJSThreads()) [[unlikely]] {
uint64_t word = taggedButterflyWord();
if (isSegmentedButterfly(word) || hasAnyArrayStorage(indexingType()))
return false;
if (!(word & butterflyPointerMask)) [[unlikely]]
return false; // E5 None-first (round 4): racing N3 first install => slow path.
return propertyName < untaggedButterfly(word)->vectorLength();
}
#endif
return propertyName < butterfly()->vectorLength();
default:
if (isCopyOnWrite(indexingMode()))
return false;
RELEASE_ASSERT_NOT_REACHED();
return false;
}
};
if (!attributes && canSetIndexQuicklyForPutDirect()) {
setIndexQuickly(getVM(globalObject), propertyName, value);
return true;
}
return putDirectIndexSlowOrBeyondVectorLength(globalObject, propertyName, value, attributes, mode);
}
// This is semantically equivalent to performing defineOwnProperty(propertyName, {configurable:true, writable:true, enumerable:true, value:value}).
bool putDirectIndex(JSGlobalObject* globalObject, unsigned propertyName, JSValue value)
{
return putDirectIndex(globalObject, propertyName, value, 0, PutDirectIndexLikePutDirect);
}
ALWAYS_INLINE bool putDirectIndex(JSGlobalObject* globalObject, uint64_t propertyName, JSValue value, unsigned attributes, PutDirectIndexMode mode)
{
if (propertyName <= MAX_ARRAY_INDEX) [[likely]]
return putDirectIndex(globalObject, static_cast<uint32_t>(propertyName), value, attributes, mode);
return putDirect(getVM(globalObject), Identifier::from(getVM(globalObject), propertyName), value, attributes);
}
// A generally non-throwing version of putDirect and putDirectIndex.
// However, it's only guaranteed to not throw based on what the receiver is.
// For example, if the receiver is a ProxyObject, this is not guaranteed, since
// it may call into arbitrary JS code. It's the responsibility of the user of
// this API to ensure that the receiver object is a well known type if they
// want to ensure that this won't throw an exception.
JS_EXPORT_PRIVATE bool putDirectMayBeIndex(JSGlobalObject*, PropertyName, JSValue);
bool hasIndexingHeader() const
{
return structure()->hasIndexingHeader(this);
}
bool canGetIndexQuicklyForTypedArray(unsigned) const;
JSValue getIndexQuicklyForTypedArray(unsigned, ArrayProfile* = nullptr) const;
// SPEC-objectmodel §Q (history §15.6): the quickly-family calls butterfly()
// inside this owned header and is invisible to the §10.7 guard grep, so the
// regime dispatch is INTERNAL and flag-on only: Segmented -> bounds-checked
// fragment slots (C4/I33); ArrayStorage shape -> can*Quickly report false so
// callers fall to their generic paths (E5 dispatch = §4.6 cell lock); Flat ->
// mask + today's code, with the vectorLength bound read from the SAME loaded
// butterfly. Flag-off => identity (I22).
bool canGetIndexQuickly(unsigned i) const
{
#if USE(JSVALUE64)
if (Options::useJSThreads()) [[unlikely]]
return canGetIndexQuicklyConcurrent(i);
#endif
const Butterfly* butterfly = this->butterfly();
switch (indexingType()) {
case ALL_BLANK_INDEXING_TYPES:
return canGetIndexQuicklyForTypedArray(i);
case ALL_UNDECIDED_INDEXING_TYPES:
return false;
case ALL_INT32_INDEXING_TYPES:
case ALL_CONTIGUOUS_INDEXING_TYPES:
return i < butterfly->vectorLength() && butterfly->contiguous().at(this, i);
case ALL_DOUBLE_INDEXING_TYPES: {
if (i >= butterfly->vectorLength())
return false;
double value = butterfly->contiguousDouble().at(this, i);
if (value != value)
return false;
return true;
}
case ALL_ARRAY_STORAGE_INDEXING_TYPES:
return i < butterfly->arrayStorage()->vectorLength() && butterfly->arrayStorage()->m_vector[i];
default:
RELEASE_ASSERT_NOT_REACHED();
return false;
}
}
bool canGetIndexQuickly(uint64_t i) const
{
ASSERT(i <= maxSafeInteger());
if (i <= MAX_ARRAY_INDEX) [[likely]]
return canGetIndexQuickly(static_cast<uint32_t>(i));
return false;
}
JSValue getIndexQuickly(unsigned i) const
{
#if USE(JSVALUE64)
if (Options::useJSThreads()) [[unlikely]]
return getIndexQuicklyConcurrent(i);
#endif
const Butterfly* butterfly = this->butterfly();
switch (indexingType()) {
case ALL_INT32_INDEXING_TYPES:
return jsNumber(butterfly->contiguous().at(this, i).get().asInt32());
case ALL_CONTIGUOUS_INDEXING_TYPES:
return butterfly->contiguous().at(this, i).get();
case ALL_DOUBLE_INDEXING_TYPES:
return JSValue(JSValue::EncodeAsDouble, butterfly->contiguousDouble().at(this, i));
case ALL_ARRAY_STORAGE_INDEXING_TYPES:
return butterfly->arrayStorage()->m_vector[i].get();
case ALL_BLANK_INDEXING_TYPES:
return getIndexQuicklyForTypedArray(i);
default:
RELEASE_ASSERT_NOT_REACHED();
return JSValue();
}
}
// Uses the (optional) array profile to set the m_mayBeLargeTypedArray bit when relevant
JSValue tryGetIndexQuickly(unsigned i, ArrayProfile* arrayProfile = nullptr) const
{
#if USE(JSVALUE64)
if (Options::useJSThreads()) [[unlikely]] {
// T2-segmented-accessors-inline: the Int32/Contiguous/Double arms
// of tryGetIndexQuicklyConcurrent are inlined here (both the
// segmented and flat regimes). perf showed
// tryGetIndexQuicklyConcurrent at 1.04% self% (W=2 SCALEBENCH §25)
// and the discriminating JSC_forceSegmentedButterflies=1 W=1
// experiment reproduced the serial-phase 1.7× slowdown with zero
// contention — the cost was the out-of-line PLT stub + frame on
// every indexed read, not threading. ALL_BLANK (typed arrays) and
// any unhandled shape fall to the out-of-line dispatch, which
// needs the heavy view headers (JSObject.cpp). Bodies are
// byte-identical to the out-of-line; flag-off this whole block is
// dead (I22).
uint64_t word = taggedButterflyWord();
switch (indexingType()) {
case ALL_UNDECIDED_INDEXING_TYPES:
return JSValue();
case ALL_INT32_INDEXING_TYPES:
case ALL_CONTIGUOUS_INDEXING_TYPES: {
if (isSegmentedButterfly(word)) [[unlikely]] {
const WriteBarrierBase<Unknown>* slot = segmentedIndexedSlotIfReadable(butterflySpine(word), i); // C4
if (!slot)
return JSValue();
JSValue result = slot->get();
ASSERT(!hasInt32(indexingType()) || result.isInt32() || !result);
return result; // empty => caller's generic path
}
const Butterfly* flatButterfly = untaggedButterfly(word);
if (!flatButterfly) [[unlikely]]
return JSValue(); // E5 None-first: racing N3 first install (round 4) => generic path.
// Bound by vectorLength too (round 4): on a flat word that a racing
// §4.2 conversion + T2 grow superseded, the aliased publicLength slot
// can race past THIS snapshot's storage.
if (i < flatButterfly->publicLength() && i < flatButterfly->vectorLength()) {
JSValue result = flatButterfly->contiguous().at(this, i).get();
ASSERT(!hasInt32(indexingType()) || result.isInt32() || !result);
return result;
}
return JSValue();
}
case ALL_DOUBLE_INDEXING_TYPES: {
double result;
if (isSegmentedButterfly(word)) [[unlikely]] {
const WriteBarrierBase<Unknown>* slot = segmentedIndexedSlotIfReadable(butterflySpine(word), i); // C4
if (!slot)
return JSValue();
result = WTF::atomicLoad(std::bit_cast<double*>(const_cast<WriteBarrierBase<Unknown>*>(slot)), std::memory_order_relaxed); // §4.7 raw double; relaxed atomic (intentionally racy JS value word)
} else {
const Butterfly* flatButterfly = untaggedButterfly(word);
if (!flatButterfly) [[unlikely]]
return JSValue(); // E5 None-first (round 4).
if (i >= flatButterfly->publicLength() || i >= flatButterfly->vectorLength()) // round 4: snapshot bound (aliased publicLength can race past it)
return JSValue();
result = WTF::atomicLoad(const_cast<double*>(&flatButterfly->contiguousDouble().at(this, i).m_data), std::memory_order_relaxed); // relaxed atomic (intentionally racy JS value word)
}
if (result != result)
return JSValue();
return JSValue(JSValue::EncodeAsDouble, result);
}
case ALL_ARRAY_STORAGE_INDEXING_TYPES:
// §Q/I31: not-quickly; callers fall to the generic (§4.6 locked) path.
return JSValue();
default:
break; // ALL_BLANK (typed arrays) + unreached: out-of-line dispatch.
}
return tryGetIndexQuicklyConcurrent(i, arrayProfile);
}
#endif
const Butterfly* butterfly = this->butterfly();
switch (indexingType()) {
case ALL_BLANK_INDEXING_TYPES:
if (canGetIndexQuicklyForTypedArray(i))
return getIndexQuicklyForTypedArray(i, arrayProfile);
break;
case ALL_UNDECIDED_INDEXING_TYPES:
break;
case ALL_INT32_INDEXING_TYPES:
if (i < butterfly->publicLength()) {
JSValue result = butterfly->contiguous().at(this, i).get();
ASSERT(result.isInt32() || !result);
return result;
}
break;
case ALL_CONTIGUOUS_INDEXING_TYPES:
if (i < butterfly->publicLength())
return butterfly->contiguous().at(this, i).get();
break;
case ALL_DOUBLE_INDEXING_TYPES: {
if (i >= butterfly->publicLength())
break;
double result = butterfly->contiguousDouble().at(this, i);
if (result != result)
break;
return JSValue(JSValue::EncodeAsDouble, result);
}
case ALL_ARRAY_STORAGE_INDEXING_TYPES:
if (i < butterfly->arrayStorage()->vectorLength())
return butterfly->arrayStorage()->m_vector[i].get();
break;
default:
RELEASE_ASSERT_NOT_REACHED();
break;
}
return JSValue();
}
JSValue tryGetIndexQuickly(uint64_t i) const
{
ASSERT(i <= maxSafeInteger());
if (i <= MAX_ARRAY_INDEX) [[likely]]
return tryGetIndexQuickly(static_cast<uint32_t>(i));
return JSValue();
}
JSValue getDirectIndex(JSGlobalObject* globalObject, unsigned i)
{
if (JSValue result = tryGetIndexQuickly(i))
return result;
PropertySlot slot(this, PropertySlot::InternalMethodType::Get);
if (methodTable()->getOwnPropertySlotByIndex(this, globalObject, i, slot))
return slot.getValue(globalObject, i);
return JSValue();
}
JSValue getIndex(JSGlobalObject* globalObject, uint64_t i) const
{
if (JSValue result = tryGetIndexQuickly(i))
return result;
return get(globalObject, i);
}
void setIndexQuicklyForTypedArray(unsigned, JSValue);
void setIndexQuicklyForArrayStorageIndexingType(VM&, unsigned, JSValue);
// Return true to indicate success
// Use the (optional) array profile to set the m_mayBeLargeTypedArray bit when relevant
bool trySetIndexQuicklyForTypedArray(unsigned, JSValue, ArrayProfile*);
bool trySetIndexQuickly(VM& vm, unsigned i, JSValue v, ArrayProfile* arrayProfile = nullptr)
{
#if USE(JSVALUE64)
if (Options::useJSThreads()) [[unlikely]]
return trySetIndexQuicklyConcurrent(vm, i, v, arrayProfile);
#endif
Butterfly* butterfly = this->butterfly();
switch (indexingMode()) {
case ALL_BLANK_INDEXING_TYPES:
return trySetIndexQuicklyForTypedArray(i, v, arrayProfile);
case ALL_UNDECIDED_INDEXING_TYPES:
return false;
case ALL_WRITABLE_INT32_INDEXING_TYPES: {
if (i >= butterfly->vectorLength())
return false;
if (!v.isInt32()) {
convertInt32ToDoubleOrContiguousWhilePerformingSetIndex(vm, i, v);
return true;
}
[[fallthrough]];
}
case ALL_WRITABLE_CONTIGUOUS_INDEXING_TYPES: {
if (i >= butterfly->vectorLength())
return false;
butterfly->contiguous().at(this, i).setWithoutWriteBarrier(v);
if (i >= butterfly->publicLength())
butterfly->setPublicLength(i + 1);
vm.writeBarrier(this, v);
return true;
}
case ALL_WRITABLE_DOUBLE_INDEXING_TYPES: {
if (i >= butterfly->vectorLength())
return false;
if (!v.isNumber()) {
convertDoubleToContiguousWhilePerformingSetIndex(vm, i, v);
return true;
}
double value = v.asNumber();
if (value != value) {
convertDoubleToContiguousWhilePerformingSetIndex(vm, i, v);
return true;
}
butterfly->contiguousDouble().at(this, i) = value;
if (i >= butterfly->publicLength())
butterfly->setPublicLength(i + 1);
return true;
}
case NonArrayWithArrayStorage:
case ArrayWithArrayStorage:
if (i >= butterfly->vectorLength())
return false;
setIndexQuicklyForArrayStorageIndexingType(vm, i, v);
return true;
case NonArrayWithSlowPutArrayStorage:
case ArrayWithSlowPutArrayStorage:
if (i >= butterfly->arrayStorage()->vectorLength() || !butterfly->arrayStorage()->m_vector[i])
return false;
setIndexQuicklyForArrayStorageIndexingType(vm, i, v);
return true;
default:
RELEASE_ASSERT(isCopyOnWrite(indexingMode()));
return false;
}
}
void setIndexQuickly(VM& vm, unsigned i, JSValue v)
{
#if USE(JSVALUE64)
if (Options::useJSThreads()) [[unlikely]] {
setIndexQuicklyConcurrent(vm, i, v);
return;
}
#endif
Butterfly* butterfly = this->butterfly();
ASSERT(!isCopyOnWrite(indexingMode()));
switch (indexingType()) {
case ALL_INT32_INDEXING_TYPES: {
ASSERT(i < butterfly->vectorLength());
if (!v.isInt32()) {
convertInt32ToDoubleOrContiguousWhilePerformingSetIndex(vm, i, v);
return;
}
[[fallthrough]];
}
case ALL_CONTIGUOUS_INDEXING_TYPES: {
ASSERT(i < butterfly->vectorLength());
butterfly->contiguous().at(this, i).setWithoutWriteBarrier(v);
if (i >= butterfly->publicLength())
butterfly->setPublicLength(i + 1);
vm.writeBarrier(this, v);
break;
}
case ALL_DOUBLE_INDEXING_TYPES: {
ASSERT(i < butterfly->vectorLength());
if (!v.isNumber()) {
convertDoubleToContiguousWhilePerformingSetIndex(vm, i, v);
return;
}
double value = v.asNumber();
if (value != value) {
convertDoubleToContiguousWhilePerformingSetIndex(vm, i, v);
return;
}
butterfly->contiguousDouble().at(this, i) = value;
if (i >= butterfly->publicLength())
butterfly->setPublicLength(i + 1);
break;
}
case ALL_ARRAY_STORAGE_INDEXING_TYPES:
setIndexQuicklyForArrayStorageIndexingType(vm, i, v);
break;
case ALL_BLANK_INDEXING_TYPES:
setIndexQuicklyForTypedArray(i, v);
break;
default:
RELEASE_ASSERT_NOT_REACHED();
}
}
inline void initializeIndex(ObjectInitializationScope&, unsigned, JSValue); // Defined in JSObjectInlines.h
// NOTE: Clients of this method may call it more than once for any index, and this is supposed
// to work.
ALWAYS_INLINE void initializeIndex(ObjectInitializationScope&, unsigned, JSValue, IndexingType); // Defined in JSObjectInlines.h
inline void initializeIndexWithoutBarrier(ObjectInitializationScope&, unsigned, JSValue); // Defined in JSObjectInlines.h
// This version of initializeIndex is for cases where you know that you will not need any
// barriers. This implies not having any data format conversions.
ALWAYS_INLINE void initializeIndexWithoutBarrier(ObjectInitializationScope&, unsigned, JSValue, IndexingType); // Defined in JSObjectInlines.h
bool hasSparseMap()
{
switch (indexingType()) {
case ALL_BLANK_INDEXING_TYPES:
case ALL_UNDECIDED_INDEXING_TYPES:
case ALL_INT32_INDEXING_TYPES:
case ALL_DOUBLE_INDEXING_TYPES:
case ALL_CONTIGUOUS_INDEXING_TYPES:
return false;
case ALL_ARRAY_STORAGE_INDEXING_TYPES:
return !!butterfly()->arrayStorage()->m_sparseMap;
default:
RELEASE_ASSERT_NOT_REACHED();
return false;
}
}
bool inSparseIndexingMode()
{
switch (indexingType()) {
case ALL_BLANK_INDEXING_TYPES:
case ALL_UNDECIDED_INDEXING_TYPES:
case ALL_INT32_INDEXING_TYPES:
case ALL_DOUBLE_INDEXING_TYPES:
case ALL_CONTIGUOUS_INDEXING_TYPES:
return false;
case ALL_ARRAY_STORAGE_INDEXING_TYPES:
return butterfly()->arrayStorage()->inSparseMode();
default:
RELEASE_ASSERT_NOT_REACHED();
return false;
}
}
void enterDictionaryIndexingMode(VM&);
// putDirect is effectively an unchecked vesion of 'defineOwnProperty':
// - the prototype chain is not consulted
// - accessors are not called.
// - attributes will be respected (after the call the property will exist with the given attributes)
// - the property name is assumed to not be an index.
bool putDirect(VM&, PropertyName, JSValue, unsigned attributes = 0);
bool putDirect(VM&, PropertyName, JSValue, unsigned attributes, PutPropertySlot&);
bool putDirect(VM&, PropertyName, JSValue, PutPropertySlot&);
void putDirectWithoutTransition(VM&, PropertyName, JSValue, unsigned attributes = 0);
bool putDirectNonIndexAccessor(VM&, PropertyName, GetterSetter*, unsigned attributes);
void putDirectNonIndexAccessorWithoutTransition(VM&, PropertyName, GetterSetter*, unsigned attributes);
bool putDirectAccessor(JSGlobalObject*, PropertyName, GetterSetter*, unsigned attributes);
JS_EXPORT_PRIVATE bool putDirectCustomAccessor(VM&, PropertyName, JSValue, unsigned attributes);
void putDirectCustomGetterSetterWithoutTransition(VM&, PropertyName, JSValue, unsigned attributes);
bool putGetter(JSGlobalObject*, PropertyName, JSValue, unsigned attributes);
bool putSetter(JSGlobalObject*, PropertyName, JSValue, unsigned attributes);
JS_EXPORT_PRIVATE bool hasProperty(JSGlobalObject*, PropertyName) const;
JS_EXPORT_PRIVATE bool hasProperty(JSGlobalObject*, unsigned propertyName) const;
bool hasProperty(JSGlobalObject*, uint64_t propertyName) const;
bool hasEnumerableProperty(JSGlobalObject*, PropertyName) const;
bool hasEnumerableProperty(JSGlobalObject*, unsigned propertyName) const;
bool hasOwnProperty(JSGlobalObject*, PropertyName, PropertySlot&) const;
bool hasOwnProperty(JSGlobalObject*, PropertyName) const;
bool hasOwnProperty(JSGlobalObject*, unsigned) const;
JS_EXPORT_PRIVATE static bool deleteProperty(JSCell*, JSGlobalObject*, PropertyName, DeletePropertySlot&);
JS_EXPORT_PRIVATE static bool deletePropertyByIndex(JSCell*, JSGlobalObject*, unsigned propertyName);
bool deleteProperty(JSGlobalObject*, PropertyName);
bool deleteProperty(JSGlobalObject*, uint32_t propertyName);
bool deleteProperty(JSGlobalObject*, uint64_t propertyName);
JSValue ordinaryToPrimitive(JSGlobalObject*, PreferredPrimitiveType) const;
JS_EXPORT_PRIVATE bool hasInstance(JSGlobalObject*, JSValue value, JSValue hasInstanceValue);
JS_EXPORT_PRIVATE bool hasInstance(JSGlobalObject*, JSValue);
static bool defaultHasInstance(JSGlobalObject*, JSValue, JSValue prototypeProperty);
static constexpr unsigned maximumPrototypeChainDepth = 40000;
JS_EXPORT_PRIVATE void getPropertyNames(JSGlobalObject*, PropertyNameArrayBuilder&, DontEnumPropertiesMode);
JS_EXPORT_PRIVATE static void getOwnPropertyNames(JSObject*, JSGlobalObject*, PropertyNameArrayBuilder&, DontEnumPropertiesMode);
JS_EXPORT_PRIVATE static void NODELETE getOwnSpecialPropertyNames(JSObject*, JSGlobalObject*, PropertyNameArrayBuilder&, DontEnumPropertiesMode);
JS_EXPORT_PRIVATE void getOwnIndexedPropertyNames(JSGlobalObject*, PropertyNameArrayBuilder&, DontEnumPropertiesMode);
JS_EXPORT_PRIVATE void getOwnNonIndexPropertyNames(JSGlobalObject*, PropertyNameArrayBuilder&, DontEnumPropertiesMode);
void getNonReifiedStaticPropertyNames(VM&, PropertyNameArrayBuilder&, DontEnumPropertiesMode);
JS_EXPORT_PRIVATE uint32_t getEnumerableLength();
JS_EXPORT_PRIVATE JSValue toPrimitive(JSGlobalObject*, PreferredPrimitiveType = NoPreference) const;
JS_EXPORT_PRIVATE double toNumber(JSGlobalObject*) const;
JS_EXPORT_PRIVATE JSString* toString(JSGlobalObject*) const;
// This get function only looks at the property map.
JSValue getDirect(VM& vm, PropertyName propertyName) const
{
Structure* structure = this->structure();
PropertyOffset offset = structure->get(vm, propertyName);
checkOffset(offset, structure->inlineCapacity());
return offset != invalidOffset ? getDirect(offset) : JSValue();
}
JSValue getDirect(VM& vm, PropertyName propertyName, unsigned& attributes) const
{
Structure* structure = this->structure();
PropertyOffset offset = structure->get(vm, propertyName, attributes);
checkOffset(offset, structure->inlineCapacity());
return offset != invalidOffset ? getDirect(offset) : JSValue();
}
PropertyOffset getDirectOffset(VM& vm, PropertyName propertyName)
{
Structure* structure = this->structure();
PropertyOffset offset = structure->get(vm, propertyName);
checkOffset(offset, structure->inlineCapacity());
return offset;
}
PropertyOffset getDirectOffset(VM& vm, PropertyName propertyName, unsigned& attributes)
{
Structure* structure = this->structure();
PropertyOffset offset = structure->get(vm, propertyName, attributes);
checkOffset(offset, structure->inlineCapacity());
return offset;
}
bool hasInlineStorage() const { return structure()->hasInlineStorage(); }
ConstPropertyStorage inlineStorageUnsafe() const
{
return std::bit_cast<ConstPropertyStorage>(std::bit_cast<const char*>(this) + offsetOfInlineStorage());
}
PropertyStorage inlineStorageUnsafe()
{
return std::bit_cast<PropertyStorage>(std::bit_cast<char*>(this) + offsetOfInlineStorage());
}
ConstPropertyStorage inlineStorage() const
{
ASSERT(hasInlineStorage());
return inlineStorageUnsafe();
}
PropertyStorage inlineStorage()
{
ASSERT(hasInlineStorage());
return inlineStorageUnsafe();
}
const Butterfly* butterfly() const LIFETIME_BOUND
{
return const_cast<JSObject*>(this)->butterfly();
}
Butterfly* butterfly() LIFETIME_BOUND
{
// Access m_butterfly field of JSObjectWithButterfly regardless of whether this object is a derived class of JSObjectWithButterfly.
// This is safe as atom of GC heap allocation is 16 bytes, thus the butterfly field, offset from 8 byte, is always accessible.
// We intentionally load it regardless to make this function branchless. This is critical to keep this fast while we have butterfly-less objects.
#if USE(JSVALUE64)
// SPEC-objectmodel §9.5: with Options::useJSThreads() the butterfly word
// carries the §2 tag (bit 63 = SW, bits 62..48 = installing thread's TID)
// in its high 16 bits; butterfly() masks the tag off on load. CONTRACT —
// callers must have established flatness via one of: flag off | a
// dominating §2/§3/E5 regime dispatch | the class never segments
// (ArrayStorage I31, CopyOnWrite I35) | a §10.7 mayBeSegmentedButterfly()
// guard. Segmented words (TID == notTTLTID, payload = ButterflySpine*)
// must never be dereferenced through this accessor.
if (Options::useJSThreads()) [[unlikely]] {
uint64_t word = taggedButterflyWord();
ASSERT(!isSegmentedButterfly(word));
if (verifyConcurrentButterflyEnabled()) [[unlikely]]
RELEASE_ASSERT(!isSegmentedButterfly(word));
return untaggedButterfly(word);
}
#endif
auto* b = *std::bit_cast<Butterfly**>(std::bit_cast<char*>(this) + butterflyOffset());
if (type() == WebAssemblyGCObjectType) [[unlikely]]
b = nullptr;
return b;
}
// SPEC-objectmodel §9.5 word-level accessors. Flag-off every flat tag is
// all-zero (I22), so taggedButterflyWord() == the raw pointer bits.
// TSAN-TRIAGE §3.15 (butterfly-words): this load races concurrent installs
// (AuxiliaryBarrier::setWithoutBarrier / setButterflyConcurrent DCAS). The
// value race is spec-blessed (C4 bounds, §3 re-dispatch on divergence) but
// a plain C++ load is UB, so it is a RELAXED atomic load — identical
// codegen to the plain load on x86-64/arm64 (flag-off unchanged).
ALWAYS_INLINE uint64_t taggedButterflyWord() const // raw 64-bit load, never masked
{
#if USE(JSVALUE64)
uint64_t word = butterflyConcurrentLoad(std::bit_cast<const uint64_t*>(std::bit_cast<const char*>(this) + butterflyOffset()));
if (type() == WebAssemblyGCObjectType) [[unlikely]]
word = 0;
return word;
#else
return static_cast<uint64_t>(std::bit_cast<uintptr_t>(const_cast<JSObject*>(this)->butterfly()));
#endif
}
ButterflyRegime butterflyRegime() const { return butterflyRegimeForWord(taggedButterflyWord()); }
ALWAYS_INLINE bool mayBeSegmentedButterfly() const // one load + compare; constant false flag-off (I22)
{
#if USE(JSVALUE64)
if (Options::useJSThreads()) [[unlikely]]
return isSegmentedButterfly(taggedButterflyWord());
#endif
return false;
}
ALWAYS_INLINE bool isSharedArrayStorage() const // SW=1 && AS shape; §4.6 dispatch keys on shape ANY SW
{
#if USE(JSVALUE64)
if (Options::useJSThreads()) [[unlikely]]
return butterflySharedWrite(taggedButterflyWord()) && hasAnyArrayStorage(indexingType());
#endif
return false;
}
// SPEC-objectmodel §Q: outOfLineStorage() is FLAT-ONLY (butterfly() contract);
// regime-safe out-of-line access goes through locationForOffset().
ConstPropertyStorage outOfLineStorage() const { return butterfly()->propertyStorage(); }
PropertyStorage outOfLineStorage() { return butterfly()->propertyStorage(); }
// SPEC-objectmodel §Q: flag-on, out-of-line offsets dispatch on the butterfly
// regime (M7(d) loadLoadFence + I33 bound, in locationForOutOfLineOffsetConcurrent),
// which makes the whole getDirect/getDirectOffset/putDirectOffset/
// putDirectWithoutBarrier family regime-safe and I24-conforming for ALL
// callers, with no per-call-site guards. Flag-off the branch is dead (I22).
// Inline offsets never touch the butterfly and are atomic for free.
ALWAYS_INLINE const WriteBarrierBase<Unknown>* locationForOffset(PropertyOffset offset) const
{
if (isInlineOffset(offset))
return &inlineStorage()[offsetInInlineStorage(offset)];
#if USE(JSVALUE64)
if (Options::useJSThreads()) [[unlikely]]
return locationForOutOfLineOffsetConcurrent(offset);
#endif
return &outOfLineStorage()[offsetInOutOfLineStorage(offset)];
}
ALWAYS_INLINE WriteBarrierBase<Unknown>* locationForOffset(PropertyOffset offset)
{
if (isInlineOffset(offset))
return &inlineStorage()[offsetInInlineStorage(offset)];
#if USE(JSVALUE64)
if (Options::useJSThreads()) [[unlikely]]
return const_cast<WriteBarrierBase<Unknown>*>(locationForOutOfLineOffsetConcurrent(offset));
#endif
return &outOfLineStorage()[offsetInOutOfLineStorage(offset)];
}