| 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 #if V8_TARGET_ARCH_MIPS64 | 5 #if V8_TARGET_ARCH_MIPS64 |
| 6 | 6 |
| 7 #include "src/codegen.h" | 7 #include "src/codegen.h" |
| 8 #include "src/debug/debug.h" | 8 #include "src/debug/debug.h" |
| 9 #include "src/deoptimizer.h" | 9 #include "src/deoptimizer.h" |
| 10 #include "src/full-codegen/full-codegen.h" | 10 #include "src/full-codegen/full-codegen.h" |
| (...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 __ Ret(); | 798 __ Ret(); |
| 799 } | 799 } |
| 800 | 800 |
| 801 | 801 |
| 802 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { | 802 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { |
| 803 Generate_JSConstructStubHelper(masm, false, true, false); | 803 Generate_JSConstructStubHelper(masm, false, true, false); |
| 804 } | 804 } |
| 805 | 805 |
| 806 | 806 |
| 807 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { | 807 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { |
| 808 Generate_JSConstructStubHelper(masm, true, true, false); | 808 Generate_JSConstructStubHelper(masm, true, false, false); |
| 809 } | 809 } |
| 810 | 810 |
| 811 | 811 |
| 812 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { | 812 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { |
| 813 Generate_JSConstructStubHelper(masm, false, false, false); | 813 Generate_JSConstructStubHelper(masm, false, false, false); |
| 814 } | 814 } |
| 815 | 815 |
| 816 | 816 |
| 817 void Builtins::Generate_JSBuiltinsConstructStubForDerived( | 817 void Builtins::Generate_JSBuiltinsConstructStubForDerived( |
| 818 MacroAssembler* masm) { | 818 MacroAssembler* masm) { |
| (...skipping 1952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2771 } | 2771 } |
| 2772 } | 2772 } |
| 2773 | 2773 |
| 2774 | 2774 |
| 2775 #undef __ | 2775 #undef __ |
| 2776 | 2776 |
| 2777 } // namespace internal | 2777 } // namespace internal |
| 2778 } // namespace v8 | 2778 } // namespace v8 |
| 2779 | 2779 |
| 2780 #endif // V8_TARGET_ARCH_MIPS64 | 2780 #endif // V8_TARGET_ARCH_MIPS64 |
| OLD | NEW |