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 812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
823 __ Ret(); | 823 __ Ret(); |
824 } | 824 } |
825 | 825 |
826 | 826 |
827 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { | 827 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { |
828 Generate_JSConstructStubHelper(masm, false, true, false); | 828 Generate_JSConstructStubHelper(masm, false, true, false); |
829 } | 829 } |
830 | 830 |
831 | 831 |
832 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { | 832 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { |
833 Generate_JSConstructStubHelper(masm, true, true, false); | 833 Generate_JSConstructStubHelper(masm, true, false, false); |
834 } | 834 } |
835 | 835 |
836 | 836 |
837 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { | 837 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { |
838 Generate_JSConstructStubHelper(masm, false, false, false); | 838 Generate_JSConstructStubHelper(masm, false, false, false); |
839 } | 839 } |
840 | 840 |
841 | 841 |
842 void Builtins::Generate_JSBuiltinsConstructStubForDerived( | 842 void Builtins::Generate_JSBuiltinsConstructStubForDerived( |
843 MacroAssembler* masm) { | 843 MacroAssembler* masm) { |
(...skipping 2005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2849 } | 2849 } |
2850 } | 2850 } |
2851 | 2851 |
2852 | 2852 |
2853 #undef __ | 2853 #undef __ |
2854 | 2854 |
2855 } // namespace internal | 2855 } // namespace internal |
2856 } // namespace v8 | 2856 } // namespace v8 |
2857 | 2857 |
2858 #endif // V8_TARGET_ARCH_ARM | 2858 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |