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_ARM | 5 #if V8_TARGET_ARCH_ARM |
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 798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 __ Jump(lr); | 809 __ Jump(lr); |
810 } | 810 } |
811 | 811 |
812 | 812 |
813 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { | 813 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { |
814 Generate_JSConstructStubHelper(masm, false, true, false); | 814 Generate_JSConstructStubHelper(masm, false, true, false); |
815 } | 815 } |
816 | 816 |
817 | 817 |
818 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { | 818 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { |
819 Generate_JSConstructStubHelper(masm, true, true, false); | 819 Generate_JSConstructStubHelper(masm, true, false, false); |
820 } | 820 } |
821 | 821 |
822 | 822 |
823 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { | 823 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { |
824 Generate_JSConstructStubHelper(masm, false, false, false); | 824 Generate_JSConstructStubHelper(masm, false, false, false); |
825 } | 825 } |
826 | 826 |
827 | 827 |
828 void Builtins::Generate_JSBuiltinsConstructStubForDerived( | 828 void Builtins::Generate_JSBuiltinsConstructStubForDerived( |
829 MacroAssembler* masm) { | 829 MacroAssembler* masm) { |
(...skipping 1870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2700 } | 2700 } |
2701 } | 2701 } |
2702 | 2702 |
2703 | 2703 |
2704 #undef __ | 2704 #undef __ |
2705 | 2705 |
2706 } // namespace internal | 2706 } // namespace internal |
2707 } // namespace v8 | 2707 } // namespace v8 |
2708 | 2708 |
2709 #endif // V8_TARGET_ARCH_ARM | 2709 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |