| 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" | |
| 8 #include "src/bootstrapper.h" | 7 #include "src/bootstrapper.h" |
| 9 #include "src/code-stubs.h" | 8 #include "src/code-stubs.h" |
| 10 #include "src/codegen.h" | 9 #include "src/codegen.h" |
| 11 #include "src/ic/handler-compiler.h" | 10 #include "src/ic/handler-compiler.h" |
| 12 #include "src/ic/ic.h" | 11 #include "src/ic/ic.h" |
| 13 #include "src/ic/stub-cache.h" | 12 #include "src/ic/stub-cache.h" |
| 14 #include "src/isolate.h" | 13 #include "src/isolate.h" |
| 15 #include "src/regexp/jsregexp.h" | 14 #include "src/regexp/jsregexp.h" |
| 16 #include "src/regexp/regexp-macro-assembler.h" | 15 #include "src/regexp/regexp-macro-assembler.h" |
| 17 #include "src/runtime/runtime.h" | 16 #include "src/runtime/runtime.h" |
| 18 | 17 |
| 18 #include "src/arm64/code-stubs-arm64.h" |
| 19 #include "src/arm64/frames-arm64.h" |
| 20 |
| 19 namespace v8 { | 21 namespace v8 { |
| 20 namespace internal { | 22 namespace internal { |
| 21 | 23 |
| 22 | 24 |
| 23 static void InitializeArrayConstructorDescriptor( | 25 static void InitializeArrayConstructorDescriptor( |
| 24 Isolate* isolate, CodeStubDescriptor* descriptor, | 26 Isolate* isolate, CodeStubDescriptor* descriptor, |
| 25 int constant_stack_parameter_count) { | 27 int constant_stack_parameter_count) { |
| 26 // cp: context | 28 // cp: context |
| 27 // x1: function | 29 // x1: function |
| 28 // x2: allocation site with elements kind | 30 // x2: allocation site with elements kind |
| (...skipping 5914 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5943 MemOperand(fp, 6 * kPointerSize), NULL); | 5945 MemOperand(fp, 6 * kPointerSize), NULL); |
| 5944 } | 5946 } |
| 5945 | 5947 |
| 5946 | 5948 |
| 5947 #undef __ | 5949 #undef __ |
| 5948 | 5950 |
| 5949 } // namespace internal | 5951 } // namespace internal |
| 5950 } // namespace v8 | 5952 } // namespace v8 |
| 5951 | 5953 |
| 5952 #endif // V8_TARGET_ARCH_ARM64 | 5954 #endif // V8_TARGET_ARCH_ARM64 |
| OLD | NEW |