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 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/api.h" | 8 #include "src/api.h" |
9 #include "src/arguments.h" | 9 #include "src/arguments.h" |
10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
11 #include "src/conversions.h" | 11 #include "src/conversions.h" |
12 #include "src/execution.h" | 12 #include "src/execution.h" |
| 13 #include "src/ic/call-optimization.h" |
13 #include "src/ic/ic-inl.h" | 14 #include "src/ic/ic-inl.h" |
14 #include "src/ic/ic-compiler.h" | 15 #include "src/ic/ic-compiler.h" |
15 #include "src/ic/stub-cache.h" | 16 #include "src/ic/stub-cache.h" |
16 #include "src/prototype.h" | 17 #include "src/prototype.h" |
17 #include "src/runtime.h" | 18 #include "src/runtime.h" |
18 | 19 |
19 namespace v8 { | 20 namespace v8 { |
20 namespace internal { | 21 namespace internal { |
21 | 22 |
22 char IC::TransitionMarkFromState(IC::State state) { | 23 char IC::TransitionMarkFromState(IC::State state) { |
(...skipping 3167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3190 static const Address IC_utilities[] = { | 3191 static const Address IC_utilities[] = { |
3191 #define ADDR(name) FUNCTION_ADDR(name), | 3192 #define ADDR(name) FUNCTION_ADDR(name), |
3192 IC_UTIL_LIST(ADDR) NULL | 3193 IC_UTIL_LIST(ADDR) NULL |
3193 #undef ADDR | 3194 #undef ADDR |
3194 }; | 3195 }; |
3195 | 3196 |
3196 | 3197 |
3197 Address IC::AddressFromUtilityId(IC::UtilityId id) { return IC_utilities[id]; } | 3198 Address IC::AddressFromUtilityId(IC::UtilityId id) { return IC_utilities[id]; } |
3198 } | 3199 } |
3199 } // namespace v8::internal | 3200 } // namespace v8::internal |
OLD | NEW |