| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 1782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1793 __ bind(&fill); | 1793 __ bind(&fill); |
| 1794 __ push(t0); | 1794 __ push(t0); |
| 1795 __ Branch(&fill, ne, sp, Operand(a2)); | 1795 __ Branch(&fill, ne, sp, Operand(a2)); |
| 1796 } | 1796 } |
| 1797 | 1797 |
| 1798 // Call the entry point. | 1798 // Call the entry point. |
| 1799 __ bind(&invoke); | 1799 __ bind(&invoke); |
| 1800 | 1800 |
| 1801 __ Call(a3); | 1801 __ Call(a3); |
| 1802 | 1802 |
| 1803 masm->isolate()->heap()->SetArgumentsAdaptorDeoptPCOffset(masm->pc_offset()); |
| 1803 // Exit frame and return. | 1804 // Exit frame and return. |
| 1804 LeaveArgumentsAdaptorFrame(masm); | 1805 LeaveArgumentsAdaptorFrame(masm); |
| 1805 __ Ret(); | 1806 __ Ret(); |
| 1806 | 1807 |
| 1807 | 1808 |
| 1808 // ------------------------------------------- | 1809 // ------------------------------------------- |
| 1809 // Don't adapt arguments. | 1810 // Don't adapt arguments. |
| 1810 // ------------------------------------------- | 1811 // ------------------------------------------- |
| 1811 __ bind(&dont_adapt_arguments); | 1812 __ bind(&dont_adapt_arguments); |
| 1812 __ Jump(a3); | 1813 __ Jump(a3); |
| 1813 } | 1814 } |
| 1814 | 1815 |
| 1815 | 1816 |
| 1816 #undef __ | 1817 #undef __ |
| 1817 | 1818 |
| 1818 } } // namespace v8::internal | 1819 } } // namespace v8::internal |
| 1819 | 1820 |
| 1820 #endif // V8_TARGET_ARCH_MIPS | 1821 #endif // V8_TARGET_ARCH_MIPS |
| OLD | NEW |