| 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 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 __ blr(); | 703 __ blr(); |
| 704 } | 704 } |
| 705 | 705 |
| 706 | 706 |
| 707 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { | 707 void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { |
| 708 Generate_JSConstructStubHelper(masm, false, true, false); | 708 Generate_JSConstructStubHelper(masm, false, true, false); |
| 709 } | 709 } |
| 710 | 710 |
| 711 | 711 |
| 712 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { | 712 void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) { |
| 713 Generate_JSConstructStubHelper(masm, true, true, false); | 713 Generate_JSConstructStubHelper(masm, true, false, false); |
| 714 } | 714 } |
| 715 | 715 |
| 716 | 716 |
| 717 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { | 717 void Builtins::Generate_JSBuiltinsConstructStub(MacroAssembler* masm) { |
| 718 Generate_JSConstructStubHelper(masm, false, false, false); | 718 Generate_JSConstructStubHelper(masm, false, false, false); |
| 719 } | 719 } |
| 720 | 720 |
| 721 | 721 |
| 722 void Builtins::Generate_JSBuiltinsConstructStubForDerived( | 722 void Builtins::Generate_JSBuiltinsConstructStubForDerived( |
| 723 MacroAssembler* masm) { | 723 MacroAssembler* masm) { |
| (...skipping 1944 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2668 __ bkpt(0); | 2668 __ bkpt(0); |
| 2669 } | 2669 } |
| 2670 } | 2670 } |
| 2671 | 2671 |
| 2672 | 2672 |
| 2673 #undef __ | 2673 #undef __ |
| 2674 } // namespace internal | 2674 } // namespace internal |
| 2675 } // namespace v8 | 2675 } // namespace v8 |
| 2676 | 2676 |
| 2677 #endif // V8_TARGET_ARCH_PPC | 2677 #endif // V8_TARGET_ARCH_PPC |
| OLD | NEW |