| 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 #include "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #if V8_TARGET_ARCH_PPC | 7 #if V8_TARGET_ARCH_PPC |
| 8 | 8 |
| 9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
| 10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 Isolate* isolate, CodeStubDescriptor* descriptor, | 26 Isolate* isolate, CodeStubDescriptor* descriptor, |
| 27 int constant_stack_parameter_count) { | 27 int constant_stack_parameter_count) { |
| 28 Address deopt_handler = | 28 Address deopt_handler = |
| 29 Runtime::FunctionForId(Runtime::kArrayConstructor)->entry; | 29 Runtime::FunctionForId(Runtime::kArrayConstructor)->entry; |
| 30 | 30 |
| 31 if (constant_stack_parameter_count == 0) { | 31 if (constant_stack_parameter_count == 0) { |
| 32 descriptor->Initialize(deopt_handler, constant_stack_parameter_count, | 32 descriptor->Initialize(deopt_handler, constant_stack_parameter_count, |
| 33 JS_FUNCTION_STUB_MODE); | 33 JS_FUNCTION_STUB_MODE); |
| 34 } else { | 34 } else { |
| 35 descriptor->Initialize(r3, deopt_handler, constant_stack_parameter_count, | 35 descriptor->Initialize(r3, deopt_handler, constant_stack_parameter_count, |
| 36 JS_FUNCTION_STUB_MODE, PASS_ARGUMENTS); | 36 JS_FUNCTION_STUB_MODE); |
| 37 } | 37 } |
| 38 } | 38 } |
| 39 | 39 |
| 40 | 40 |
| 41 static void InitializeInternalArrayConstructorDescriptor( | 41 static void InitializeInternalArrayConstructorDescriptor( |
| 42 Isolate* isolate, CodeStubDescriptor* descriptor, | 42 Isolate* isolate, CodeStubDescriptor* descriptor, |
| 43 int constant_stack_parameter_count) { | 43 int constant_stack_parameter_count) { |
| 44 Address deopt_handler = | 44 Address deopt_handler = |
| 45 Runtime::FunctionForId(Runtime::kInternalArrayConstructor)->entry; | 45 Runtime::FunctionForId(Runtime::kInternalArrayConstructor)->entry; |
| 46 | 46 |
| 47 if (constant_stack_parameter_count == 0) { | 47 if (constant_stack_parameter_count == 0) { |
| 48 descriptor->Initialize(deopt_handler, constant_stack_parameter_count, | 48 descriptor->Initialize(deopt_handler, constant_stack_parameter_count, |
| 49 JS_FUNCTION_STUB_MODE); | 49 JS_FUNCTION_STUB_MODE); |
| 50 } else { | 50 } else { |
| 51 descriptor->Initialize(r3, deopt_handler, constant_stack_parameter_count, | 51 descriptor->Initialize(r3, deopt_handler, constant_stack_parameter_count, |
| 52 JS_FUNCTION_STUB_MODE, PASS_ARGUMENTS); | 52 JS_FUNCTION_STUB_MODE); |
| 53 } | 53 } |
| 54 } | 54 } |
| 55 | 55 |
| 56 | 56 |
| 57 void ArrayNoArgumentConstructorStub::InitializeDescriptor( | 57 void ArrayNoArgumentConstructorStub::InitializeDescriptor( |
| 58 CodeStubDescriptor* descriptor) { | 58 CodeStubDescriptor* descriptor) { |
| 59 InitializeArrayConstructorDescriptor(isolate(), descriptor, 0); | 59 InitializeArrayConstructorDescriptor(isolate(), descriptor, 0); |
| 60 } | 60 } |
| 61 | 61 |
| 62 | 62 |
| (...skipping 5610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5673 kStackUnwindSpace, NULL, | 5673 kStackUnwindSpace, NULL, |
| 5674 MemOperand(fp, 6 * kPointerSize), NULL); | 5674 MemOperand(fp, 6 * kPointerSize), NULL); |
| 5675 } | 5675 } |
| 5676 | 5676 |
| 5677 | 5677 |
| 5678 #undef __ | 5678 #undef __ |
| 5679 } // namespace internal | 5679 } // namespace internal |
| 5680 } // namespace v8 | 5680 } // namespace v8 |
| 5681 | 5681 |
| 5682 #endif // V8_TARGET_ARCH_PPC | 5682 #endif // V8_TARGET_ARCH_PPC |
| OLD | NEW |