• Home
  • Raw
  • Download

Lines Matching refs:to_kind

197                                 FixedArrayBase to_base, ElementsKind to_kind,  in CopyObjectToObjectElements()  argument
220 DCHECK(IsSmiOrObjectElementsKind(to_kind)); in CopyObjectToObjectElements()
223 (IsObjectElementsKind(from_kind) && IsObjectElementsKind(to_kind)) in CopyObjectToObjectElements()
232 ElementsKind to_kind, uint32_t to_start, in CopyDictionaryToObjectElements() argument
248 DCHECK(IsSmiOrObjectElementsKind(to_kind)); in CopyDictionaryToObjectElements()
255 WriteBarrierMode write_barrier_mode = GetWriteBarrierMode(to, to_kind, no_gc); in CopyDictionaryToObjectElements()
850 ElementsKind to_kind = to_map->elements_kind(); in TransitionElementsKindImpl() local
852 to_kind = GetHoleyElementsKind(to_kind); in TransitionElementsKindImpl()
854 if (from_kind != to_kind) { in TransitionElementsKindImpl()
857 DCHECK(IsFastElementsKind(to_kind)); in TransitionElementsKindImpl()
862 IsDoubleElementsKind(from_kind) == IsDoubleElementsKind(to_kind)) { in TransitionElementsKindImpl()
868 (IsSmiElementsKind(from_kind) && IsDoubleElementsKind(to_kind)) || in TransitionElementsKindImpl()
869 (IsDoubleElementsKind(from_kind) && IsObjectElementsKind(to_kind))); in TransitionElementsKindImpl()
881 from_elements, to_kind, in TransitionElementsKindImpl()
910 ElementsKind from_kind, ElementsKind to_kind, uint32_t capacity) { in BasicGrowCapacityAndConvertImpl() argument
918 to_kind = GetHoleyElementsKind(to_kind); in BasicGrowCapacityAndConvertImpl()
920 Handle<Map> new_map = JSObject::GetElementsTransitionMap(object, to_kind); in BasicGrowCapacityAndConvertImpl()
924 JSObject::UpdateAllocationSite(object, to_kind); in BasicGrowCapacityAndConvertImpl()
928 to_kind, elements); in BasicGrowCapacityAndConvertImpl()
2045 ElementsKind to_kind = Subclass::kind(); in AddImpl() local
2047 IsDoubleElementsKind(from_kind) != IsDoubleElementsKind(to_kind) || in AddImpl()
2053 if (IsFastElementsKind(from_kind) && from_kind != to_kind) { in AddImpl()
2054 JSObject::TransitionElementsKind(object, to_kind); in AddImpl()
2057 DCHECK(IsSmiOrObjectElementsKind(to_kind)); in AddImpl()
2513 ElementsKind to_kind = KindTraits::Kind; in CopyElementsImpl() local
2526 to_kind, to_start, copy_size); in CopyElementsImpl()
2531 DCHECK(IsObjectElementsKind(to_kind)); in CopyElementsImpl()
2537 CopyDictionaryToObjectElements(isolate, from, from_start, to, to_kind, in CopyElementsImpl()