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_MIPS | 5 #if V8_TARGET_ARCH_MIPS |
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 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
802 __ Ret(); | 802 __ Ret(); |
803 } | 803 } |
804 | 804 |
805 | 805 |
806 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { | 806 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { |
807 Generate_JSConstructStubHelper(masm, false, true, false); | 807 Generate_JSConstructStubHelper(masm, false, true, false); |
808 } | 808 } |
809 | 809 |
810 | 810 |
811 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { | 811 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { |
812 Generate_JSConstructStubHelper(masm, true, false, false); | 812 Generate_JSConstructStubHelper(masm, true, true, false); |
813 } | 813 } |
814 | 814 |
815 | 815 |
816 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { | 816 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { |
817 Generate_JSConstructStubHelper(masm, false, false, false); | 817 Generate_JSConstructStubHelper(masm, false, false, false); |
818 } | 818 } |
819 | 819 |
820 | 820 |
821 void Builtins::Generate_JSBuiltinsConstructStubForDerived( | 821 void Builtins::Generate_JSBuiltinsConstructStubForDerived( |
822 MacroAssembler* masm) { | 822 MacroAssembler* masm) { |
(...skipping 1954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2777 } | 2777 } |
2778 } | 2778 } |
2779 | 2779 |
2780 | 2780 |
2781 #undef __ | 2781 #undef __ |
2782 | 2782 |
2783 } // namespace internal | 2783 } // namespace internal |
2784 } // namespace v8 | 2784 } // namespace v8 |
2785 | 2785 |
2786 #endif // V8_TARGET_ARCH_MIPS | 2786 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |