| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_PPC | 5 #if V8_TARGET_ARCH_PPC |
| 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 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 806 __ blr(); | 806 __ blr(); |
| 807 } | 807 } |
| 808 | 808 |
| 809 | 809 |
| 810 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { | 810 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { |
| 811 Generate_JSConstructStubHelper(masm, false, true, false); | 811 Generate_JSConstructStubHelper(masm, false, true, false); |
| 812 } | 812 } |
| 813 | 813 |
| 814 | 814 |
| 815 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { | 815 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { |
| 816 Generate_JSConstructStubHelper(masm, true, false, false); | 816 Generate_JSConstructStubHelper(masm, true, true, false); |
| 817 } | 817 } |
| 818 | 818 |
| 819 | 819 |
| 820 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { | 820 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { |
| 821 Generate_JSConstructStubHelper(masm, false, false, false); | 821 Generate_JSConstructStubHelper(masm, false, false, false); |
| 822 } | 822 } |
| 823 | 823 |
| 824 | 824 |
| 825 void Builtins::Generate_JSBuiltinsConstructStubForDerived( | 825 void Builtins::Generate_JSBuiltinsConstructStubForDerived( |
| 826 MacroAssembler* masm) { | 826 MacroAssembler* masm) { |
| (...skipping 1944 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2771 __ bkpt(0); | 2771 __ bkpt(0); |
| 2772 } | 2772 } |
| 2773 } | 2773 } |
| 2774 | 2774 |
| 2775 | 2775 |
| 2776 #undef __ | 2776 #undef __ |
| 2777 } // namespace internal | 2777 } // namespace internal |
| 2778 } // namespace v8 | 2778 } // namespace v8 |
| 2779 | 2779 |
| 2780 #endif // V8_TARGET_ARCH_PPC | 2780 #endif // V8_TARGET_ARCH_PPC |
| OLD | NEW |