Home | History | Annotate | Download | only in mips

Lines Matching refs:elements

66                                                   Register elements,
72 // elements: holds the property dictionary on fall through.
76 // and elements map.
96 __ lw(elements, FieldMemOperand(receiver, JSObject::kPropertiesOffset));
97 __ lw(scratch1, FieldMemOperand(elements, HeapObject::kMapOffset));
105 // elements: Property dictionary. It is not clobbered if a jump to the miss
110 // label is not done. Can be the same as elements or name clobbering
112 // The two scratch registers need to be different from elements, name and
120 Register elements,
135 elements,
142 __ bind(&done); // scratch2 == elements + 4 * index.
160 // elements: Property dictionary. It is not clobbered if a jump to the miss
165 // The two scratch registers need to be different from elements, name and
173 Register elements,
188 elements,
195 __ bind(&done); // scratch2 == elements + 4 * index.
214 elements, scratch2, scratch1, kRAHasNotBeenSaved, kDontSaveFPRegs);
292 // If not_fast_array is NULL, doesn't perform the elements map check.
296 Register elements,
310 // elements - holds the elements of the receiver on exit.
319 // scratch1 - used to hold elements map and elements length.
320 // Holds the elements map if not_fast_array branch is taken.
324 __ lw(elements, FieldMemOperand(receiver, JSObject::kElementsOffset));
327 __ lw(scratch1, FieldMemOperand(elements, HeapObject::kMapOffset));
331 __ AssertFastElements(elements);
335 __ lw(scratch1, FieldMemOperand(elements, FixedArray::kLengthOffset));
339 __ Addu(scratch1, elements,
478 // a0: elements
605 // a3: elements map
606 // t0: elements pointer
607 // Check whether the elements is a number dictionary.
723 // a1: elements
773 // Load the elements into scratch1 and check its map.
986 // Check the receiver's map to see if it has fast elements.
999 // Check whether the elements is a number dictionary.
1001 // a3: elements map
1002 // t0: elements
1122 // a3: elements
1212 Register elements = t3; // Elements array of the receiver.
1232 // Object case: Check key against length in the elements array.
1233 __ lw(elements, FieldMemOperand(receiver, JSObject::kElementsOffset));
1235 __ lw(t0, FieldMemOperand(elements, FixedArray::kLengthOffset));
1253 // Check for room in the elements backing store.
1255 __ lw(t0, FieldMemOperand(elements, FixedArray::kLengthOffset));
1257 __ lw(elements_map, FieldMemOperand(elements, HeapObject::kMapOffset));
1275 // Array case: Get the length and the elements array from the JS
1279 __ lw(elements, FieldMemOperand(receiver, JSObject::kElementsOffset));
1289 __ lw(elements_map, FieldMemOperand(elements, HeapObject::kMapOffset));
1299 __ Addu(address, elements, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
1307 // Escape to elements kind transition case.
1310 // Fast elements array, store the value to the elements backing store.
1312 __ Addu(address, elements, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
1316 // Update write barrier for the elements array address.
1318 __ RecordWrite(elements,
1335 elements,
1359 __ lw(elements, FieldMemOperand(receiver, JSObject::kElementsOffset));
1371 __ lw(elements, FieldMemOperand(receiver, JSObject::kElementsOffset));
1375 // Elements are FAST_DOUBLE_ELEMENTS, but value is an Object that's not a
1385 __ lw(elements, FieldMemOperand(receiver, JSObject::kElementsOffset));
1552 // elements of FixedArray type). Value must be a number, but only smis are
1568 // Check that elements are FixedArray.
1570 // fast elements (including COW).