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

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

Issue 1116933002: Fix typo in builtins-x87, introduced in crrev.com/1107233004. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 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 | no next file » | 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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_X87 7 #if V8_TARGET_ARCH_X87
8 8
9 #include "src/code-factory.h" 9 #include "src/code-factory.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 786 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 // Jump to point after the code-age stub. 797 // Jump to point after the code-age stub.
798 __ ret(0); 798 __ ret(0);
799 } 799 }
800 800
801 801
802 void Builtins::Generate_MarkCodeAsExecutedTwice(MacroAssembler* masm) { 802 void Builtins::Generate_MarkCodeAsExecutedTwice(MacroAssembler* masm) {
803 GenerateMakeCodeYoungAgainCommon(masm); 803 GenerateMakeCodeYoungAgainCommon(masm);
804 } 804 }
805 805
806 806
807 void Builtins::Generate_MarkCodeToBeExecutedOnce(MacroAssembler* masm) { 807 void Builtins::Generate_MarkCodeAsToBeExecutedOnce(MacroAssembler* masm) {
808 Generate_MarkCodeAsExecutedOnce(masm); 808 Generate_MarkCodeAsExecutedOnce(masm);
809 } 809 }
810 810
811 811
812 static void Generate_NotifyStubFailureHelper(MacroAssembler* masm, 812 static void Generate_NotifyStubFailureHelper(MacroAssembler* masm,
813 SaveFPRegsMode save_doubles) { 813 SaveFPRegsMode save_doubles) {
814 // Enter an internal frame. 814 // Enter an internal frame.
815 { 815 {
816 FrameScope scope(masm, StackFrame::INTERNAL); 816 FrameScope scope(masm, StackFrame::INTERNAL);
817 817
(...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after
1695 1695
1696 __ bind(&ok); 1696 __ bind(&ok);
1697 __ ret(0); 1697 __ ret(0);
1698 } 1698 }
1699 1699
1700 #undef __ 1700 #undef __
1701 } 1701 }
1702 } // namespace v8::internal 1702 } // namespace v8::internal
1703 1703
1704 #endif // V8_TARGET_ARCH_X87 1704 #endif // V8_TARGET_ARCH_X87
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698