Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: src/mips/builtins-mips.cc

Issue 9271068: MIPS: Support inlining at call-sites with mismatched number of arguments. (Closed)
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/mips/deoptimizer-mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | src/mips/deoptimizer-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698