OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #ifndef V8_CODE_STUBS_H_ | 5 #ifndef V8_CODE_STUBS_H_ |
6 #define V8_CODE_STUBS_H_ | 6 #define V8_CODE_STUBS_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/assembler.h" | 9 #include "src/assembler.h" |
10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
11 #include "src/globals.h" | 11 #include "src/globals.h" |
| 12 #include "src/ic/ic.h" |
12 #include "src/macro-assembler.h" | 13 #include "src/macro-assembler.h" |
13 #include "src/ostreams.h" | 14 #include "src/ostreams.h" |
14 | 15 |
15 namespace v8 { | 16 namespace v8 { |
16 namespace internal { | 17 namespace internal { |
17 | 18 |
18 // List of code stubs used on all platforms. | 19 // List of code stubs used on all platforms. |
19 #define CODE_STUB_LIST_ALL_PLATFORMS(V) \ | 20 #define CODE_STUB_LIST_ALL_PLATFORMS(V) \ |
20 V(CallFunction) \ | 21 V(CallFunction) \ |
21 V(CallConstruct) \ | 22 V(CallConstruct) \ |
(...skipping 2504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2526 | 2527 |
2527 | 2528 |
2528 class CallDescriptors { | 2529 class CallDescriptors { |
2529 public: | 2530 public: |
2530 static void InitializeForIsolate(Isolate* isolate); | 2531 static void InitializeForIsolate(Isolate* isolate); |
2531 }; | 2532 }; |
2532 | 2533 |
2533 } } // namespace v8::internal | 2534 } } // namespace v8::internal |
2534 | 2535 |
2535 #endif // V8_CODE_STUBS_H_ | 2536 #endif // V8_CODE_STUBS_H_ |
OLD | NEW |