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

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

Issue 547293004: Rename Runtime_CompileUnoptimized to Runtime_CompileLazy, because that is what it does. Split Compi… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « src/log.cc ('k') | src/mips64/builtins-mips64.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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 5
6 6
7 #include "src/v8.h" 7 #include "src/v8.h"
8 8
9 #if V8_TARGET_ARCH_MIPS 9 #if V8_TARGET_ARCH_MIPS
10 10
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 void Builtins::Generate_JSEntryTrampoline(MacroAssembler* masm) { 817 void Builtins::Generate_JSEntryTrampoline(MacroAssembler* masm) {
818 Generate_JSEntryTrampolineHelper(masm, false); 818 Generate_JSEntryTrampolineHelper(masm, false);
819 } 819 }
820 820
821 821
822 void Builtins::Generate_JSConstructEntryTrampoline(MacroAssembler* masm) { 822 void Builtins::Generate_JSConstructEntryTrampoline(MacroAssembler* masm) {
823 Generate_JSEntryTrampolineHelper(masm, true); 823 Generate_JSEntryTrampolineHelper(masm, true);
824 } 824 }
825 825
826 826
827 void Builtins::Generate_CompileUnoptimized(MacroAssembler* masm) { 827 void Builtins::Generate_CompileLazy(MacroAssembler* masm) {
828 CallRuntimePassFunction(masm, Runtime::kCompileUnoptimized); 828 CallRuntimePassFunction(masm, Runtime::kCompileLazy);
829 GenerateTailCallToReturnedCode(masm); 829 GenerateTailCallToReturnedCode(masm);
830 } 830 }
831 831
832 832
833 static void CallCompileOptimized(MacroAssembler* masm, bool concurrent) { 833 static void CallCompileOptimized(MacroAssembler* masm, bool concurrent) {
834 FrameScope scope(masm, StackFrame::INTERNAL); 834 FrameScope scope(masm, StackFrame::INTERNAL);
835 // Push a copy of the function onto the stack. 835 // Push a copy of the function onto the stack.
836 // Push function as parameter to the runtime call. 836 // Push function as parameter to the runtime call.
837 __ Push(a1, a1); 837 __ Push(a1, a1);
838 // Whether to compile in a background thread. 838 // Whether to compile in a background thread.
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
1572 __ break_(0xCC); 1572 __ break_(0xCC);
1573 } 1573 }
1574 } 1574 }
1575 1575
1576 1576
1577 #undef __ 1577 #undef __
1578 1578
1579 } } // namespace v8::internal 1579 } } // namespace v8::internal
1580 1580
1581 #endif // V8_TARGET_ARCH_MIPS 1581 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/log.cc ('k') | src/mips64/builtins-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698