Lines Matching refs:elements_kind
90 Node* elements, Node* elements_kind,
161 Node* elements_kind = LoadMapElementsKind(prototype_map); in BranchIfPrototypesHaveNonFastElements() local
162 GotoIf(IsFastElementsKind(elements_kind), &loop_body); in BranchIfPrototypesHaveNonFastElements()
163 GotoIf(Word32Equal(elements_kind, Int32Constant(NO_ELEMENTS)), &loop_body); in BranchIfPrototypesHaveNonFastElements()
275 Node* receiver, Node* receiver_map, Node* elements, Node* elements_kind, in StoreElementWithCapacity() argument
326 TryChangeToHoleyMapMulti(receiver, receiver_map, elements_kind, context, in StoreElementWithCapacity()
341 GotoIf(Int32LessThanOrEqual(elements_kind, in StoreElementWithCapacity()
345 TryChangeToHoleyMap(receiver, receiver_map, elements_kind, context, in StoreElementWithCapacity()
435 TryChangeToHoleyMap(receiver, receiver_map, elements_kind, context, in StoreElementWithCapacity()
477 Node* elements_kind = LoadMapElementsKind(receiver_map); in EmitGenericElementStore() local
478 Branch(IsFastElementsKind(elements_kind), &if_fast, &if_nonfast); in EmitGenericElementStore()
500 StoreElementWithCapacity(receiver, receiver_map, elements, elements_kind, in EmitGenericElementStore()
517 StoreElementWithCapacity(receiver, receiver_map, elements, elements_kind, in EmitGenericElementStore()
524 StoreElementWithCapacity(receiver, receiver_map, elements, elements_kind, in EmitGenericElementStore()
546 elements_kind, in EmitGenericElementStore()
549 GotoIf(Word32Equal(elements_kind, Int32Constant(DICTIONARY_ELEMENTS)), in EmitGenericElementStore()