Home | History | Annotate | Download | only in arm

Lines Matching defs:array_length

3508   Register array_length = r2;
3529 __ ldr(array_length, FieldMemOperand(array, JSArray::kLengthOffset));
3530 __ SmiUntag(array_length, SetCC);
3547 __ add(elements_end, element, Operand(array_length, LSL, kPointerSizeLog2));
3551 // array_length: Length of the fixed array of strings (not smi)
3557 __ cmp(array_length, Operand(0));
3572 // If array_length is 1, return elements[0], a string.
3573 __ cmp(array_length, Operand(1));
3582 // array_length: Length of the array.
3592 // Add (separator length times array_length) - separator length to the
3593 // string_length to get the length of the result string. array_length is not
3597 __ smull(scratch2, ip, array_length, scratch1);
3618 // array_length: Length of the array.
3628 __ add(elements_end, element, Operand(array_length, LSL, kPointerSizeLog2));
3629 result_pos = array_length; // End of live range for array_length.
3630 array_length = no_reg;