Home | History | Annotate | Download | only in mips

Lines Matching refs:kind

4191       ElementsKind kind = GetFastElementsKindFromSequenceIndex(i);
4192 T stub(masm->isolate(), kind);
4193 __ TailCallStub(&stub, eq, a3, Operand(kind));
4207 // a3 - kind (if mode != DISABLE_ALLOCATION_SITES)
4244 // We are going to create a holey array, but our kind is non-holey.
4245 // Fix kind and retry (only if we have an allocation site in the slot).
4254 // Save the resulting elements kind in type info. We can't just store a3
4255 // in the AllocationSite::transition_info field because elements kind is
4267 ElementsKind kind = GetFastElementsKindFromSequenceIndex(i);
4268 ArraySingleArgumentConstructorStub stub(masm->isolate(), kind);
4269 __ TailCallStub(&stub, eq, a3, Operand(kind));
4285 ElementsKind kind = GetFastElementsKindFromSequenceIndex(i);
4286 T stub(isolate, kind);
4288 if (AllocationSite::GetMode(kind) != DONT_TRACK_ALLOCATION_SITE) {
4289 T stub1(isolate, kind, DISABLE_ALLOCATION_SITES);
4376 // Get the elements kind and case on that.
4414 MacroAssembler* masm, ElementsKind kind) {
4416 InternalArrayNoArgumentConstructorStub stub0(isolate(), kind);
4422 if (IsFastPackedElementsKind(kind)) {
4428 stub1_holey(isolate(), GetHoleyElementsKind(kind));
4432 InternalArraySingleArgumentConstructorStub stub1(isolate(), kind);
4460 // Figure out the right elements kind.
5125 // Load PropertyDetails for the cell (actually only the cell_type and kind).