| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_ARM64 | 5 #if V8_TARGET_ARCH_ARM64 |
| 6 | 6 |
| 7 #include "src/arm64/frames-arm64.h" | 7 #include "src/arm64/frames-arm64.h" |
| 8 #include "src/codegen.h" | 8 #include "src/codegen.h" |
| 9 #include "src/debug/debug.h" | 9 #include "src/debug/debug.h" |
| 10 #include "src/deoptimizer.h" | 10 #include "src/deoptimizer.h" |
| (...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 __ Ret(); | 810 __ Ret(); |
| 811 } | 811 } |
| 812 | 812 |
| 813 | 813 |
| 814 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { | 814 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { |
| 815 Generate_JSConstructStubHelper(masm, false, true, false); | 815 Generate_JSConstructStubHelper(masm, false, true, false); |
| 816 } | 816 } |
| 817 | 817 |
| 818 | 818 |
| 819 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { | 819 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { |
| 820 Generate_JSConstructStubHelper(masm, true, false, false); | 820 Generate_JSConstructStubHelper(masm, true, true, false); |
| 821 } | 821 } |
| 822 | 822 |
| 823 | 823 |
| 824 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { | 824 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { |
| 825 Generate_JSConstructStubHelper(masm, false, false, false); | 825 Generate_JSConstructStubHelper(masm, false, false, false); |
| 826 } | 826 } |
| 827 | 827 |
| 828 | 828 |
| 829 void Builtins::Generate_JSBuiltinsConstructStubForDerived( | 829 void Builtins::Generate_JSBuiltinsConstructStubForDerived( |
| 830 MacroAssembler* masm) { | 830 MacroAssembler* masm) { |
| (...skipping 2005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2836 } | 2836 } |
| 2837 } | 2837 } |
| 2838 | 2838 |
| 2839 | 2839 |
| 2840 #undef __ | 2840 #undef __ |
| 2841 | 2841 |
| 2842 } // namespace internal | 2842 } // namespace internal |
| 2843 } // namespace v8 | 2843 } // namespace v8 |
| 2844 | 2844 |
| 2845 #endif // V8_TARGET_ARCH_ARM | 2845 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |