Home | History | Annotate | Download | only in mips

Lines Matching defs:copy

303   // Push a copy of the function onto the stack.
606 // Copy arguments and receiver to the expression stack.
733 // Copy arguments to the stack in a loop.
1154 // Calculate the copy start address (destination). Copy end address is sp.
1164 // (which is a copy of the last argument).
1230 // Returns (in v0) number of arguments to copy to stack as Smi.
1318 // Copy all arguments from the array to the stack.
1339 // Test if the copy loop has finished copying all the elements from the
1429 // Calculate copy start address into a0 and copy end address into a2.
1434 // Compute copy end address.
1438 // Copy the arguments (including the receiver) to the new stack frame.
1439 // a0: copy start address
1441 // a2: copy end address
1444 Label copy;
1445 __ bind(&copy);
1448 __ Branch(USE_DELAY_SLOT, &copy, ne, a0, Operand(a2));
1458 // Calculate copy start address into a0 and copy end address is fp.
1467 // Compute copy end address. Also adjust for return address.
1470 // Copy the arguments (including the receiver) to the new stack frame.
1471 // a0: copy start address
1475 // t3: copy end address
1476 Label copy;
1477 __ bind(&copy);
1481 __ Branch(USE_DELAY_SLOT, &copy, ne, a0, Operand(t3));