@@ -425,25 +425,25 @@ TNode<IntPtrT> BaseCollectionsAssembler::EstimatedInitialSize(
425
425
}
426
426
427
427
// https://tc39.es/proposal-symbols-as-weakmap-keys/#sec-canbeheldweakly-abstract-operation
428
- void BaseCollectionsAssembler::GotoIfCannotBeWeakKey (
429
- const TNode<Object> obj, Label* if_cannot_be_weak_key ) {
428
+ void BaseCollectionsAssembler::GotoIfCannotBeHeldWeakly (
429
+ const TNode<Object> obj, Label* if_cannot_be_held_weakly ) {
430
430
Label check_symbol_key (this );
431
431
Label end (this );
432
- GotoIf (TaggedIsSmi (obj), if_cannot_be_weak_key );
432
+ GotoIf (TaggedIsSmi (obj), if_cannot_be_held_weakly );
433
433
TNode<Uint16T> instance_type = LoadMapInstanceType (LoadMap (CAST (obj)));
434
434
GotoIfNot (IsJSReceiverInstanceType (instance_type), &check_symbol_key);
435
435
// TODO(v8:12547) Shared structs and arrays should only be able to point
436
436
// to shared values in weak collections. For now, disallow them as weak
437
437
// collection keys.
438
- GotoIf (IsJSSharedStructInstanceType (instance_type), if_cannot_be_weak_key );
439
- GotoIf (IsJSSharedArrayInstanceType (instance_type), if_cannot_be_weak_key );
438
+ GotoIf (IsJSSharedStructInstanceType (instance_type), if_cannot_be_held_weakly );
439
+ GotoIf (IsJSSharedArrayInstanceType (instance_type), if_cannot_be_held_weakly );
440
440
Goto (&end);
441
441
Bind (&check_symbol_key);
442
- GotoIfNot (HasHarmonySymbolAsWeakmapKeyFlag (), if_cannot_be_weak_key );
443
- GotoIfNot (IsSymbolInstanceType (instance_type), if_cannot_be_weak_key );
442
+ GotoIfNot (HasHarmonySymbolAsWeakmapKeyFlag (), if_cannot_be_held_weakly );
443
+ GotoIfNot (IsSymbolInstanceType (instance_type), if_cannot_be_held_weakly );
444
444
TNode<Uint32T> flags = LoadSymbolFlags (CAST (obj));
445
445
GotoIf (Word32And (flags, Symbol::IsInPublicSymbolTableBit::kMask ),
446
- if_cannot_be_weak_key );
446
+ if_cannot_be_held_weakly );
447
447
Goto (&end);
448
448
Bind (&end);
449
449
}
@@ -2586,17 +2586,17 @@ TF_BUILTIN(WeakMapLookupHashIndex, WeakCollectionsBuiltinsAssembler) {
2586
2586
auto table = Parameter<EphemeronHashTable>(Descriptor::kTable );
2587
2587
auto key = Parameter<Object>(Descriptor::kKey );
2588
2588
2589
- Label if_cannot_be_weak_key (this );
2589
+ Label if_cannot_be_held_weakly (this );
2590
2590
2591
- GotoIfCannotBeWeakKey (key, &if_cannot_be_weak_key );
2591
+ GotoIfCannotBeHeldWeakly (key, &if_cannot_be_held_weakly );
2592
2592
2593
- TNode<IntPtrT> hash = GetHash (CAST (key), &if_cannot_be_weak_key );
2593
+ TNode<IntPtrT> hash = GetHash (CAST (key), &if_cannot_be_held_weakly );
2594
2594
TNode<IntPtrT> capacity = LoadTableCapacity (table);
2595
2595
TNode<IntPtrT> key_index = FindKeyIndexForKey (
2596
- table, key, hash, EntryMask (capacity), &if_cannot_be_weak_key );
2596
+ table, key, hash, EntryMask (capacity), &if_cannot_be_held_weakly );
2597
2597
Return (SmiTag (ValueIndexFromKeyIndex (key_index)));
2598
2598
2599
- BIND (&if_cannot_be_weak_key );
2599
+ BIND (&if_cannot_be_held_weakly );
2600
2600
Return (SmiConstant (-1 ));
2601
2601
}
2602
2602
@@ -2651,22 +2651,22 @@ TF_BUILTIN(WeakCollectionDelete, WeakCollectionsBuiltinsAssembler) {
2651
2651
auto collection = Parameter<JSWeakCollection>(Descriptor::kCollection );
2652
2652
auto key = Parameter<Object>(Descriptor::kKey );
2653
2653
2654
- Label call_runtime (this ), if_cannot_be_weak_key (this );
2654
+ Label call_runtime (this ), if_cannot_be_held_weakly (this );
2655
2655
2656
- GotoIfCannotBeWeakKey (key, &if_cannot_be_weak_key );
2656
+ GotoIfCannotBeHeldWeakly (key, &if_cannot_be_held_weakly );
2657
2657
2658
- TNode<IntPtrT> hash = GetHash (CAST (key), &if_cannot_be_weak_key );
2658
+ TNode<IntPtrT> hash = GetHash (CAST (key), &if_cannot_be_held_weakly );
2659
2659
TNode<EphemeronHashTable> table = LoadTable (collection);
2660
2660
TNode<IntPtrT> capacity = LoadTableCapacity (table);
2661
2661
TNode<IntPtrT> key_index = FindKeyIndexForKey (
2662
- table, key, hash, EntryMask (capacity), &if_cannot_be_weak_key );
2662
+ table, key, hash, EntryMask (capacity), &if_cannot_be_held_weakly );
2663
2663
TNode<IntPtrT> number_of_elements = LoadNumberOfElements (table, -1 );
2664
2664
GotoIf (ShouldShrink (capacity, number_of_elements), &call_runtime);
2665
2665
2666
2666
RemoveEntry (table, key_index, number_of_elements);
2667
2667
Return (TrueConstant ());
2668
2668
2669
- BIND (&if_cannot_be_weak_key );
2669
+ BIND (&if_cannot_be_held_weakly );
2670
2670
Return (FalseConstant ());
2671
2671
2672
2672
BIND (&call_runtime);
@@ -2751,7 +2751,7 @@ TF_BUILTIN(WeakMapPrototypeSet, WeakCollectionsBuiltinsAssembler) {
2751
2751
" WeakMap.prototype.set" );
2752
2752
2753
2753
Label throw_invalid_key (this );
2754
- GotoIfCannotBeWeakKey (key, &throw_invalid_key);
2754
+ GotoIfCannotBeHeldWeakly (key, &throw_invalid_key);
2755
2755
2756
2756
Return (
2757
2757
CallBuiltin (Builtin::kWeakCollectionSet , context, receiver, key, value));
@@ -2769,7 +2769,7 @@ TF_BUILTIN(WeakSetPrototypeAdd, WeakCollectionsBuiltinsAssembler) {
2769
2769
" WeakSet.prototype.add" );
2770
2770
2771
2771
Label throw_invalid_value (this );
2772
- GotoIfCannotBeWeakKey (value, &throw_invalid_value);
2772
+ GotoIfCannotBeHeldWeakly (value, &throw_invalid_value);
2773
2773
2774
2774
Return (CallBuiltin (Builtin::kWeakCollectionSet , context, receiver, value,
2775
2775
TrueConstant ()));
0 commit comments