OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |