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 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_X64 | 7 #if V8_TARGET_ARCH_X64 |
8 | 8 |
9 #include "src/bootstrapper.h" | 9 #include "src/bootstrapper.h" |
10 #include "src/code-stubs.h" | 10 #include "src/code-stubs.h" |
| 11 #include "src/codegen.h" |
| 12 #include "src/ic/ic-compiler.h" |
| 13 #include "src/isolate.h" |
| 14 #include "src/jsregexp.h" |
11 #include "src/regexp-macro-assembler.h" | 15 #include "src/regexp-macro-assembler.h" |
12 #include "src/runtime.h" | 16 #include "src/runtime.h" |
13 #include "src/stub-cache.h" | |
14 | 17 |
15 namespace v8 { | 18 namespace v8 { |
16 namespace internal { | 19 namespace internal { |
17 | 20 |
18 | 21 |
19 void FastNewClosureStub::InitializeInterfaceDescriptor( | 22 void FastNewClosureStub::InitializeInterfaceDescriptor( |
20 CodeStubInterfaceDescriptor* descriptor) { | 23 CodeStubInterfaceDescriptor* descriptor) { |
21 Register registers[] = { rsi, rbx }; | 24 Register registers[] = { rsi, rbx }; |
22 descriptor->Initialize( | 25 descriptor->Initialize( |
23 MajorKey(), ARRAY_SIZE(registers), registers, | 26 MajorKey(), ARRAY_SIZE(registers), registers, |
(...skipping 4949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4973 return_value_operand, | 4976 return_value_operand, |
4974 NULL); | 4977 NULL); |
4975 } | 4978 } |
4976 | 4979 |
4977 | 4980 |
4978 #undef __ | 4981 #undef __ |
4979 | 4982 |
4980 } } // namespace v8::internal | 4983 } } // namespace v8::internal |
4981 | 4984 |
4982 #endif // V8_TARGET_ARCH_X64 | 4985 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |